:root {
    /* Paleta oficial */
    --rosa:          #F4C2C2;
    --rosa-forte:    #E89AA0;
    --rosa-profundo: #C4727E;
    --rosa-claro:    #FBE3E4;
    --branco:        #FFFFFF;
    --bege:          #FFF5E1;
    --bege-quente:   #F5E6CC;
    --dourado:       #D4A373;
    --dourado-esc:   #B0844F;
    --menta:         #B5EAD7;
    --menta-esc:     #7FCFB3;
    --marrom:        #3E2723;
    --marrom-med:    #6B5651;
    --marrom-claro:  #9C8783;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', system-ui, sans-serif;
    background: var(--bege);
    color: var(--marrom);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  /* ── BARRA DE TOPO ───────────────────────────────────────── */
  .top-bar {
    background: var(--marrom);
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 9px 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .top-bar strong { color: var(--rosa); }

  /* ── HERO ────────────────────────────────────────────────── */
  .hero {
    background:
      radial-gradient(1200px 600px at 85% -10%, rgba(244,194,194,0.55) 0%, transparent 60%),
      radial-gradient(900px 500px at -10% 110%, rgba(212,163,115,0.22) 0%, transparent 65%),
      linear-gradient(180deg, #FFF8EB 0%, #FFF5E1 100%);
    position: relative;
    padding: 56px 22px 72px;
    overflow: hidden;
  }

  .hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--rosa);
    color: var(--rosa-profundo);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(244,194,194,0.4);
  }
  .badge::before { content: '✦'; color: var(--dourado); }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--marrom);
    margin-bottom: 18px;
  }
  .hero h1 .scribe {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--rosa-profundo);
    font-size: 1.05em;
    display: inline-block;
    line-height: 0.9;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rosa-profundo);
  }

  .hero-sub {
    font-size: clamp(16px, 1.7vw, 18.5px);
    color: var(--marrom-med);
    margin-bottom: 28px;
    max-width: 540px;
    line-height: 1.6;
  }
  @media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }
  .hero-sub strong { color: var(--marrom); }

  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }
  @media (max-width: 900px) { .hero-chips { justify-content: center; } }

  .chip {
    background: #fff;
    border: 1.5px solid var(--rosa-claro);
    color: var(--marrom-med);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
  }
  .chip .h { color: var(--rosa-profundo); margin-right: 4px; }

  .hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  @media (max-width: 900px) { .hero-cta-row { justify-content: center; } }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rosa-profundo) 0%, #A85765 100%);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 14px 32px rgba(196,114,126,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(196,114,126,0.55); }
  .btn-primary .heart { font-size: 18px; }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--marrom-med);
    font-weight: 600;
  }
  .hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--menta-esc); }

  /* Hero visual (capa) */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-cover {
    width: 100%;
    max-width: 440px;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(62,39,35,0.18), 0 10px 24px rgba(62,39,35,0.08);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
  }
  .hero-visual:hover .hero-cover { transform: rotate(0deg) scale(1.02); }

  .hero-sticker {
    position: absolute;
    background: var(--menta);
    color: var(--marrom);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(127,207,179,0.5);
    transform: rotate(8deg);
  }
  .hero-sticker.top { top: 4%; left: -2%; }
  .hero-sticker.bot {
    bottom: 6%;
    right: -4%;
    background: var(--dourado);
    color: #fff;
    transform: rotate(-6deg);
    box-shadow: 0 12px 28px rgba(212,163,115,0.55);
  }
  @media (max-width: 600px) {
    .hero-sticker { font-size: 12px; padding: 10px 14px; }
    .hero-sticker.top { left: 2%; }
    .hero-sticker.bot { right: 2%; }
  }

  /* ── VSL ──────────────────────────────────────────────────── */
  .sec-vsl {
    background: var(--marrom);
    padding: 64px 22px 72px;
    position: relative;
  }
  .vsl-wrap {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .vsl-eyebrow {
    display: inline-block;
    background: rgba(244,194,194,0.18);
    color: var(--rosa);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .vsl-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(24px, 3.4vw, 34px);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .vsl-title em { color: var(--rosa); font-style: italic; }
  .vsl-sub {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 32px;
  }

  .vsl-player {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at center, rgba(244,194,194,0.15) 0%, transparent 70%),
      linear-gradient(135deg, #1F1310 0%, #2E1C18 100%);
    border: 1.5px solid rgba(244,194,194,0.18);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  }
  /* Placeholder visual quando não houver vídeo */
  .vsl-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    gap: 18px;
    padding: 24px;
    text-align: center;
  }
  .vsl-play {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-profundo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(244,194,194,0.45);
    position: relative;
  }
  .vsl-play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(244,194,194,0.35);
    animation: ringPulse 2s ease-out infinite;
  }
  .vsl-play svg { width: 36px; height: 36px; fill: #fff; margin-left: 6px; }
  .vsl-placeholder-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
  }
  .vsl-placeholder-tag {
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(244,194,194,0.4);
    color: var(--rosa);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
  }

  /* Para o usuário trocar: substitua o bloco abaixo por seu iframe/embed */
  .vsl-player iframe,
  .vsl-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @keyframes ringPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
  }

  /* ── SEÇÕES BASE ───────────────────────────────────────────── */
  section { padding: 80px 22px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .container-narrow { max-width: 820px; margin: 0 auto; }

  .eyebrow {
    display: inline-block;
    background: var(--rosa-claro);
    color: var(--rosa-profundo);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
  }
  .h-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--marrom);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .h-title em { font-style: italic; color: var(--rosa-profundo); }
  .h-title .scribe {
    font-family: 'Dancing Script', cursive;
    color: var(--rosa-profundo);
    font-weight: 700;
    font-size: 1.05em;
    display: inline-block;
  }
  .h-sub {
    font-size: 17px;
    color: var(--marrom-med);
    line-height: 1.65;
    max-width: 640px;
  }
  .center { text-align: center; }
  .center .h-sub { margin-left: auto; margin-right: auto; }

  /* ── DORES ─────────────────────────────────────────────────── */
  .sec-dor { background: #fff; }

  .dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 42px;
  }
  .dor-card {
    background: linear-gradient(180deg, #FFF8EB 0%, #FFFAF0 100%);
    border: 1.5px solid var(--rosa-claro);
    border-radius: 20px;
    padding: 26px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .dor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(244,194,194,0.3);
    border-color: var(--rosa);
  }
  .dor-emoji {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--rosa-claro);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
  }
  .dor-text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--marrom);
    font-style: italic;
    font-weight: 500;
  }

  /* ── PROMESSA / TRANSFORMAÇÃO ─────────────────────────────── */
  .sec-promessa {
    background:
      radial-gradient(800px 400px at 50% -10%, rgba(181,234,215,0.4) 0%, transparent 60%),
      var(--bege);
  }
  .compare {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
  }
  @media (max-width: 760px) {
    .compare { grid-template-columns: 1fr; }
    .compare-arrow { transform: rotate(90deg); margin: 0 auto; }
  }
  .compare-col {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    border: 1.5px solid #EDE0D4;
  }
  .compare-col.neg { background: #FBEFEF; border-color: #F2D5D5; }
  .compare-col.pos { background: linear-gradient(180deg, #F0FBF5 0%, #FFFFFF 100%); border-color: var(--menta); }
  .compare-h {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .compare-col.neg .compare-h { color: #B85555; }
  .compare-col.pos .compare-h { color: var(--menta-esc); }
  .compare ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .compare li {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--marrom-med);
    padding-left: 26px;
    position: relative;
  }
  .compare-col.neg li::before {
    content: '✕';
    position: absolute; left: 0; top: 0;
    color: #B85555; font-weight: 700;
  }
  .compare-col.pos li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    color: var(--menta-esc); font-weight: 700;
  }
  .compare-arrow {
    align-self: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--dourado);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(212,163,115,0.45);
  }

  /* ── OFERTA / O QUE VOCÊ RECEBE ──────────────────────────── */
  .sec-oferta { background: #fff; }
  .oferta-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  .oferta-card {
    background: var(--bege);
    border: 1.5px solid var(--bege-quente);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .oferta-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(62,39,35,0.08); }
  .oferta-card.destaque {
    background: linear-gradient(160deg, #FFF8EB 0%, #FFFFFF 100%);
    border-color: var(--rosa);
    box-shadow: 0 14px 32px rgba(244,194,194,0.25);
  }
  .oferta-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid var(--rosa-claro);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--rosa-profundo);
  }
  .oferta-icon svg { width: 28px; height: 28px; }
  .oferta-card.destaque .oferta-icon { background: var(--rosa); color: #fff; border-color: var(--rosa); }
  .oferta-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--marrom);
  }
  .oferta-desc { font-size: 14px; color: var(--marrom-med); line-height: 1.6; }
  .oferta-value {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dourado-esc);
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .pill {
    position: absolute;
    top: -10px;
    right: 18px;
    background: var(--dourado);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
  }
  .pill.menta { background: var(--menta-esc); }

  /* Soma de valor */
  .stack {
    margin-top: 48px;
    background: linear-gradient(160deg, var(--marrom) 0%, #2A1B17 100%);
    border-radius: 24px;
    padding: 36px 32px;
    color: #fff;
  }
  .stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }
  @media (max-width: 700px) { .stack-grid { grid-template-columns: 1fr; } }
  .stack h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .stack ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .stack li {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.78);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
  }
  .stack li span:last-child { color: rgba(255,255,255,0.45); text-decoration: line-through; }
  .stack-total {
    text-align: center;
    padding: 28px 24px;
    background: rgba(244,194,194,0.08);
    border: 1.5px dashed rgba(244,194,194,0.4);
    border-radius: 20px;
  }
  .stack-total .de { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: line-through; }
  .stack-total .por { font-size: 13px; color: var(--rosa); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
  .stack-total .preco {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 8px 0 4px;
  }
  .stack-total .preco small { font-size: 22px; font-weight: 500; }
  .stack-total .parc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
  .stack-total .btn-primary { width: 100%; justify-content: center; }

  /* ── CAPÍTULOS ────────────────────────────────────────────── */
  .sec-caps { background: var(--bege); }
  .caps-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  @media (max-width: 700px) { .caps-grid { grid-template-columns: 1fr; } }
  .cap {
    display: flex; align-items: center; gap: 16px;
    background: #fff;
    border: 1.5px solid #F0E6D5;
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .cap:hover { border-color: var(--rosa); transform: translateX(4px); }
  .cap-n {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-forte) 100%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
  }
  .cap-t { font-size: 15px; font-weight: 700; color: var(--marrom); line-height: 1.3; }
  .cap-s { font-size: 13px; color: var(--marrom-claro); margin-top: 3px; }

  /* ── PARA QUEM É ──────────────────────────────────────────── */
  .sec-para {
    background:
      radial-gradient(700px 400px at 100% 0%, rgba(244,194,194,0.45) 0%, transparent 60%),
      #fff;
  }
  .para-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
  }
  @media (max-width: 700px) { .para-grid { grid-template-columns: 1fr; } }
  .para-row {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--marrom);
  }
  .check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--menta);
    color: var(--marrom);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    margin-top: 1px;
  }

  /* ── COMUNIDADE / GRUPOS ─────────────────────────────────── */
  .sec-com {
    background: linear-gradient(160deg, var(--marrom) 0%, #2A1B17 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .sec-com::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,194,194,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .sec-com .h-title { color: #fff; position: relative; }
  .sec-com .h-sub { color: rgba(255,255,255,0.65); position: relative; }
  .sec-com .eyebrow { background: rgba(244,194,194,0.18); color: var(--rosa); }
  .com-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    position: relative;
  }
  .com-card {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 30px 26px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: flex; flex-direction: column;
  }
  .com-card:hover {
    background: rgba(244,194,194,0.08);
    border-color: var(--rosa);
    transform: translateY(-5px);
  }
  .com-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--rosa);
    color: var(--marrom);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .com-icon svg { width: 28px; height: 28px; }
  .com-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }
  .com-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .com-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--menta);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    align-self: flex-start;
  }
  .com-link::after {
    content: '→';
    transition: transform 0.2s ease;
  }
  .com-link:hover::after { transform: translateX(4px); }
  .com-note {
    margin-top: 36px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-style: italic;
    position: relative;
  }

  /* ── DEPOIMENTOS ─────────────────────────────────────────── */
  .sec-dep { background: var(--bege); }
  .dep-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .dep {
    background: #fff;
    border: 1.5px solid #F0E6D5;
    border-radius: 22px;
    padding: 30px 26px;
    position: relative;
  }
  .dep-stars { color: var(--dourado); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
  .dep-quote {
    font-size: 15px;
    color: var(--marrom);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
  }
  .dep-quote::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 48px; color: var(--rosa); line-height: 0.6; margin-right: 4px; vertical-align: -18px; }
  .dep-foot { display: flex; align-items: center; gap: 12px; }
  .dep-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--rosa-claro);
    color: var(--rosa-profundo);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
  }
  .dep-name { font-size: 14px; font-weight: 700; color: var(--marrom); }
  .dep-info { font-size: 12.5px; color: var(--marrom-claro); }

  /* ── FAQ ─────────────────────────────────────────────────── */
  .sec-faq { background: #fff; }
  .faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
  .faq {
    background: var(--bege);
    border: 1.5px solid var(--bege-quente);
    border-radius: 16px;
    overflow: hidden;
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--marrom);
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: '+';
    font-size: 24px;
    color: var(--rosa-profundo);
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .faq[open] summary::after { transform: rotate(45deg); }
  .faq-body {
    padding: 0 24px 20px;
    color: var(--marrom-med);
    font-size: 14.5px;
    line-height: 1.65;
  }

  /* ── GARANTIA ────────────────────────────────────────────── */
  .sec-gar { background: var(--bege); padding-bottom: 60px; }
  .gar-box {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(160deg, #FFF8EB 0%, #FFFFFF 100%);
    border: 2px solid var(--dourado);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(212,163,115,0.18);
  }
  .gar-shield {
    width: 84px; height: 84px;
    margin: 0 auto 20px;
    background: var(--dourado);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 32px rgba(212,163,115,0.4);
  }
  .gar-shield svg { width: 44px; height: 44px; }
  .gar-h {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--marrom);
    margin-bottom: 12px;
  }
  .gar-h em { color: var(--rosa-profundo); font-style: italic; }
  .gar-body {
    font-size: 16px;
    color: var(--marrom-med);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
  }

  /* ── CTA FINAL ───────────────────────────────────────────── */
  .sec-cta {
    background:
      radial-gradient(900px 500px at 50% 0%, rgba(244,194,194,0.5) 0%, transparent 60%),
      linear-gradient(180deg, var(--bege) 0%, #FFF8EB 100%);
    text-align: center;
  }
  .cta-card {
    max-width: 560px;
    margin: 44px auto 0;
    background: #fff;
    border: 2px solid var(--rosa);
    border-radius: 28px;
    padding: 44px 36px;
    box-shadow: 0 30px 70px rgba(244,194,194,0.45);
    position: relative;
  }
  .cta-card .ribbon {
    position: absolute;
    top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--rosa-profundo);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(196,114,126,0.4);
  }
  .cta-de {
    color: var(--marrom-claro);
    font-size: 15px;
    text-decoration: line-through;
    margin-bottom: 4px;
  }
  .cta-por {
    color: var(--rosa-profundo);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .cta-preco {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    font-weight: 800;
    color: var(--marrom);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
  }
  .cta-preco small { font-size: 26px; font-weight: 500; }
  .cta-parc { color: var(--marrom-med); font-size: 14px; margin-bottom: 28px; }
  .cta-card .btn-primary { width: 100%; justify-content: center; font-size: 19px; padding: 20px 32px; }
  .cta-secure {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 18px;
    color: var(--marrom-claro);
    font-size: 12.5px;
    font-weight: 600;
    flex-wrap: wrap;
  }
  .cta-secure span { display: inline-flex; align-items: center; gap: 4px; }

  .scarcity {
    margin-top: 26px;
    color: var(--marrom-med);
    font-size: 14px;
    font-style: italic;
  }
  .scarcity strong { color: var(--rosa-profundo); font-style: normal; }

  /* ── FOOTER ──────────────────────────────────────────────── */
  footer {
    background: var(--marrom);
    color: rgba(255,255,255,0.55);
    padding: 50px 22px 30px;
    text-align: center;
  }
  .foot-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }
  .foot-logo em { color: var(--rosa); font-style: italic; }
  .foot-handle { font-size: 13px; color: var(--rosa); margin-bottom: 24px; }

  .socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 26px;
    flex-wrap: wrap;
  }
  .soc {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  }
  .soc:hover { background: var(--rosa); color: var(--marrom); transform: translateY(-3px); }
  .soc svg { width: 18px; height: 18px; }

  .foot-meta {
    font-size: 12px;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
  }
  .foot-meta a { color: var(--rosa); text-decoration: none; }

  .foot-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
  .foot-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(244,194,194,0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .foot-links a:hover { color: var(--rosa); border-color: var(--rosa); }

  .foot-legal {
    max-width: 760px;
    margin: 30px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 11.5px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: center;
  }
  .foot-legal strong { color: rgba(255,255,255,0.65); }

  /* ── FLOATING BUY ─────────────────────────────────────────── */
  .float-buy {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--rosa-profundo) 0%, #A85765 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 15px 22px;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(196,114,126,0.5);
    display: none;
    align-items: center;
    gap: 8px;
    animation: floatPulse 2.5s ease-in-out infinite;
  }
  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 14px 32px rgba(196,114,126,0.5); }
    50% { box-shadow: 0 14px 44px rgba(196,114,126,0.8); }
  }

  /* ── REVEAL ──────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── Reduced motion ──────────────────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }
