/* ==========================================================================
   Método Thaís Mansano — Curso Completo — página de vendas (v4, lead frio)
   Fontes self-hospedadas, sem framework, sem build step.
   ========================================================================== */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-display.woff2') format('woff2');
}

@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/schibsted-grotesk.woff2') format('woff2');
}

:root {
  /* paleta — fixa, não negociável */
  --navy: #110a39;
  --navy-2: #180f4a;
  --navy-3: #0a0526;
  --cream: #faf5ee;
  --cream-72: rgba(250, 245, 238, .72);
  --cream-52: rgba(250, 245, 238, .52);
  --cream-line: rgba(250, 245, 238, .13);
  --gold: #e2b807;
  --gold-hover: #f2c918;
  --gold-12: rgba(226, 184, 7, .12);
  --rose: #c0867c;

  /* tipografia */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Schibsted Grotesk', 'Segoe UI', system-ui, sans-serif;

  --t-caption: .8125rem;
  --t-body: clamp(1.0625rem, .25vw + 1rem, 1.1875rem);
  --t-lede: clamp(1.375rem, 1.1vw + 1.1rem, 1.6rem);
  --t-h3: clamp(1.75rem, 1.4vw + 1.4rem, 2rem);
  --t-h2: clamp(2.25rem, 5vw, 3.75rem);
  --t-h1: clamp(2.9rem, 7vw, 5.75rem);

  /* ritmo */
  --block-padding-y: clamp(3.5rem, 9vw, 6.5rem);
  --space-group: 1.75rem;
  --space-major: clamp(2.75rem, 6vw, 4.5rem);
  --space-section-loose: clamp(4.5rem, 13vw, 9.5rem);
  --inner-max: 1140px;
  --inner-max-narrow: 680px;
  --inner-pad: clamp(1.25rem, 6vw, 3rem);

  --reveal-duration: 560ms;
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);

  /* progresso da espinha — o JS escreve; sem JS fica em 100% (estado final) */
  --spine-progress: 100%;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ul, ol, li, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video, iframe { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; }

/* ==========================================================================
   Base
   ========================================================================== */

html {
  scrollbar-color: var(--gold) var(--navy-3);
  scrollbar-width: thin;
}

body {
  background: var(--navy);
  color: var(--cream-72);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; border: 3px solid var(--navy-3); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

input, textarea { caret-color: var(--gold); }

strong { font-weight: 600; color: var(--cream); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .85rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus { left: 0; }

/* ==========================================================================
   Escala tipográfica (utilitária, desacoplada da tag semântica)
   ========================================================================== */

.t-caption {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--cream-52);
}

.t-body { font-family: var(--font-body); font-size: var(--t-body); font-weight: 400; color: var(--cream-72); }

.t-lede { font-family: var(--font-body); font-size: var(--t-lede); font-weight: 500; line-height: 1.45; color: var(--cream); }

.t-h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; line-height: 1.32; color: var(--cream); }

.t-h2 { font-family: var(--font-display); font-size: var(--t-h2); font-weight: 600; line-height: 1.1; color: var(--cream); }

.t-h1 { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 600; line-height: 1.04; color: var(--cream); }

/* títulos e corpo com quebra tratada — sem órfã na última linha */
h1, h2, h3, .t-h1, .t-h2, .t-h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ==========================================================================
   Layout de bloco
   ========================================================================== */

.block { padding-block: var(--block-padding-y); }

.surface-navy { background: var(--navy); }
.surface-navy-2 { background: var(--navy-2); }
.surface-navy-3 { background: var(--navy-3); }

.block + .block { border-top: 1px solid var(--cream-line); }

