/* =================================================================
   PRECISION NAILS · Maysa Cardoso
   Design system unico das 4 paginas do funil.
   Stack Hawk: HTML5 + CSS puro + JS vanilla. Mobile-first. Sem framework.

   Duas regras governam a tipografia desta folha, e sao a resposta direta
   ao problema de "linha com uma palavra so":
     1. NENHUM <br> dentro de titulo ou paragrafo. A quebra e do navegador.
     2. text-wrap: balance nos titulos e pretty nos paragrafos, mais largura
        maxima em ch. O texto reorganiza sozinho em qualquer largura de tela.
   ================================================================= */

/* ----------------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Fundos: preto quente derivado do #2D2926 da marca */
  --bg:          #0B0A09;
  --bg-soft:     #131110;
  --bg-card:     #191614;
  --bg-card-up:  #1F1B18;

  /* Champagne da marca */
  --gold:        #C9A961;
  --gold-pale:   #E4CE9B;
  --gold-deep:   #8E7344;
  --gold-line:   rgba(201, 169, 97, .18);
  --gold-line-2: rgba(201, 169, 97, .38);

  --text:        #F2EEE7;
  --text-soft:   #B9B1A5;
  --text-muted:  #857E74;
  --danger:      #E27C6B;
  --ok:          #6FBF8F;

  --grad-gold:   linear-gradient(180deg, #DFC086 0%, #C9A961 55%, #A98944 100%);
  --grad-veil:   linear-gradient(180deg, rgba(201,169,97,.07) 0%, rgba(11,10,9,.9) 100%);

  --f-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --f-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 3rem;   --sp-8: 4rem;
  --sp-9: 5.5rem;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;

  --shadow-card: 0 10px 34px rgba(0,0,0,.5), 0 1px 0 rgba(228,206,155,.05) inset;
  --shadow-cta:  0 10px 26px rgba(201,169,97,.26), 0 1px 0 rgba(255,255,255,.22) inset;
}

/* ----------------------------------------------------------------
   2. RESET + BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; min-width: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  padding-bottom: 76px;   /* respiro pra barra fixa do mobile */
}
/* Atmosfera: fixed em ::before nao repinta no scroll (ao contrario de
   background-attachment: fixed, que derruba o INP no Android). */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -8%, rgba(201,169,97,.10), transparent 70%),
    radial-gradient(circle at 88% 108%, rgba(201,169,97,.05), transparent 60%);
}

img, video, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--gold-pale); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #0B0A09; }

/* A REGRA. Titulo equilibra as linhas, paragrafo evita orfa na ultima. */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.018em;
  color: var(--text);
  text-wrap: balance;
  font-variant-numeric: lining-nums;
}
p, li, summary, dd, dt { text-wrap: pretty; }
em { font-style: italic; color: var(--gold-pale); }
strong { color: var(--text); font-weight: 600; }

/* ----------------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------------- */
[id] { scroll-margin-top: 78px; }
.container { width: 100%; max-width: 1080px; margin-inline: auto; padding-inline: clamp(20px, 5.5vw, 44px); }
.bloco { padding: clamp(3rem, 11vw, 5.5rem) 0; }
.bloco--soft { background: var(--bg-soft); }
.bloco--tight { padding-block: clamp(2.25rem, 8vw, 4rem); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--gold); color: #0B0A09; padding: .75rem 1rem; font-weight: 700; border-radius: 0 0 var(--r-md) 0; }
.skip-link:focus { left: 0; }

/* Gesto de assinatura: a lamina diagonal do logotipo, virada divisor. */
.lamina { display: block; width: 34px; height: 2px; margin: 0 auto var(--sp-4); background: var(--grad-gold); transform: skewX(-28deg); border-radius: 2px; }
.lamina--left { margin-inline: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.visivel { opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   4. TIPOGRAFIA DE SECAO
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-3);
}
.eyebrow--c { text-align: center; text-wrap: balance; max-width: 34ch; margin-inline: auto; }
.titulo    { font-size: clamp(1.75rem, 7.2vw, 2.9rem); max-width: 20ch; }
.titulo--c { margin-inline: auto; text-align: center; }
.lede      { font-size: clamp(1rem, 3.6vw, 1.125rem); color: var(--text-soft); max-width: 56ch; margin-top: var(--sp-4); }
.lede--c   { margin-inline: auto; text-align: center; }
.linha-forte {
  font-size: clamp(1.05rem, 4vw, 1.3rem); color: var(--text);
  max-width: 46ch; margin: var(--sp-6) auto 0; text-align: center;
  font-family: var(--f-display); line-height: 1.35;
}

