  :root {
    --cream: #FAF6F0;
    --blush: #E8C9B5;
    --rose: #C97B6A;
    --dusty: #B07068;
    --sage: #8A9E8A;
    --deep-green: #3D5A3D;
    --earth: #6B4E3D;
    --gold: #C9A96A;
    --dark: #1A1208;
    --text: #2E1F1A;
    --text-light: #6B5A52;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { 
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* ——— NOISE TEXTURE OVERLAY ——— */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ——— HERO ——— */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #1A1208 0%, #3D2B1F 40%, #2A3B2A 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 24px;
  }

  .hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: drift 12s ease-in-out infinite;
  }
  .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #C97B6A, transparent); top: -200px; left: -200px; animation-delay: 0s; }
  .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #8A9E8A, transparent); bottom: -150px; right: -150px; animation-delay: -4s; }
  .orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #C9A96A, transparent); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -8s; }

  @keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,30px) scale(0.97); }
  }

  @media (max-width: 600px) {
    .orb-1 { width: 300px; height: 300px; top: -100px; left: -100px; opacity: 0.15; }
    .orb-2 { width: 250px; height: 250px; bottom: -80px; right: -80px; opacity: 0.15; }
    .orb-3 { width: 200px; height: 200px; opacity: 0.1; }
  }

  .petals-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .petal {
    position: absolute;
    width: 8px; height: 12px;
    border-radius: 50% 10% 50% 10%;
    opacity: 0;
    animation: fall linear infinite;
  }
  @keyframes fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.2; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
  }

  .hero-badge {
    background: linear-gradient(135deg, rgba(201,121,106,0.2), rgba(201,169,106,0.2));
    border: 1px solid rgba(201,169,106,0.4);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 100px);
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    line-height: 1.05;
    margin-bottom: 8px;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--blush);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: rgba(232,201,181,0.7);
    text-align: center;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
    max-width: 700px;
    line-height: 1.5;
  }

  .hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
    animation: fadeUp 0.8s ease 0.5s forwards;
    opacity: 0;
  }

  .hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(250,246,240,0.65);
    text-align: center;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 52px;
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
    letter-spacing: 0.3px;
  }

  .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose), var(--dusty));
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 52px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s ease 0.8s forwards;
    opacity: 0;
    cursor: pointer;
    border: none;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cta-btn:hover::before { opacity: 1; }
  .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(201,121,106,0.4); }

  .hero-verse {
    margin-top: 64px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(232,201,181,0.4);
    text-align: center;
    animation: fadeUp 0.8s ease 1s forwards;
    opacity: 0;
    letter-spacing: 0.5px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ——— VIDEO SECTION ——— */
  .video-section {
    padding: 120px 0;
    background: var(--cream);
    text-align: center;
  }
  .video-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 40px auto 0;
    aspect-ratio: 16 / 9;
  }
  .video-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(107, 78, 61, 0.15);
  }

  .author-section {
    padding: 100px 0;
    background: #f9f4ef;
  }
  .author-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .author-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(26, 18, 8, 0.12);
  }
  .author-content .section-label {
    margin-bottom: 16px;
    color: var(--rose);
  }
  .author-content .section-title {
    margin-bottom: 24px;
    color: var(--text);
  }
  .author-content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
  }

  /* ——— SEASON STRIP ——— */
  .seasons-strip {
    background: var(--deep-green);
    padding: 24px 0;
    overflow: hidden;
  }
  .seasons-track {
    display: flex;
    gap: 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
  }
  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .seasons-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(232,201,181,0.6);
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 1px;
  }
  .seasons-item::after {
    content: '✦';
    color: var(--gold);
    font-style: normal;
    font-size: 10px;
  }

  /* ——— SECTION BASE ——— */
  section { 
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
  }
  .section-title em { font-style: italic; color: var(--rose); }

  /* ——— KIT SECTION ——— */
  .kit-section {
    padding: 120px 0;
    background: var(--cream);
  }
  .kit-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
  }
  .kit-intro p {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
  }

  .kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(107,78,61,0.1);
    border-radius: 24px;
    overflow: hidden;
  }

  .kit-card {
    background: var(--cream);
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
  }
  .kit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .kit-card:hover {
    background: #f5ede4;
    z-index: 2;
  }
  .kit-card:hover::before { opacity: 1; }

  .kit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: #B6736A;
    line-height: 1;
    margin-bottom: 16px;
  }
  .kit-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }
  .kit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .kit-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
  }
  .kit-verse {
    margin-top: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--rose);
    border-left: 2px solid var(--blush);
    padding-left: 12px;
    line-height: 1.5;
  }

  /* ——— JOURNEY / MAPA ——— */
  .journey-section {
    padding: 120px 0;
    background: linear-gradient(160deg, #1A1208, #2A3B2A);
    overflow: hidden;
  }
  .journey-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .journey-text .section-label { color: var(--blush); }
  .journey-text .section-title { color: var(--cream); }
  .journey-text .section-title em { color: var(--blush); }
  .journey-text p {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(250,246,240,0.6);
    line-height: 1.8;
  }

  .circle-map {
    position: relative;
    width: 420px;
    height: 420px;
  }
  .circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(201,169,106,0.2);
  }
  .circle-ring-2 {
    inset: 30px;
    border-color: rgba(201,121,106,0.15);
  }
  .circle-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 120px;
  }
  .circle-center-icon { font-size: 36px; }
  .circle-center-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(232,201,181,0.7);
    line-height: 1.4;
    margin-top: 8px;
    font-style: italic;
  }

  .phase-dot {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(26,18,8,0.8);
    border: 1px solid rgba(201,169,106,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: default;
    transition: all 0.3s;
    text-align: center;
    line-height: 1.2;
  }
  .phase-dot:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
    transform: scale(1.2);
    z-index: 10;
  }

  /* ——— BONUS SECTION ——— */
  .bonus-section {
    padding: 120px 0;
    background: #f5ede4;
  }
  .bonus-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
  }
  .bonus-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(107,78,61,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .bonus-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,121,106,0.05), transparent);
    pointer-events: none;
  }
  .bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(107,78,61,0.12);
  }
  .bonus-card .bonus-emoji { font-size: 40px; margin-bottom: 20px; display: block; }
  .bonus-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
  }
  .bonus-card p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.75;
  }
  .bonus-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
  }

  /* ——— CHECKLIST ——— */
  .checklist-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f5ede4, var(--cream));
  }
  .checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .checklist-items { list-style: none; margin-top: 40px; }
  .checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(107,78,61,0.08);
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
  }
  .checklist-items li.visible { opacity: 1; transform: translateX(0); }
  .check-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--dusty));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 12px;
    margin-top: 1px;
  }

  .checklist-verse-block {
    background: linear-gradient(160deg, #1A1208, #3D2B1F);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .checklist-verse-block::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    color: rgba(201,121,106,0.1);
    line-height: 1;
    pointer-events: none;
  }
  .checklist-verse-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--blush);
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .checklist-verse-block cite {
    font-size: 13px;
    font-style: normal;
    color: rgba(232,201,181,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ——— CTA FINAL ——— */
  .cta-section {
    padding: 140px 0;
    background: linear-gradient(160deg, #2A3B2A 0%, #1A1208 50%, #3D2B1F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,106,0.08);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  .cta-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,121,106,0.1);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  .cta-section .container { position: relative; z-index: 2; }
  .cta-section .section-label { color: var(--gold); justify-content: center; display: block; text-align: center; }
  .cta-section .section-title { color: var(--cream); text-align: center; }
  .cta-section .section-title em { color: var(--blush); }
  .cta-section p {
    margin: 24px auto 48px;
    max-width: 500px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(250,246,240,0.55);
    line-height: 1.8;
  }
  .cta-guarantee {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(250,246,240,0.35);
    letter-spacing: 0.5px;
  }

  /* ——— FOOTER ——— */
  footer {
    background: var(--dark);
    padding: 48px 32px;
    text-align: center;
  }
  footer p {
    font-size: 13px;
    color: rgba(250,246,240,0.25);
    letter-spacing: 0.5px;
    line-height: 2;
  }
  footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: rgba(232,201,181,0.4);
    margin-bottom: 16px;
  }

  /* ——— SCROLL ANIMATIONS ——— */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ——— STICKY NAV ——— */
  .sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
    display: none;
  }
  .sticky-nav.scrolled {
    background: rgba(26,18,8,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,106,0.1);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--blush);
  }
  .nav-cta {
    background: linear-gradient(135deg, var(--rose), var(--dusty));
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,121,106,0.35); }

  /* ——— RESPONSIVE ——— */
  @media (max-width: 900px) {
    .kit-grid { grid-template-columns: 1fr; gap: 1px; }
    .journey-inner, .checklist-grid, .bonus-wrap { grid-template-columns: 1fr; gap: 48px; }
    .author-grid { grid-template-columns: 1fr; }
    .circle-map { width: 320px; height: 320px; }
    .phase-dot { width: 36px; height: 36px; font-size: 8px; }
  }

  /* ——— TABLET ——— */
  @media (max-width: 768px) {
    .hero {
      padding: 40px 16px 60px;
      min-height: auto;
    }
    .hero-headline {
      font-size: clamp(40px, 8vw, 60px);
      margin-bottom: 12px;
    }
    .hero-sub {
      font-size: clamp(18px, 3vw, 24px);
      margin-bottom: 24px;
    }
    .hero-desc {
      font-size: 15px;
      margin-bottom: 32px;
    }
    .cta-btn {
      font-size: 13px;
      padding: 16px 40px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
    }
    .kit-section {
      padding: 80px 0;
    }
    .kit-intro {
      margin-bottom: 48px;
    }
    .kit-card {
      padding: 32px 24px;
    }
    .kit-num {
      font-size: 44px;
    }
    .kit-icon {
      font-size: 24px;
    }
    .kit-card h3 {
      font-size: 18px;
    }
    .journey-section {
      padding: 80px 0;
    }
    .journey-inner {
      gap: 48px;
    }
    .circle-map {
      width: 280px;
      height: 280px;
    }
    .circle-center-icon {
      font-size: 28px;
    }
    .bonus-section {
      padding: 80px 0;
    }
    .bonus-card {
      padding: 32px 24px;
    }
    .bonus-card h3 {
      font-size: 20px;
    }
    .checklist-section {
      padding: 80px 0;
    }
    .checklist-verse-block {
      padding: 48px 32px;
    }
    .checklist-verse-block blockquote {
      font-size: clamp(18px, 2.5vw, 24px);
    }
    .cta-section {
      padding: 100px 0;
    }
    .video-section {
      padding: 80px 0;
    }
  }

  /* ——— MOBILE ——— */
  @media (max-width: 600px) {
    * { -webkit-touch-callout: none; }
    
    body {
      -webkit-user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    /* Ajustes gerais */
    .container { padding: 0 16px; }
    
    /* HERO */
    .hero {
      padding: 30px 16px 50px;
      min-height: 90vh;
      justify-content: center;
    }
    .hero-badge {
      font-size: 11px;
      padding: 8px 18px;
      margin-bottom: 24px;
      letter-spacing: 2px;
      text-align: center;
      display: block;
      width: 100%;
    }
    .hero-headline {
      font-size: clamp(40px, 8vw, 56px);
      margin-bottom: 12px;
      line-height: 1.1;
    }
    .hero-divider {
      margin: 24px auto 28px;
    }
    .hero-sub {
      font-size: clamp(18px, 3vw, 24px);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .hero-desc {
      font-size: 15px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .cta-btn {
      font-size: 13px;
      padding: 16px 40px;
      letter-spacing: 1.5px;
    }
    .hero-verse {
      margin-top: 48px;
      font-size: 14px;
    }

    /* AUTHOR IMAGE RESPONSIVE */
    .author-image {
      text-align: center;
    }
    .author-image img {
      width: 90%;
      height: auto;
      max-width: 880px;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(26, 18, 8, 0.08);
    }

    /* SEASON STRIP */
    .seasons-item {
      font-size: 12px;
      padding: 0 24px;
    }

    /* VIDEO SECTION */
    .video-section {
      padding: 60px 0;
    }
    .video-wrapper {
      max-width: 100%;
      margin: 30px auto 0;
    }

    /* KIT SECTION */
    .kit-section {
      padding: 60px 0;
    }
    .kit-intro {
      margin-bottom: 40px;
    }
    .kit-intro p {
      font-size: 16px;
      margin-top: 16px;
      line-height: 1.7;
    }
    .section-label {
      font-size: 11px;
      letter-spacing: 2.5px;
    }
    .section-title {
      font-size: clamp(28px, 5.5vw, 36px);
      line-height: 1.25;
    }
    .kit-grid {
      gap: 1px;
      border-radius: 12px;
    }
    .kit-card {
      padding: 28px 18px;
    }
    .kit-card:hover {
      background: var(--cream);
    }
    .kit-num {
      font-size: 40px;
      margin-bottom: 14px;
    }
    .kit-icon {
      font-size: 24px;
      margin-bottom: 14px;
    }
    .kit-card h3 {
      font-size: 17px;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .kit-card p {
      font-size: 14px;
      line-height: 1.7;
    }
    .kit-verse {
      font-size: 13px;
      margin-top: 14px;
      line-height: 1.6;
    }

    /* JOURNEY SECTION */
    .journey-section {
      padding: 60px 0;
    }
    .journey-inner {
      gap: 32px;
    }
    .journey-text .section-title {
      font-size: clamp(22px, 4.5vw, 30px);
    }
    .journey-text p {
      font-size: 15px;
      margin-top: 18px;
      line-height: 1.7;
    }
    .circle-map {
      width: 240px;
      height: 240px;
      margin: 0 auto;
    }
    .phase-dot {
      width: 32px;
      height: 32px;
      font-size: 7px;
    }
    .circle-center-icon {
      font-size: 24px;
    }
    .circle-center-text {
      font-size: 11px;
      margin-top: 4px;
    }

    /* BONUS SECTION */
    .bonus-section {
      padding: 60px 0;
    }
    .bonus-wrap {
      gap: 16px;
    }
    .bonus-card {
      padding: 24px 16px;
      border-radius: 16px;
    }
    .bonus-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(107,78,61,0.08);
    }
    .bonus-card .bonus-emoji {
      font-size: 32px;
      margin-bottom: 12px;
    }
    .bonus-card h3 {
      font-size: 19px;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .bonus-card p {
      font-size: 14px;
      line-height: 1.7;
    }
    .bonus-tag {
      font-size: 10px;
      letter-spacing: 1px;
      margin-top: 12px;
    }

    /* CHECKLIST */
    .checklist-section {
      padding: 60px 0;
    }
    .checklist-items {
      margin-top: 24px;
    }
    .checklist-items li {
      padding: 16px 0;
      gap: 16px;
      font-size: 15px;
      line-height: 1.6;
    }
    .check-icon {
      width: 20px;
      height: 20px;
      font-size: 11px;
    }
    .checklist-verse-block {
      padding: 32px 20px;
      border-radius: 16px;
    }
    .checklist-verse-block::before {
      font-size: 100px;
      top: -10px;
      left: 10px;
    }
    .checklist-verse-block blockquote {
      font-size: clamp(18px, 2.5vw, 26px);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .checklist-verse-block cite {
      font-size: 11px;
      letter-spacing: 1px;
    }

    /* CTA FINAL */
    .cta-section {
      padding: 80px 0;
    }
    .cta-section::before {
      width: 500px;
      height: 500px;
    }
    .cta-section::after {
      width: 300px;
      height: 300px;
    }
    .cta-section .section-title {
      font-size: clamp(24px, 5vw, 32px);
    }
    .cta-section p {
      font-size: 15px;
      margin: 20px auto 36px;
      line-height: 1.7;
    }
    .cta-guarantee {
      font-size: 11px;
      margin-top: 20px;
    }

    /* FOOTER */
    footer {
      padding: 32px 16px;
    }
    footer p {
      font-size: 12px;
      line-height: 1.8;
    }
    footer img {
      max-width: 120px;
    }

    /* BUTTONS FLUTUANTES */
    .whatsapp-float {
      bottom: 70px;
      right: 16px;
    }
    .whatsapp-float img {
      width: 50px;
      height: 50px;
    }
    #topBtn {
      bottom: 130px;
      right: 16px;
      padding: 10px 13px;
      font-size: 18px;
    }
  }

  /* ——— EXTRA SMALL MOBILE (< 375px) ——— */
  @media (max-width: 375px) {
    .container { padding: 0 12px; }
    
    .hero {
      padding: 24px 12px 40px;
    }
    .hero-headline {
      font-size: clamp(36px, 6.5vw, 48px);
    }
    .hero-sub {
      font-size: clamp(16px, 2.8vw, 22px);
    }
    .hero-desc {
      font-size: 14px;
    }
    .kit-card {
      padding: 24px 14px;
    }
    .section-title {
      font-size: clamp(24px, 4.5vw, 32px);
    }
    .kit-num {
      font-size: 36px;
    }
    .kit-card h3 {
      font-size: 16px;
    }
    .circle-map {
      width: 200px;
      height: 200px;
    }
    .phase-dot {
      width: 28px;
      height: 28px;
      font-size: 6px;
    }
    .cta-btn {
      font-size: 12px;
      padding: 14px 32px;
    }
  }

  /* ——— PULSE GLOW ——— */
  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,121,106,0); }
    50% { box-shadow: 0 0 0 12px rgba(201,121,106,0.15); }
  }
  .cta-btn-hero { animation: fadeUp 0.8s ease 0.8s forwards, pulseGlow 3s ease 2s infinite; }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Botão Top */
#topBtn {
    position: fixed;
    bottom: 92px; /* fica acima do WhatsApp */
    right: 20px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #C2796B;
    color: white;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    transition: 0.3s;
}

#topBtn:hover {
    background-color: #a75f53;
}