.block__inner {
  max-width: var(--inner-max);
  margin-inline: auto;
  padding-inline: var(--inner-pad);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.block__inner--narrow { max-width: var(--inner-max-narrow); }

/* adensamento de parágrafo dentro de texto corrido */
.block__inner p + p { margin-top: -.75rem; }

/* ==========================================================================
   A espinha — a linha condutora que atravessa a página inteira.
   Sem JS: --spine-progress fica em 100% e a linha renderiza cheia.
   ========================================================================== */

.spine {
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(.75rem, calc((100vw - var(--inner-max)) / 2 - 1.75rem));
  width: 1px;
  background: var(--cream-line);
  z-index: 5;
  pointer-events: none;
}

.spine__fill {
  display: block;
  width: 100%;
  height: var(--spine-progress);
  background: linear-gradient(180deg, var(--gold), rgba(226, 184, 7, .35));
}

/* abaixo de 1240px não sobra margem pra uma linha fora do conteúdo sem ela
   encostar no texto — a espinha sai e os blocos que a usam por dentro
   (erros, espinha das capacidades) continuam com a régua própria deles */
@media (max-width: 1239px) {
  .spine { display: none; }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 56px;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.cta:hover, .cta:focus-visible {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .42);
}

.cta--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-line);
}

.cta--ghost:hover, .cta--ghost:focus-visible {
  background: var(--cream-line);
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
  .cta:hover, .cta:focus-visible { transform: none; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

/* Só esconde quando há JS pra revelar. Sem o `.js` no <html>, o corpo inteiro
   da carta nascia invisível e nunca voltava — um erro de script entregava
   página em branco. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Barra fixa com o CTA
   ========================================================================== */

.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: .75rem var(--inner-pad) calc(.75rem + env(safe-area-inset-bottom));
  background: var(--navy-3);
  border-block-start: 1px solid rgba(226, 184, 7, .28);
  transform: translate3d(0, 110%, 0);
  transition: transform .38s var(--reveal-ease);
}

.buybar.is-on { transform: none; }

.buybar__in {
  width: min(100%, var(--inner-max));
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.buybar .cta { min-height: 48px; padding: .8rem 1.6rem; }

/* as duas barras dividem o rodapé fixo. Esconder a de compra enquanto a de
   cookies estiver de pé custava caro num regime opt-out, em que muita gente
   nunca clica em nada e ficaria a carta inteira sem saída — então ela sobe
   pra cima da outra em vez de sumir */
body.tem-consent-bar .buybar { bottom: var(--consent-bar-h, 96px); }

@media (max-width: 620px) {
  .buybar .cta { width: 100%; padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .buybar { transition: none; }
}

/* ==========================================================================
   Barra de consentimento
   ========================================================================== */

.consent-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--navy-3);
  border-top: 1px solid var(--cream-line);
}

.consent-bar[hidden] { display: none; }

.consent-bar__text { font-size: var(--t-caption); color: var(--cream-72); max-width: 60ch; }

/* link corrido dentro da frase — sem o min-height de 44px do .rodape__link,
   que é pra link solto em lista. Alvo de toque: a WCAG 2.2 isenta link
   inline em bloco de texto do mínimo de 24px (Target Size, exceção inline). */
.consent-bar__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-bar__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.consent-bar__actions .cta { min-height: 44px; padding: .7rem 1.3rem; font-size: var(--t-caption); }

/* ==========================================================================
   Cabeçalho — identidade do documento, não eyebrow do título
   ========================================================================== */

.marca {
  border-bottom: 1px solid var(--cream-line);
  background: var(--navy);
}

.marca__in {
  max-width: var(--inner-max);
  margin-inline: auto;
  padding: 1.1rem var(--inner-pad);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem .9rem;
}

/* usa --t-caption, não um tamanho próprio: uma assinatura de 17px entre o
   corpo de 17px e o CTA de 16px achatava a escala em três degraus vizinhos */
.marca__nome {
  font-family: var(--font-display);
  font-size: var(--t-caption);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--cream);
}

.marca__tipo {
  font-size: var(--t-caption);
  color: var(--cream-52);
}

.marca__tipo::before { content: '· '; }

/* ==========================================================================
   1 — Hero (tipográfico, sem VSL)
   ========================================================================== */

.block-hero {
  padding-block: clamp(4rem, 14vw, 9rem);
}

.block-hero .block__inner { gap: 1.5rem; max-width: 980px; }

.hero__headline { max-width: 16ch; }

.hero__lede { max-width: 60ch; color: var(--cream-72); }

/* ==========================================================================
   2 — A cena da selftape
   ========================================================================== */

.cena__batida {
  margin-block: .5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--cream);
}

/* ==========================================================================
   3 — Seis erros (01–06)
   ========================================================================== */

.erros { display: flex; flex-direction: column; }

.erros__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--cream-line);
}