/* ----------------------------------------------------------------
   5. BOTOES
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-sans); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; line-height: 1.25; text-align: center;
  padding: 1.05rem 1.5rem; border-radius: 10px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
  max-width: 100%; white-space: normal; cursor: pointer;
}
.btn--primario {
  background: var(--grad-gold); color: #17120A;
  box-shadow: 0 4px 0 var(--gold-deep), var(--shadow-cta);
}
.btn--primario:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-deep), var(--shadow-cta); color: #17120A; filter: brightness(1.05); }
.btn--primario:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--gold-deep); }
.btn--fantasma { background: transparent; color: var(--text); border-color: var(--gold-line-2); }
.btn--fantasma:hover { background: rgba(201,169,97,.08); color: var(--text); }
.btn--bloco { width: 100%; }
.btn--g { font-size: 1.02rem; padding: 1.15rem 1.7rem; }
@media (min-width: 768px) { .btn { font-size: 1rem; } .btn--g { font-size: 1.08rem; padding: 1.2rem 2.2rem; } }

.cta-grupo { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); margin-top: var(--sp-6); }
.mt-5 { margin-top: var(--sp-5); }
.cta-nota { font-size: .82rem; color: var(--text-muted); text-align: center; max-width: 40ch; }

/* ----------------------------------------------------------------
   6. TOPO
   ---------------------------------------------------------------- */
.topo {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,10,9,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
}
.topo__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding-block: .7rem; }
.topo__logo { width: auto; height: clamp(22px, 5.4vw, 28px); }
.topo__preco { font-size: .8rem; color: var(--text-soft); letter-spacing: .02em; white-space: nowrap; }
.topo__preco b { color: var(--gold-pale); font-weight: 700; }