.erros__item:last-child { border-bottom: 1px solid var(--cream-line); }

/* respiro no meio: seis itens de forma idêntica em 2.333px é o trecho mais
   longo da carta sem quebra de ritmo. A pausa antes do quarto parte em 3+3 */
.erros__item:nth-child(4) {
  border-top-color: var(--gold);
  padding-block-start: calc(clamp(1.75rem, 4vw, 2.5rem) + var(--space-group));
}

.erros__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: .9;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  /* o numeral marca ordem e não deve competir com o título do erro */
  opacity: .55;
}

.erros__corpo { display: flex; flex-direction: column; gap: .75rem; }

.erros__titulo { max-width: 32ch; }

.erros__corpo p { max-width: 62ch; }

.erros__fecho { max-width: 62ch; }

/* ==========================================================================
   4 · 10 · 12 · 16 — Blocos de vídeo
   ========================================================================== */

.block-video { padding-block: clamp(2.75rem, 7vw, 4.5rem); }

.block-video .block__inner { align-items: center; gap: 1rem; }

/* Slot vazio (CONFIG sem URL) some por inteiro — o texto ao redor fecha
   sozinho, como pede a nota de produção da copy. O JS marca o atributo. */
.block-video[data-video-vazio] { display: none; }

.video-frame {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-2) 0%, var(--navy) 60%), var(--navy);
  border: 1px solid var(--cream-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame__poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-12);
}

.video-frame__poster-frame {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  color: var(--gold);
  opacity: .35;
}

.video-frame__play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform .2s ease;
}

.video-frame__play:hover, .video-frame__play:focus-visible { transform: scale(1.06); }

.video-frame__play svg { width: 72px; height: 72px; }

.video-frame__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-frame__legenda { text-align: center; max-width: 52ch; }

@media (prefers-reduced-motion: reduce) {
  .video-frame__play { transition: none; }
  .video-frame__play:hover, .video-frame__play:focus-visible { transform: none; }
}

/* ==========================================================================
   5 — A explicação
   ========================================================================== */

.explicacao__virada {
  margin-top: .5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-line);
  color: var(--cream);
}

/* ==========================================================================
   6 — De onde vem essa metodologia (bio)
   Nenhum container de números aqui, de propósito: ver o guarda-corpo no
   HTML. Os valores ficam inline, com ênfase só de <strong>.
   ========================================================================== */

.origem__abertura { color: var(--gold); }

/* Os valores da formação ficam em cream, não em gold. Eram os únicos quatro
   acentos do bloco: quem escaneava a bio lia uma fatura, não uma história.
   O ouro vai para as viradas narrativas, abaixo. */
.block-origem strong { color: var(--cream); font-weight: 600; }

/* As cinco batidas da história. A copy já terminava cada movimento numa
   frase-pivô; elas só estavam com o mesmo peso do resto do parágrafo.
   Mesmo device de .corpo__virada — a régua vertical em gold é a gramática
   da espinha, reservada aos momentos de virada da carta. */
.origem__virada {
  margin-block: .75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--cream);
}

/* o adensamento de parágrafo serve texto corrido; entre movimentos ele
   fecha o respiro que a batida acabou de abrir */
.block-origem .block__inner p + p { margin-top: 0; }

.block-origem .block__inner { gap: 1.35rem; }

/* ==========================================================================
   7 — O corpo decide (escala polivagal)
   ========================================================================== */

.corpo__abertura { color: var(--gold); }

.polivagal {
  margin-block: var(--space-group);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  background: var(--navy-3);
}

.polivagal__escala { display: flex; flex-direction: column; gap: 1.25rem; }

.polivagal__estado {
  display: grid;
  grid-template-columns: 4px 1fr;
  column-gap: 1.25rem;
  row-gap: .2rem;
  align-items: start;
}

.polivagal__barra {
  grid-row: 1 / span 2;
  width: 4px;
  height: 100%;
  min-height: 2.75rem;
  border-radius: 999px;
  background: var(--cream-line);
}

.polivagal__estado--ativo .polivagal__barra { background: var(--gold); }

.polivagal__nome {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  line-height: 1.3;
  color: var(--cream-52);
}

.polivagal__estado--ativo .polivagal__nome { color: var(--cream); }

.polivagal__sinal { font-size: var(--t-caption); color: var(--cream-52); }

.polivagal__estado--ativo .polivagal__sinal { color: var(--gold); }

.corpo__virada {
  margin-block: .5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.corpo__nota {
  margin-top: var(--space-group);
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.corpo__nota p + p { margin-top: 0; }

/* ==========================================================================
   8 — As cinco capacidades (a espinha vira diagrama)
   ========================================================================== */

.espinha {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.25rem);
  margin-top: var(--space-group);
  padding-left: clamp(2.5rem, 6vw, 4rem);
}

/* a linha do diagrama — mesma gramática da espinha global */
.espinha::before {
  content: '';
  position: absolute;
  left: clamp(.9rem, 2.2vw, 1.5rem);
  top: .6rem;
  bottom: .6rem;
  width: 1px;
  background: var(--cream-line);
}

/* o preenchimento acompanha quantos nós já acenderam */
.espinha::after {
  content: '';
  position: absolute;
  left: clamp(.9rem, 2.2vw, 1.5rem);
  top: .6rem;
  width: 1px;
  height: var(--espinha-progress, 100%);
  background: var(--gold);
}

.espinha__no { position: relative; display: flex; flex-direction: column; gap: .85rem; }

/* o nó */
.espinha__no::before {
  content: '';
  position: absolute;
  left: calc(clamp(.9rem, 2.2vw, 1.5rem) - clamp(2.5rem, 6vw, 4rem) - 5px);
  top: .5rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 1px solid var(--gold);
  transition: background-color .45s var(--reveal-ease), box-shadow .45s var(--reveal-ease);
}

.espinha__no.is-aceso::before { background: var(--gold); }

.espinha__numero {
  font-family: var(--font-display);
  font-size: var(--t-caption);
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.espinha__corpo { display: flex; flex-direction: column; gap: .85rem; }

.espinha__corpo p { max-width: 62ch; }

.espinha__destaque { color: var(--gold); }

.espinha__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  margin-top: .35rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--cream-line);
}

.espinha__meta dt {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}

.espinha__meta dd + dt { margin-top: .85rem; }

.espinha__meta dd { max-width: 60ch; }

/* o quinto nó — o fósforo. A ignição é enriquecimento; sem JS ele já
   renderiza aceso, como todos os outros. */
.espinha__no--fosforo.is-aceso::before {
  box-shadow: 0 0 0 4px rgba(226, 184, 7, .18), 0 0 22px 4px rgba(226, 184, 7, .5);
}

@media (prefers-reduced-motion: reduce) {
  .espinha__no::before { transition: none; }
}

/* ==========================================================================
   O momento do álcool e do fósforo
   ========================================================================== */

.fosforo {
  margin-top: var(--space-major);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  border: 1px solid var(--cream-line);
  border-radius: 18px;
  background: var(--navy-3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

/* o clarão: opacidade 0 por padrão, o JS acende uma vez e deixa assentado */
.fosforo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 50% 100%, rgba(226, 184, 7, .22), transparent 70%);
  opacity: 0;
  transition: opacity 900ms var(--reveal-ease);
  pointer-events: none;
}

.fosforo.is-aceso::before { opacity: 1; }

.fosforo > * { position: relative; }

.fosforo__linha { color: var(--cream-72); max-width: 62ch; }

.fosforo__risca { color: var(--gold); }

.fosforo p { max-width: 62ch; }

.fosforo p + p { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .fosforo::before { transition: none; opacity: 1; }
}

/* ==========================================================================
   9 — Prova (narrativa corrida, nomes ancorados)
   ========================================================================== */

.prova-caso {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid var(--cream-line);
}

.prova-caso p + p { margin-top: 0; }

.prova-nome {
  font-weight: 600;
  color: var(--cream);
}

/* A obra herda o corpo e fica só com o itálico, que é convenção de título e
   não ênfase. Em cream ela dividia o degrau de contraste com o nome da pessoa
   e aparecia 12 vezes contra 9 — quem rolava rápido colhia novelas, não gente.
   Agora o escaneio tem dois eixos e cada um aponta pro que a prova é:
   cream 600 = a pessoa · gold = a ferramenta que ela aplicou. */