/* ----------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------- */
.hero { padding: clamp(1.75rem, 7vw, 3.5rem) 0 clamp(2rem, 8vw, 3.5rem); text-align: center; position: relative; isolation: isolate; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__selo {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-line-2); border-radius: var(--r-pill);
  padding: .4rem .9rem; margin-bottom: var(--sp-5); text-wrap: balance; max-width: 42ch;
}
.hero__selo::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero__titulo {
  font-size: clamp(1.7rem, 7.1vw, 3.1rem);
  line-height: 1.06; letter-spacing: -.025em;
  max-width: 23ch; margin-inline: auto;
}
.hero__titulo em { font-style: italic; color: var(--gold-pale); }
.hero__sub {
  font-size: clamp(1rem, 4vw, 1.18rem); color: var(--text-soft);
  max-width: 46ch; margin: var(--sp-5) auto 0; line-height: 1.55;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

/* Player travado: 9:16 sem estourar a dobra */
.video {
  width: 100%; max-width: min(330px, 82vw);
  margin: var(--sp-6) auto 0;
  aspect-ratio: 9 / 16; max-height: 62vh;
  position: relative; overflow: hidden; background: #000;
  border-radius: var(--r-md);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-card), 0 0 0 6px rgba(201,169,97,.04);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__nota { font-size: .76rem; color: var(--text-muted); margin-top: var(--sp-3); letter-spacing: .02em; }


/* ---- Hero em duas colunas no desktop: texto na esquerda, video na direita.
   Sem wrapper novo no HTML: o video vai pra coluna 2 e ocupa todas as linhas,
   todo o resto cai na coluna 1 na ordem em que esta no documento.
   A altura do video e amarrada a viewport pra dobra fechar com zoom em 100%. ---- */
@media (min-width: 960px) {
  .hero { padding-block: clamp(1.75rem, 4.5vh, 3rem); text-align: left; }
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
  .hero__inner > * { grid-column: 1; }
  .hero__inner > .video {
    /* span alto de proposito: sem grid-template-rows explicito, "1 / -1" vira
       uma linha so e o video empurra a primeira linha do texto pra baixo. */
    grid-column: 2; grid-row: 1 / span 99; align-self: center;
    margin: 0;
    height: min(calc(100svh - 240px), 620px);
    width: auto; max-width: none; max-height: none;
  }
  .hero__titulo, .hero__sub { margin-inline: 0; }
  /* a largura da coluna e que define a medida do titulo, sem sobrar buraco
     entre o fim do texto e o video */
  .hero__titulo { max-width: 100%; }
  .hero__sub { max-width: 52ch; }
  /* grid em vez de flex: botao ao lado de botao, nota sempre na linha de baixo
     (com flex, o max-width da nota deixava ela caber ao lado e nao quebrava) */
  .hero .cta-grupo {
    display: grid; grid-auto-flow: column; grid-auto-columns: max-content;
    justify-content: start; align-items: center;
    gap: var(--sp-3) var(--sp-4); margin-top: var(--sp-6);
  }
  .hero .cta-grupo .btn { width: auto; min-width: 280px; }
  .hero .cta-nota { grid-row: 2; grid-column: 1 / span 4; text-align: left; max-width: 52ch; }
  .hero .convite { margin-inline: 0; }
  .hero .confirma { align-self: start; }
}

/* ----------------------------------------------------------------
   8. FAIXA DE NUMEROS
   ---------------------------------------------------------------- */
.numeros { border-block: 1px solid var(--gold-line); background: var(--bg-soft); }
.numeros__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.numeros__item { padding: var(--sp-5) var(--sp-3); text-align: center; border-bottom: 1px solid var(--gold-line); }
.numeros__item:nth-child(odd) { border-right: 1px solid var(--gold-line); }
.numeros__item:nth-last-child(-n+2) { border-bottom: 0; }
.numeros__n { display: block; font-family: var(--f-display); font-variant-numeric: lining-nums; font-size: clamp(1.5rem, 6.5vw, 2.1rem); color: var(--gold-pale); line-height: 1; margin-bottom: .35rem; }
.numeros__t { font-size: .8rem; color: var(--text-muted); line-height: 1.35; max-width: 17ch; margin-inline: auto; text-wrap: balance; }
@media (min-width: 720px) {
  .numeros__grid { grid-template-columns: repeat(4, 1fr); }
  .numeros__item { border-bottom: 0; border-right: 1px solid var(--gold-line); }
  .numeros__item:last-child { border-right: 0; }
}

/* ----------------------------------------------------------------
   9. LISTA DE DOR
   ---------------------------------------------------------------- */
.dores { list-style: none; display: grid; gap: var(--sp-3); max-width: 60ch; margin: var(--sp-6) auto 0; }
.dores li {
  position: relative; padding: var(--sp-4) var(--sp-4) var(--sp-4) 2.9rem;
  background: var(--bg-card); border: 1px solid var(--gold-line);
  border-radius: var(--r-md); font-size: .98rem; line-height: 1.5;
}
.dores li::before {
  content: ""; position: absolute; left: 1.15rem; top: 1.5rem;
  width: 16px; height: 2px; background: var(--gold); transform: skewX(-28deg); border-radius: 2px; opacity: .8;
}

/* ----------------------------------------------------------------
   10. OS 4 Ps
   ---------------------------------------------------------------- */
.ps { list-style: none; counter-reset: p; display: grid; gap: var(--sp-4); margin-top: var(--sp-7); }
.ps__item {
  counter-increment: p; position: relative; overflow: hidden;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-5);
  background: var(--bg-card); border: 1px solid var(--gold-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  transition: border-color .25s ease, transform .25s ease;
}
.ps__item:hover { border-color: var(--gold-line-2); transform: translateY(-3px); }
/* o elemento em escala exagerada da pagina */
.ps__item::before {
  content: "0" counter(p);
  position: absolute; right: .55rem; top: .1rem;
  font-family: var(--f-display); font-size: 4.4rem; font-weight: 700;
  font-variant-numeric: lining-nums;
  color: var(--gold); opacity: .13; line-height: 1; pointer-events: none;
}
.ps__nome { font-size: 1.45rem; color: var(--gold-pale); margin-bottom: var(--sp-2); max-width: 11ch; position: relative; }
.ps__desc { font-size: .96rem; line-height: 1.55; max-width: 44ch; }
.ps__ataca { margin-top: var(--sp-3); font-size: .85rem; color: var(--text-muted); max-width: 44ch; }
.ps__ataca b { color: var(--danger); font-weight: 600; }
@media (min-width: 860px) { .ps { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }

/* ----------------------------------------------------------------
   11. PROVA
   ---------------------------------------------------------------- */
.prova { background: var(--bg-soft); }
.prova__caixa {
  max-width: 640px; margin-inline: auto; text-align: center;
  background: var(--grad-veil); border: 1px solid var(--gold-line-2);
  border-radius: clamp(18px, 5vw, 28px); padding: clamp(26px, 7vw, 46px);
  box-shadow: 0 18px 50px rgba(0,0,0,.5), 0 1px 0 rgba(228,206,155,.08) inset;
}
.prova__salto { font-family: var(--f-display); font-variant-numeric: lining-nums; font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.15; color: var(--text); }
.prova__salto i { font-style: normal; color: var(--gold-pale); }
.prova__seta { display: inline-block; margin-inline: .35em; color: var(--gold); }
.prova__texto { margin-top: var(--sp-4); font-size: 1rem; max-width: 48ch; margin-inline: auto; }
.prova__rodape { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--gold-line); font-size: .88rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   12. MAYSA
   ---------------------------------------------------------------- */
.maysa { display: grid; gap: var(--sp-6); align-items: center; }
.maysa__foto { position: relative; max-width: 300px; margin-inline: auto; }
.maysa__foto img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--gold-line-2); }
.maysa__foto::after {
  content: ""; position: absolute; inset: 10px -10px -10px 10px; z-index: -1;
  border: 1px solid var(--gold-line); border-radius: var(--r-lg);
}
.maysa__bullets { list-style: none; display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.maysa__bullets li { display: flex; gap: var(--sp-3); align-items: baseline; font-size: .97rem; line-height: 1.5; }
.maysa__bullets li::before { content: ""; flex: 0 0 auto; width: 14px; height: 2px; background: var(--gold); transform: skewX(-28deg); border-radius: 2px; translate: 0 -4px; }
@media (min-width: 860px) {
  .maysa { grid-template-columns: 320px 1fr; gap: var(--sp-8); }
  .maysa__foto { margin: 0; }
  .maysa__texto { text-align: left; }
  .maysa .titulo { margin-inline: 0; text-align: left; }
  .maysa .lede { margin-inline: 0; text-align: left; }
}

/* ----------------------------------------------------------------
   13. MODULOS (timeline)
   ---------------------------------------------------------------- */
.modulos { list-style: none; max-width: 62ch; margin: var(--sp-7) auto 0; display: grid; gap: 0; }
.modulo { position: relative; padding: var(--sp-5) 0 var(--sp-5) var(--sp-6); border-left: 1px solid var(--gold-line); }
.modulo:last-child { border-left-color: transparent; }
.modulo::before {
  content: ""; position: absolute; left: -5px; top: calc(var(--sp-5) + .45rem);
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--bg);
}
.modulo__tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.modulo__nome { font-size: 1.22rem; margin: var(--sp-2) 0 var(--sp-2); }
.modulo__desc { font-size: .95rem; max-width: 48ch; }