.prova-obra { font-style: italic; }

/* a ferramenta aplicada — o que o guarda-corpo manda ancorar */
.prova-mecanismo {
  font-style: normal;
  color: var(--gold);
}

.prova-caso__fecho {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--cream);
}

.prova__ressalva {
  margin-top: var(--space-group);
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-line);
  color: var(--cream-72);
}

/* ==========================================================================
   11 — É isso que você recebe
   ========================================================================== */

.entrega { display: flex; flex-direction: column; }

.entrega__item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-block: clamp(1.35rem, 3.5vw, 1.9rem);
  border-bottom: 1px solid var(--cream-line);
}

.entrega__item p { max-width: 62ch; }

/* os dois itens de serviço contínuo (plantão, comunidade) leem diferente dos
   itens de catálogo: ganham ícone e recuo, sem virar mais um card igual */
.entrega__item--destaque {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.15rem;
}

.entrega__item--destaque > div { display: flex; flex-direction: column; gap: .75rem; }

.entrega__icone {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: .35rem;
  color: var(--gold);
}

.entrega__titulo { max-width: 34ch; }

/* recuo, não citação: fundo levemente rebaixado em vez de mais uma régua
   vertical — a régua em gold é a gramática da espinha e fica reservada aos
   momentos de virada da carta */
.entrega__aviso {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(250, 245, 238, .04);
}

.presentes {
  margin-top: var(--space-major);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.presentes__grade { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.presentes__item {
  padding: 1.25rem clamp(1.25rem, 4vw, 1.5rem);
  border: 1px solid var(--cream-line);
  border-radius: 12px;
}

.oferta__acesso { margin-top: var(--space-group); color: var(--gold); }

.block-oferta > .block__inner > .bonus-monologos,
.block-oferta > .block__inner > .cta { margin-top: var(--space-group); }

.bonus-monologos {
  max-width: 62ch;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px dashed var(--rose);
  border-radius: 14px;
  background: rgba(192, 134, 124, .08);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.bonus-monologos p + p { margin-top: 0; }

.bonus-monologos__prazo { color: var(--rose); font-weight: 500; }

/* ==========================================================================
   13 — Quanto custa
   ========================================================================== */

/* Âncora de preço de MERCADO. Container próprio, longe da biografia,
   com o enquadramento dito em voz alta. Ver o guarda-corpo no HTML. */
.ancora {
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ancora p + p { margin-top: 0; }

.valor-stack { display: flex; flex-direction: column; }

/* a pilha atravessa a fronteira oferta → preço: o número cai em cima da
   entrega ainda visível, em vez de o bloco de preço reabrir do zero */
.valor-stack__recap {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding-bottom: 1.15rem;
}

.valor-stack__recap li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .8rem;
  align-items: baseline;
  color: var(--cream-72);
}

.valor-stack__recap li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-.25em);
}

.valor-stack__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px dashed var(--cream-line);
}

.valor-stack__label { flex: 1 1 320px; max-width: 56ch; }

.valor-stack__price { flex: 0 0 auto; font-family: var(--font-display); color: var(--cream); white-space: nowrap; }

.valor-stack__price--riscado { color: var(--cream-52); text-decoration: line-through; }

.preco-final {
  margin-top: .5rem;
  padding: clamp(1.75rem, 5vw, 2.5rem);
  border-radius: 18px;
  background: var(--gold-12);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.preco-final__valor { color: var(--gold); }

.preco-final__valor .t-body { color: var(--gold); }

.preco-final__parcelas { color: var(--cream); }

.preco-final .t-caption { margin-bottom: .5rem; }

.preco-final p + p { margin-top: 0; }

/* o reversor de risco vive junto do número, não 1.400px abaixo dele */
/* padding, não margin: `.preco-final p + p` tem especificidade maior e zerava
   o margin-top */
.preco-final__risco {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(226, 184, 7, .3);
}

.preco-final__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preco__trava {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

/* ==========================================================================
   14 — Garantia
   ========================================================================== */

.block-garantia > .block__inner > .garantia-layer,
.block-garantia > .block__inner > .t-lede,
.block-garantia > .block__inner > .garantia__ponte { margin-top: var(--space-group); }

.garantia-layer { display: flex; gap: 1.25rem; align-items: flex-start; }

.garantia-layer__selo { width: 48px; height: 48px; flex-shrink: 0; color: var(--gold); }

.garantia-layer--legal { align-items: center; }

.garantia-layer--trabalho {
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--cream-line);
  border-radius: 16px;
}

.garantia-layer--trabalho .garantia-layer__top { display: flex; gap: 1.25rem; align-items: flex-start; }

.garantia-layer__selo--extended { width: 56px; height: 56px; }

/* as três etapas que se encadeiam depois dos 7 dias — recuo por padding e
   fundo, sem régua vertical (ver .entrega__aviso) */
.garantia-layer__nested {
  padding: 1.15rem 1.35rem;
  border-radius: 12px;
  background: rgba(250, 245, 238, .04);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.garantia-layer__nested p + p { margin-top: 0; }

/* O último degrau é a frase mais forte da carta — "devolvo o valor inteiro e
   pago mais R$500" — e estava com o mesmo rank dos dois anteriores. Ganha
   escala e separação próprias. */
.garantia-layer__nested p:last-child {
  margin-top: .35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(226, 184, 7, .38);
  font-size: var(--t-lede);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
}

/* e o selo grande sai do degrau commodity: 7 dias é o que a lei obriga em
   qualquer produto online, não é argumento */
.garantia-layer--legal .garantia-layer__selo { width: 28px; height: 28px; }

.garantia__ponte { color: var(--gold); }

/* ==========================================================================
   15 — FAQ
   ========================================================================== */

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--cream-line); }

.faq-item__heading { font-weight: normal; }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  min-height: 56px;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--t-lede);
  font-weight: 500;
  color: var(--cream);
}

.faq-item__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform .25s ease; }

.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-item__answer.is-open { grid-template-rows: 1fr; }

.faq-item__answer > * { overflow: hidden; }

.faq-item__answer > .faq-item__answer-inner {
  padding-bottom: 1.4rem;
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item__answer-inner p + p { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer { transition: none; }
  .faq-item__icon { transition: none; }
}

/* ==========================================================================
   17 — Fechamento
   ========================================================================== */

.block-fechamento .block__inner { align-items: center; text-align: center; max-width: 760px; }

.block-fechamento .cta { align-self: center; }

/* o medalhão fecha a espinha */
.medalhao {
  position: relative;
  width: clamp(76px, 16vw, 104px);
  height: clamp(76px, 16vw, 104px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}

.medalhao__anel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(80% 80% at 50% 25%, rgba(226, 184, 7, .22), transparent 70%);
}

.medalhao__marca {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--t-caption);
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold);
}

.fechamento__ps {
  margin-top: var(--space-major);
  padding-top: var(--space-group);
  border-top: 1px solid var(--cream-line);
  max-width: 62ch;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fechamento__ps p + p { margin-top: 0; }

/* ==========================================================================
   Rodapé — responsabilização do vendedor
   ========================================================================== */

.rodape {
  background: var(--navy-3);
  border-top: 1px solid var(--cream-line);
  /* a barra fixa de compra vive por cima do fim da página */
  padding-block: clamp(2.5rem, 6vw, 3.5rem) calc(clamp(2.5rem, 6vw, 3.5rem) + 5rem);
}

.rodape__in {
  max-width: var(--inner-max-narrow);
  margin-inline: auto;
  padding-inline: var(--inner-pad);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.rodape__vendedor { color: var(--cream); font-weight: 600; }

.rodape__golpe { max-width: 62ch; }

.rodape__links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }

.rodape__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--t-caption);
  color: var(--cream-72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rodape__link:hover, .rodape__link:focus-visible { color: var(--gold); }

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (min-width: 768px) {
  .presentes__grade { grid-template-columns: 1fr 1fr; }
  .espinha__meta { grid-template-columns: minmax(140px, auto) 1fr; column-gap: 1.25rem; align-items: baseline; }
  .espinha__meta dd + dt { margin-top: .5rem; }
  .polivagal__estado { grid-template-columns: 4px minmax(180px, auto) 1fr; align-items: center; }
  .polivagal__barra { grid-row: 1; min-height: 2.25rem; }
}

@media (min-width: 1024px) {
  .block__inner { gap: 2.25rem; }
}