/* ----------------------------------------------------------------
   14. BONUS
   ---------------------------------------------------------------- */
.bonus { list-style: none; display: grid; gap: var(--sp-3); max-width: 640px; margin: var(--sp-6) auto 0; }
.bonus li {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start;
  padding: var(--sp-4); border-radius: var(--r-md);
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
}
.bonus__id { font-family: var(--f-display); font-size: 1.35rem; color: var(--gold); line-height: 1; padding-top: .1rem; }
.bonus__nome { color: var(--text); font-weight: 600; font-size: .98rem; line-height: 1.35; }
.bonus__desc { font-size: .9rem; margin-top: .25rem; max-width: 46ch; }
.faq__item summary { text-wrap: balance; }

/* ----------------------------------------------------------------
   15. E PRA VOCE / NAO E
   ---------------------------------------------------------------- */
.filtro { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
.filtro__col { padding: var(--sp-5); border-radius: var(--r-lg); border: 1px solid var(--gold-line); background: var(--bg-card); }
.filtro__col--nao { background: transparent; border-style: dashed; }
.filtro__cab { font-family: var(--f-sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.filtro__col--sim .filtro__cab { color: var(--ok); }
.filtro__col--nao .filtro__cab { color: var(--danger); }
.filtro ul { list-style: none; display: grid; gap: var(--sp-3); }
.filtro li { font-size: .95rem; line-height: 1.5; padding-left: 1.6rem; position: relative; }
.filtro__col--sim li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.filtro__col--nao li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
@media (min-width: 860px) { .filtro { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }

/* ----------------------------------------------------------------
   16. OFERTA
   ---------------------------------------------------------------- */
.oferta { background: var(--bg-soft); }
.oferta__caixa {
  max-width: 560px; margin: var(--sp-7) auto 0;
  background: var(--bg-card); border: 1px solid var(--gold-line-2);
  border-radius: clamp(18px, 5vw, 26px); padding: clamp(24px, 6.5vw, 40px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 1px 0 rgba(228,206,155,.08) inset;
  text-align: center;
}
.oferta__lista {
  list-style: none; display: grid; gap: var(--sp-3); text-align: left;
  margin: 0 0 var(--sp-6); padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--gold-line);
}
.oferta__lista li { display: flex; gap: .7rem; font-size: .95rem; line-height: 1.5; align-items: baseline; }
.oferta__lista li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: 0 0 auto; }
.oferta__ancora { font-size: .92rem; color: var(--text-muted); max-width: 40ch; margin-inline: auto; }
.oferta__preco {
  font-family: var(--f-display); font-variant-numeric: lining-nums;
  font-size: clamp(2.5rem, 11.5vw, 3.5rem); color: var(--text);
  line-height: 1.05; margin: var(--sp-4) 0 .5rem;
}
.oferta__preco small {
  display: block; font-family: var(--f-sans); font-size: .3em;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.oferta__preco span { font-size: .4em; color: var(--gold-pale); vertical-align: .58em; margin-right: .16em; }
.oferta__parc { font-size: .95rem; color: var(--text-soft); }
.oferta__parc b { color: var(--text); font-weight: 600; }
.oferta__pix { font-size: .82rem; color: var(--text-muted); margin-top: var(--sp-4); }

/* ----------------------------------------------------------------
   17. GARANTIA
   ---------------------------------------------------------------- */
.garantia__caixa {
  max-width: 620px; margin-inline: auto; text-align: center;
  border: 1px dashed var(--gold-line-2); border-radius: var(--r-lg);
  padding: clamp(24px, 6vw, 40px);
}
.garantia__selo {
  width: 66px; height: 66px; margin: 0 auto var(--sp-4);
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--gold-line-2); color: var(--gold-pale);
  font-family: var(--f-display); font-size: 1.7rem; line-height: 1;
}
.garantia__selo small { display: block; font-family: var(--f-sans); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

/* ----------------------------------------------------------------
   18. FAQ
   ---------------------------------------------------------------- */
.faq { max-width: 60ch; margin: var(--sp-6) auto 0; }
.faq__item { border-bottom: 1px solid var(--gold-line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: var(--sp-4) 2rem var(--sp-4) 0;
  position: relative; font-weight: 600; color: var(--text); font-size: 1rem; line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; translate: 0 -50%;
  color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: rotate .25s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding-bottom: var(--sp-5); font-size: .95rem; max-width: 58ch; }

/* ----------------------------------------------------------------
   19. CTA FINAL + RODAPE + BARRA FIXA
   ---------------------------------------------------------------- */
.fecho { text-align: center; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); border-top: 1px solid var(--gold-line); }

.rodape { padding: var(--sp-6) 0 var(--sp-7); border-top: 1px solid var(--gold-line); text-align: center; }
.rodape__assin { font-family: var(--f-display); font-size: 1rem; color: var(--text-soft); text-wrap: balance; max-width: 34ch; margin-inline: auto; }
.rodape__legal { font-size: .76rem; color: var(--text-muted); margin-top: var(--sp-3); line-height: 1.7; max-width: 46ch; margin-inline: auto; text-wrap: balance; }

.barra {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 50;
  display: flex; align-items: center; gap: var(--sp-4);
  padding: .6rem clamp(14px, 4vw, 20px) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11,10,9,.93);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line);
}
.barra__preco { font-size: .78rem; color: var(--text-muted); line-height: 1.2; white-space: nowrap; }
.barra__preco b { display: block; font-family: var(--f-sans); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; color: var(--text); }
.barra .btn { flex: 1; padding-block: .85rem; font-size: .92rem; }
@media (min-width: 900px) { .barra { display: none; } body { padding-bottom: 0; } }

/* ----------------------------------------------------------------
   20. PAGINA DE OBRIGADO (especifico)
   ---------------------------------------------------------------- */
.confirma {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ok); border: 1px solid rgba(111,191,143,.35); background: rgba(111,191,143,.08);
  border-radius: var(--r-pill); padding: .42rem .95rem; margin-bottom: var(--sp-5);
}
.convite { max-width: 56ch; margin: var(--sp-6) auto 0; text-align: left; display: grid; gap: var(--sp-4); font-size: 1rem; }
.passos-dia { list-style: none; counter-reset: d; display: grid; gap: var(--sp-4); max-width: 56ch; margin: var(--sp-6) auto 0; }
.passos-dia li { counter-increment: d; display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.passos-dia li::before {
  content: counter(d); display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-line-2);
  color: var(--gold-pale); font-family: var(--f-display); font-size: .95rem;
}

/* ----------------------------------------------------------------
   21. FORMACAO (backend) — modalidades e cronograma
   ---------------------------------------------------------------- */
.modalidades { display: grid; gap: var(--sp-5); margin-top: var(--sp-7); }
.modalidade {
  background: var(--bg-card); border: 1px solid var(--gold-line);
  border-radius: var(--r-lg); padding: clamp(22px, 5.5vw, 32px); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.modalidade--destaque { border-color: var(--gold-line-2); background: var(--grad-veil); }
.modalidade__tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.modalidade__nome { font-size: 1.5rem; margin: var(--sp-3) 0; }
.modalidade__preco { font-family: var(--f-display); font-variant-numeric: lining-nums; font-size: 2.1rem; color: var(--text); line-height: 1; margin-bottom: .3rem; }
.modalidade__cond { font-size: .86rem; color: var(--text-muted); }
.modalidade ul { list-style: none; display: grid; gap: var(--sp-2); margin: var(--sp-5) 0; font-size: .94rem; }
.modalidade ul li { display: flex; gap: .6rem; line-height: 1.45; }
.modalidade ul li::before { content: "✓"; color: var(--gold); flex: 0 0 auto; }
.modalidade .btn { margin-top: auto; }
@media (min-width: 860px) { .modalidades { grid-template-columns: 1fr 1fr; } }

.agenda { display: grid; gap: var(--sp-5); margin-top: var(--sp-7); }
.agenda__dia { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--r-lg); padding: clamp(20px, 5vw, 30px); }
.agenda__cab { font-family: var(--f-display); font-size: 1.3rem; color: var(--gold-pale); margin-bottom: var(--sp-4); }
.agenda ol { list-style: none; display: grid; gap: var(--sp-3); }
.agenda li { display: grid; grid-template-columns: 5.6rem 1fr; gap: var(--sp-3); font-size: .93rem; line-height: 1.45; align-items: baseline; }
.agenda li b { font-family: var(--f-sans); font-size: .82rem; letter-spacing: .04em; color: var(--gold); font-weight: 700; white-space: nowrap; }
@media (min-width: 860px) { .agenda { grid-template-columns: 1fr 1fr; } }


/* ----------------------------------------------------------------
   23. CONTA ARITMETICA (variante geo)
   ---------------------------------------------------------------- */
.conta {
  max-width: 420px; margin: var(--sp-6) auto 0;
  border: 1px solid var(--gold-line); border-radius: var(--r-lg);
  background: var(--bg-card); overflow: hidden;
}
.conta__linha {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) clamp(16px, 5vw, 24px); border-bottom: 1px solid var(--gold-line);
}
.conta__linha:last-child { border-bottom: 0; }
.conta__rot { font-size: .92rem; color: var(--text-soft); }
.conta__val { font-family: var(--f-display); font-variant-numeric: lining-nums; font-size: 1.25rem; color: var(--text); white-space: nowrap; }
.conta__linha--total { background: rgba(201,169,97,.08); }
.conta__linha--total .conta__rot { color: var(--text); font-weight: 600; }
.conta__linha--total .conta__val { color: var(--gold-pale); font-size: 1.6rem; }

/* ----------------------------------------------------------------
   24. COMPARATIVO (backend)
   ---------------------------------------------------------------- */
.versus { display: grid; gap: var(--sp-4); max-width: 640px; margin: var(--sp-6) auto 0; }
.versus__item {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
  padding: var(--sp-4); border: 1px solid var(--gold-line); border-radius: var(--r-md);
  background: var(--bg-card); font-size: .93rem; line-height: 1.45;
}
.versus__lado b { display: block; font-family: var(--f-sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .35rem; font-weight: 700; }
.versus__lado--a { color: var(--text-muted); }
.versus__lado--a b { color: var(--danger); }
.versus__lado--b { color: var(--text); }
.versus__lado--b b { color: var(--ok); }

/* ----------------------------------------------------------------
   22. ACESSIBILIDADE
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .barra, .topo { display: none; }
  body { background: #fff; color: #000; }
}
