/* PROVENIÊNCIA: cópia de ../design/north-star/tokens.css
   Fonte da verdade permanece em ../design/north-star/tokens.css — não edite aqui.
   Este arquivo existe pra manter o build/ AUTOCONTIDO (deployável no Netlify).
   ============================================================ */
/* ============================================================
   HAYALLA MONTEIRO — QUIZ TOKENS
   Contrato de design que o Dev Engine consome.
   Direção "Pele Iluminada" com ponte pra marca dark (serifa + rosé).

   display: Tenor Sans — PROVISÓRIA, decisão final em aberto (ver variantes/)
   Tenor Sans é single-weight (400) e não tem itálico nativo.
   A assinatura que antes era italic serifada (eyebrow, social__title,
   pitstop closing) foi migrada para Nunito italic 500 rosé — mesmo
   tratamento que a V2 valida no variantes/abertura-v2.html.
   O acento em .display em (antes italic accent) vira "spaced accent":
   sem italic, letter-spacing largo, cor rosé — o em faz de conta que
   é acento tipográfico e não deriva pra caret gramatical.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

:root {
  /* ---------- CORES ---------- */

  /* Base — ivory quente, NUNCA branco puro */
  --bg-base:        #F7F2EC;   /* ivory quente do fundo geral */
  --bg-base-soft:   #F1E9DF;   /* variação p/ gradiente sutil */
  --surface:        #FFFFFF;   /* card branco por cima do ivory */
  --surface-hover:  #FBF7F2;   /* hover sutil do card de opção */
  --surface-select: #FDF2F1;   /* opção selecionada — rosé lavado */

  /* Tinta */
  --ink-primary:    #1F1418;   /* quase-preto quente p/ headline */
  --ink-body:       #3A2A30;   /* corpo, alto contraste */
  --ink-muted:      #7A6167;   /* metadata, subheadlines menores */
  --ink-faint:      #B49AA0;   /* auxiliar */

  /* Acento — rosé/bordô da marca */
  --accent:         #A94A66;   /* CTA primário */
  --accent-hover:   #8F3A54;
  --accent-soft:    #EAD1D7;   /* borda selecionada, glow */
  --accent-ink:     #FFFFFF;   /* tinta em cima do acento */
  --accent-glow:    rgba(169, 74, 102, 0.18);

  /* Champanhe — segunda cor, SÓ em valor/confiança (preço, selo). Nunca decorativa. */
  --gold:           #A9833F;   /* champanhe profundo — tinta dourada */
  --gold-soft:      #E4D2AB;   /* champanhe claro — bordas/anel */
  --gold-wash:      #F6EEDD;   /* champanhe lavado — fundo de badge */

  /* Ação — verde esmeralda EXCLUSIVO dos CTAs (único sinal de "ação"
     da página; conversão por saliência + gatilho de "siga/seguro"). */
  --cta:            #2F7A57;   /* esmeralda profundo — topo do gradiente */
  --cta-deep:       #245F44;   /* pinheiro — base do gradiente/hover */
  --cta-glow:       rgba(47, 122, 87, 0.30);

  /* Utilitárias */
  --success:        #4B7A5A;   /* check verde discreto */
  --warn:           #B87333;   /* aviso de escassez, quase cobre */
  --border:         #E8DBD3;   /* borda default clara */
  --border-strong:  #D9C6BE;

  /* ---------- TIPOGRAFIA ---------- */
  --font-display:   'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:      'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tenor Sans = single-weight 400.
     Usa letter-spacing muito leve pra dar respiro sem virar all-caps display. */
  --display-tracking: 0.005em;
  --display-tracking-accent: 0.02em; /* usado no <em> pra fingir grifo */

  /* escala fluida — mobile-first */
  --fs-display:     clamp(1.75rem, 6vw, 2.5rem);   /* headline abertura/VSL */
  --fs-h1:          clamp(1.35rem, 4.8vw, 1.75rem); /* headline da pergunta */
  --fs-h2:          clamp(1.15rem, 4vw, 1.35rem);
  --fs-body:        1rem;      /* 16px — mínimo iOS */
  --fs-small:       0.875rem;
  --fs-tiny:        0.75rem;

  --lh-tight:       1.15;
  --lh-snug:        1.35;
  --lh-normal:      1.55;

  /* ---------- ESPAÇAMENTO ---------- */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-7:  32px;
  --sp-8:  40px;
  --sp-9:  56px;
  --sp-10: 72px;

  /* ---------- RAIOS ---------- */
  --r-sm:  8px;
  --r-md:  12px;   /* botões de opção */
  --r-lg:  16px;   /* card grande */
  --r-xl:  24px;
  --r-pill: 999px;

  /* ---------- SOMBRAS ---------- */
  --shadow-card:    0 1px 2px rgba(31, 20, 24, 0.04),
                    0 8px 24px rgba(31, 20, 24, 0.06);
  --shadow-cta:     0 8px 20px rgba(169, 74, 102, 0.28);
  --shadow-select:  0 0 0 2px var(--accent) inset,
                    0 6px 18px var(--accent-glow);

  /* ---------- LAYOUT ---------- */
  --col-max:        480px;     /* coluna mobile-first, mesmo no desktop */
  --tap-min:        56px;      /* altura mínima de botão */
  --progress-h:     3px;

  /* ---------- MOVIMENTO ---------- */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:       160ms;
  --dur-med:        260ms;
  --dur-slow:       500ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--ink-body);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* leve calor no fundo pra não parecer chapado */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% -10%, var(--bg-base-soft) 0%, transparent 55%),
    radial-gradient(80% 40% at 50% 110%, rgba(234, 209, 215, 0.35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   ESTRUTURAS COMPARTILHADAS
   ============================================================ */

/* Barra de progresso (topo, fora do card) */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--progress-h);
  background: rgba(169, 74, 102, 0.10);
  z-index: 10;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #C56D85 100%);
  transition: width 400ms var(--ease-out);
}

/* Container mobile-first — coluna centralizada mesmo em desktop */
.shell {
  position: relative;
  z-index: 1;
  max-width: var(--col-max);
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-5) var(--sp-9);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Marca sutil no topo — Tenor Sans não tem italic, então vira mini-caps.
   Padrão validado no variantes/abertura-v2.html. */
.mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.mark::before,
.mark::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-soft);
  vertical-align: middle;
  margin: 0 var(--sp-3);
}

/* ============================================================
   BOTÃO DE OPÇÃO (pergunta)
   ============================================================ */
.option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  min-height: var(--tap-min);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  font-size: var(--fs-body);
  color: var(--ink-body);
  text-align: left;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  box-shadow: 0 1px 2px rgba(31, 20, 24, 0.03);
}
.option + .option { margin-top: var(--sp-3); }

.option:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}
.option:active { transform: scale(0.99); }

.option[aria-selected="true"],
.option.is-selected {
  background: var(--surface-select);
  border-color: var(--accent);
  color: var(--ink-primary);
  box-shadow: var(--shadow-select);
}

.option__marker {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.option[aria-selected="true"] .option__marker,
.option.is-selected .option__marker {
  border-color: var(--accent);
  background: var(--accent);
}
.option[aria-selected="true"] .option__marker::after,
.option.is-selected .option__marker::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-ink);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  min-height: 60px;
  padding: var(--sp-4) var(--sp-6);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition:
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.cta:hover { background: var(--accent-hover); }
.cta:active { transform: translateY(1px); box-shadow: 0 4px 12px rgba(169,74,102,0.24); }

/* pulso muito discreto no CTA da abertura */
@keyframes cta-pulse {
  0%, 100% { box-shadow: var(--shadow-cta); }
  50%      { box-shadow: 0 10px 26px rgba(169,74,102,0.38); }
}
.cta--pulse { animation: cta-pulse 2.4s ease-in-out infinite; }

/* ============================================================
   HEADLINES
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  color: var(--ink-primary);
  letter-spacing: var(--display-tracking);
  margin: 0 0 var(--sp-4);
}
/* Tenor Sans não tem italic — o em vira spaced-accent rosé.
   Sem itálica, mas ainda legível como "grifo tipográfico". */
.display em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: var(--display-tracking-accent);
}
.subheadline {
  font-size: 1.0625rem;
  line-height: var(--lh-snug);
  color: var(--ink-body);
  margin: 0 0 var(--sp-6);
}
.question-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  color: var(--ink-primary);
  letter-spacing: var(--display-tracking);
  margin: 0 0 var(--sp-6);
}

/* ============================================================
   ETAPA (steps meta)
   ============================================================ */
.step-meta {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-3);
}
.step-meta strong {
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   AVISOS (escassez, urgência, lock de vídeo)
   ============================================================ */
.notice {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  line-height: var(--lh-snug);
}
.notice--warn {
  background: rgba(184, 115, 51, 0.08);
  border: 1px solid rgba(184, 115, 51, 0.25);
  color: #6E4517;
}
.notice--lock {
  background: rgba(169, 74, 102, 0.06);
  border: 1px solid var(--accent-soft);
  color: var(--ink-body);
}

/* ============================================================
   TIMER
   ============================================================ */
.timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-top: var(--sp-4);
}
.timer__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FOTO placeholder
   ============================================================ */
.photo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: var(--sp-5) 0 var(--sp-6);
  background:
    linear-gradient(135deg, #E8D8D0 0%, #D9C0C8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}
/* Metade DIREITA = "depois" (mais viva). Split vertical: uma mulher só,
   antes à esquerda / depois à direita — nunca grade 2x2. */
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background: linear-gradient(160deg, #E3C8CE 0%, #C79FA9 100%);
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.7);
}
.photo-placeholder__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31,20,24,0.55);
  background: rgba(255,255,255,0.72);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.photo-placeholder__split {
  position: absolute;
  bottom: var(--sp-3);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 1;
}
.photo-placeholder__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.85);
  color: var(--ink-body);
  font-weight: 600;
}
/* Variante compacta dos pit stops (título + foto + barra + checks na dobra).
   2 classes DE PROPÓSITO: vence a altura fluida da Tela 0 (linha ~781),
   que é seletor de 1 classe sem escopo. */
.photo-placeholder.photo-placeholder--pitstop {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: var(--sp-3) 0 var(--sp-2);
}

/* ============================================================
   FAKE PROGRESS (pit stop)
   ============================================================ */
.pit-bar {
  width: 100%;
  height: 6px;
  background: var(--accent-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: var(--sp-6) 0 var(--sp-6);
}
.pit-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #C56D85 100%);
  animation: pit-fill 4s var(--ease-out) forwards;
}
@keyframes pit-fill {
  0%   { width: 0%; }
  40%  { width: 62%; }
  70%  { width: 82%; }
  100% { width: 100%; }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.check-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1rem;
  color: var(--ink-body);
  opacity: 0;
  animation: check-in 500ms var(--ease-out) forwards;
}
.check-list li:nth-child(1) { animation-delay: 200ms; }
.check-list li:nth-child(2) { animation-delay: 1100ms; }
.check-list li:nth-child(3) { animation-delay: 2000ms; }
.check-list li:nth-child(4) { animation-delay: 2900ms; }

@keyframes check-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.check-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.check-list li:last-child .check-icon {
  background: var(--accent);
}

/* ============================================================
   PERFIL COMPLETO (Tela 10) + PLAYER
   ============================================================ */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--shadow-card);
  text-align: center;
}
/* Assinatura rosé — Tenor Sans não tem italic, migra pra Nunito italic 500
   (mesmo tratamento do variantes/abertura-v2.html) */
.profile-card__eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.profile-card__percent {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--ink-primary);
  margin: var(--sp-3) 0;
  letter-spacing: 0.01em;
}
.profile-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-body);
  margin: 0 0 var(--sp-5);
  line-height: var(--lh-snug);
}
.profile-card .check-list li {
  opacity: 1;
  animation: none;
  justify-content: flex-start;
  text-align: left;
  font-size: 0.9375rem;
}

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 60vh;
  background: #14090D;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(31,20,24,0.20),
    0 0 0 1px rgba(169,74,102,0.20);
  display: grid;
  place-items: center;
  margin: var(--sp-5) 0;
}
.player::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(169,74,102,0.25) 0%, transparent 70%);
}
.player__play {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.player__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 20px solid var(--accent);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.player__label {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  z-index: 1;
}

/* ============================================================
   PROVA SOCIAL placeholder
   ============================================================ */
.social {
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
/* Assinatura serifada italic → Nunito italic 500 (V2 pattern) */
.social__title {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink-primary);
  text-align: center;
  margin: 0 0 var(--sp-5);
}
.social__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.social__avatar {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, #E8D8D0 0%, #C79FA9 100%);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: rgba(31,20,24,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--sp-2);
}

/* ============================================================
   PITSTOP — título e fecho
   Tokens compartilhados pra tela pitstop.html consumir sem hardcode.
   ============================================================ */
.pitstop {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-8);
}
.pitstop__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 5.6vw, 2rem);
  color: var(--ink-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  margin: 0;
}
/* Fecho da pitstop — antes italic serifada, agora Nunito italic 500 rosé */
.pitstop__closing {
  margin-top: var(--sp-6);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--accent);
  line-height: var(--lh-snug);
  opacity: 0;
  animation: check-in 600ms var(--ease-out) 3800ms forwards;
}

/* ============================================================
   VSL — headline específica
   ============================================================ */
.vsl-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  margin: var(--sp-6) 0 var(--sp-3);
  text-align: center;
}
.vsl-headline em {
  font-style: normal;
  color: var(--accent);
  letter-spacing: var(--display-tracking-accent);
}
.lock-line {
  margin-top: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
}
.lock-line svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   ABERTURA — hero e utilitários
   ============================================================ */
.hero { text-align: left; }
.hero .display { margin-bottom: var(--sp-5); }
.cta-wrap { margin-top: var(--sp-6); }
.footer-note {
  margin-top: var(--sp-8);
  text-align: center;
  font-size: var(--fs-tiny);
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ============================================================
   DESKTOP — coluna continua centralizada, só respira mais
   ============================================================ */
@media (min-width: 900px) {
  .shell {
    padding-top: var(--sp-10);
    padding-bottom: var(--sp-10);
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* === CAMADA DE ANIMAÇÃO — Dev Engine (não faz parte do contrato do Designer) === */
/* Só transform/opacity (+ paint em ícones 22px). Delays de cascata vêm inline do app.js. */
#app .shell { animation: scr-in 240ms var(--ease-out); }
#app.is-leaving .shell { opacity: 0; transition: opacity 180ms ease; }
@keyframes scr-in { from { opacity: 0; transform: translateY(6px); } }
/* Sem opacity:0 na base — o fill "both" já aplica o estado from durante o delay.
   Base opacity:0 + keyframe só com "from" animava de 0 pra 0 (opções invisíveis). */
[data-role="radiogroup"] .option { animation: opt-in 300ms var(--ease-out) both; }
@keyframes opt-in { from { opacity: 0; transform: translateY(8px); } }
.option.is-selected { transform: scale(1.015); }
.option.is-selected .option__marker { animation: marker-pop 280ms var(--ease-out); }
@keyframes marker-pop { 0% { transform: scale(.6); } 60% { transform: scale(1.28); } }
.cta--pulse { position: relative; overflow: hidden; }
.cta--pulse::after { content: ""; position: absolute; top: 0; bottom: 0; left: -45%; width: 40%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.32) 50%, transparent); transform: translateX(0) skewX(-18deg); animation: cta-shine 4.5s ease-in-out infinite; pointer-events: none; }
@keyframes cta-shine { 16%, 100% { transform: translateX(480%) skewX(-18deg); } }
.timer__value { display: inline-block; }
.timer__value.is-urgent { animation: timer-pulse 1s ease-in-out infinite; }
@keyframes timer-pulse { 50% { transform: scale(1.1); opacity: .8; } }
.progress__bar { transition: width 650ms cubic-bezier(.17, .84, .44, 1); }
/* Barra inline nas perguntas — entra no lugar do rótulo "Pergunta X de Y" */
.progress--inline { position: static; height: 7px; border-radius: 999px; overflow: hidden; margin: 0 0 var(--sp-4); background: rgba(169, 74, 102, 0.12); z-index: auto; }
.progress--inline .progress__bar { border-radius: 999px; }
/* --- Compactação Tela 0: todo o conteúdo acima da dobra (375×667) --- */
#app[data-screen="opening"] .shell { padding-top: var(--sp-2); padding-bottom: var(--sp-2); }
#app[data-screen="opening"] .mark { margin-top: 4px; margin-bottom: var(--sp-2); }
.hero .display { font-size: clamp(1.35rem, 5.6vw, 1.7rem); letter-spacing: -0.01em; margin-bottom: var(--sp-2); }
/* Altura fluida: cresce com a tela (sobra além dos 667px do SE vai toda pra foto),
   entre 4:3 (mínimo) e ~4:5 retrato (teto) — sempre acima da dobra. */
.photo-placeholder { aspect-ratio: auto; height: clamp(270px, calc(100vh - 396px), 620px); margin: var(--sp-2) 0 var(--sp-2); }
@supports (height: 100dvh) { .photo-placeholder { height: clamp(270px, calc(100dvh - 396px), 620px); } }
.hero .notice--warn { font-size: 0.78rem; line-height: 1.38; padding: 8px 12px; }
.hero .cta-wrap { margin-top: var(--sp-2); }
.hero .footer-note { margin-top: var(--sp-2); margin-bottom: 0; }
/* --- Compactação Tela 10: perfil + aviso + headline + player acima da dobra --- */
#app[data-screen="vsl"] .shell { padding-top: var(--sp-2); padding-bottom: 4px; }
#app[data-screen="vsl"] .mark { margin-top: 2px; margin-bottom: 6px; }
#app[data-screen="vsl"] .profile-card { padding: 10px var(--sp-4); }
#app[data-screen="vsl"] .profile-card__eyebrow { font-size: 0.9rem; margin-bottom: 2px; }
#app[data-screen="vsl"] .percent-wrap { width: 72px; height: 72px; margin: 4px auto; }
#app[data-screen="vsl"] .percent-wrap .profile-card__percent { font-size: 1.35rem; }
#app[data-screen="vsl"] .profile-card__desc { font-size: 0.78rem; line-height: 1.35; margin-bottom: var(--sp-2); }
#app[data-screen="vsl"] .profile-card .check-list { gap: 6px; }
#app[data-screen="vsl"] .profile-card .check-list li { font-size: 0.78rem; }
#app[data-screen="vsl"] .check-icon { width: 18px; height: 18px; font-size: 11px; }
#app[data-screen="vsl"] .notice--lock { font-size: 0.78rem; line-height: 1.38; padding: 8px 12px; margin-top: var(--sp-2); }
#app[data-screen="vsl"] .vsl-headline { font-size: 1.05rem; margin: 6px 0 4px; }
#app[data-screen="vsl"] .player { margin: var(--sp-2) 0 0; }
/* Degrau 2 — telas médias (≥760px de altura): respira mais */
@media (min-height: 760px) {
  #app[data-screen="vsl"] .shell { padding-top: var(--sp-3); padding-bottom: var(--sp-3); }
  #app[data-screen="vsl"] .profile-card { padding: var(--sp-4) var(--sp-4); }
  #app[data-screen="vsl"] .percent-wrap { width: 88px; height: 88px; margin: var(--sp-2) auto; }
  #app[data-screen="vsl"] .percent-wrap .profile-card__percent { font-size: 1.5rem; }
  #app[data-screen="vsl"] .profile-card__desc { font-size: 0.8125rem; margin-bottom: var(--sp-3); }
  #app[data-screen="vsl"] .profile-card .check-list { gap: var(--sp-2); }
  #app[data-screen="vsl"] .profile-card .check-list li { font-size: 0.8125rem; }
  #app[data-screen="vsl"] .notice--lock { margin-top: var(--sp-3); }
  #app[data-screen="vsl"] .vsl-headline { margin: var(--sp-3) 0 var(--sp-2); }
  #app[data-screen="vsl"] .player { margin-top: var(--sp-3); }
}
/* Degrau 3 — telas altas (≥880px): conforto pleno, próximo do north-star */
@media (min-height: 880px) {
  #app[data-screen="vsl"] .shell { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
  #app[data-screen="vsl"] .mark { margin-top: var(--sp-2); margin-bottom: var(--sp-3); }
  #app[data-screen="vsl"] .profile-card { padding: var(--sp-5) var(--sp-5); }
  #app[data-screen="vsl"] .profile-card__eyebrow { font-size: 1rem; margin-bottom: var(--sp-2); }
  #app[data-screen="vsl"] .percent-wrap { width: 110px; height: 110px; margin: var(--sp-3) auto; }
  #app[data-screen="vsl"] .percent-wrap .profile-card__percent { font-size: 1.9rem; }
  #app[data-screen="vsl"] .profile-card__desc { font-size: 0.875rem; line-height: 1.45; margin-bottom: var(--sp-4); }
  #app[data-screen="vsl"] .profile-card .check-list { gap: var(--sp-3); }
  #app[data-screen="vsl"] .profile-card .check-list li { font-size: 0.875rem; }
  #app[data-screen="vsl"] .check-icon { width: 20px; height: 20px; }
  #app[data-screen="vsl"] .notice--lock { font-size: 0.8125rem; padding: 10px 14px; margin-top: var(--sp-4); }
  #app[data-screen="vsl"] .vsl-headline { font-size: 1.2rem; margin: var(--sp-4) 0 var(--sp-3); }
  #app[data-screen="vsl"] .player { margin-top: var(--sp-4); }
}
/* Tags ANTES/DEPOIS sobem pro topo (padrão da referência SEM/COM) */
.photo-placeholder__split { bottom: auto; top: var(--sp-3); }
/* Subheadline como faixa de legenda dentro do antes/depois */
.photo-placeholder__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: rgba(255, 255, 255, 0.93);
  padding: 8px 12px;
  font-size: 0.78rem; line-height: 1.35; text-align: center;
  color: var(--ink-body);
}
.pitstop .check-icon { color: transparent; background: transparent; border: 2px solid var(--accent-soft); border-top-color: var(--accent); animation: pit-spin 550ms linear infinite, pit-morph 300ms var(--ease-out) both; }
.pitstop .check-list li:last-child .check-icon { --check-bg: var(--accent); background: transparent; }
@keyframes pit-spin { to { transform: rotate(360deg); } }
@keyframes pit-morph { to { transform: none; background: var(--check-bg, var(--success)); border-color: transparent; color: #fff; } }
.pitstop__closing { animation: pit-close 900ms ease-out 3150ms both; }
@keyframes pit-close { from { opacity: 0; transform: translateY(6px); } }
.percent-wrap { position: relative; width: 132px; height: 132px; margin: var(--sp-3) auto; display: grid; place-items: center; }
.percent-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.percent-ring circle { fill: none; stroke-width: 6; }
.percent-ring__track { stroke: var(--accent-soft); }
.percent-ring__fill { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 339.3; }
.percent-wrap .profile-card__percent { margin: 0; font-size: 2.25rem; }
.profile-card .check-list li.vsl-hidden, .vsl-hidden[data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out); }
.profile-card .check-list li.vsl-hidden.is-in, .vsl-hidden[data-reveal].is-in { opacity: 1; transform: none; }
.player { aspect-ratio: 16 / 9; max-height: none; }
@media (prefers-reduced-motion: reduce) {
  .cta--pulse::after { display: none; }
  .profile-card .check-list li.vsl-hidden, .vsl-hidden[data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   ETAPA DE OFERTA (tela-11-oferta) — closer pós-VSL
   Clone estrutural fiel da referência validada (elisacandido, quiz-result),
   adaptado a este funil e elevado de cru → sofisticado. Ivory + rosé + uma tinta.
   Namespace .offer-* pra não colidir com o quiz. Reusa os tokens compartilhados.
   10 peças: emblema+filete · headline · subheadline · timer · card de preço ·
   CTA primário · 3 selos · o-que-recebe · CTA secundário · fecho prova social.
   ============================================================ */
.offer-shell {
  text-align: center;
  /* página de vendas aproveita mais largura que as telas de quiz —
     cards preenchem a coluna larga; os parágrafos seguem legíveis
     porque têm limite próprio em ch (centralizados). */
  max-width: 600px;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-10);
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  gap: 0;
}
.offer-shell > section { margin-top: var(--sp-8); }
.offer-shell > section:first-child { margin-top: 0; }

/* ── 1 · emblema (line-art de espelho de mão) ── */
.offer-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-emblem__mark {
  display: inline-flex;
  color: var(--accent);
}

/* ── 0 · conclusão do percurso (editorial: eyebrow + fio 100% + nota serif) ── */
.offer-complete {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.offer-emblem + .offer-complete { margin-top: var(--sp-5); }
.offer-complete__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin: 0;
  font-size: var(--fs-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}
.offer-complete__check { display: inline-flex; color: var(--accent); }
.offer-complete__pct { color: var(--accent); letter-spacing: 0.1em; }
.offer-complete__pct::before {
  content: "\00B7"; /* · */
  margin-right: var(--sp-2);
  color: var(--ink-faint);
}
.offer-complete__track {
  position: relative;
  width: 200px;
  height: 2px;
  margin: var(--sp-4) auto 0;
  border-radius: 999px;
  background: var(--accent-soft);
  overflow: hidden;
}
.offer-complete__fill {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 999px;
  background: var(--accent);
}
/* ── 2/3 · headline + subheadline (centradas) ── */
.offer-hero {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.offer-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 6.6vw, 2.35rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  margin: 0;
}
.offer-title em {
  font-style: normal;
  color: var(--accent);
  letter-spacing: var(--display-tracking-accent);
}
.offer-sub {
  font-size: 1.0625rem;
  line-height: var(--lh-snug);
  color: var(--ink-body);
  max-width: none;
  margin: var(--sp-5) auto 0;
}
.offer-sub strong { color: var(--ink-primary); font-weight: 700; }

/* ── 4 · timer (caixa rosé lavada, MM:SS vivo) ── */
.offer-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: var(--sp-2) var(--sp-3);
  margin-top: var(--sp-8);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface-select);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  color: var(--accent);
}
.offer-timer__label {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
}
.offer-timer__value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.offer-timer__value.is-urgent { color: var(--accent-hover); }

/* ── 5 · card de preço, duas colunas + badge champanhe ── */
.offer-price-card {
  position: relative;
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.offer-price-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px var(--sp-4);
  background: var(--gold-wash);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-pill);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.offer-price-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  text-align: left;
}
.offer-price-card__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 1 auto;
}
.offer-price-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
}
.offer-price-card__name-note {
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.offer-price-card__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex: 0 0 auto;
}
.offer-price-card__anchor {
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.offer-price-card__anchor s { color: var(--ink-faint); }
.offer-price-card__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 10vw, 3.2rem);
  line-height: 1;
  color: var(--ink-primary);
  margin: 2px 0;
}
.offer-price-card__vista {
  font-size: var(--fs-small);
  color: var(--ink-body);
}
.offer-price-card__terms {
  font-size: var(--fs-tiny);
  color: var(--ink-muted);
  margin-top: 4px;
  max-width: 22ch;
}
@media (max-width: 379px) {
  .offer-price-card__row {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    text-align: center;
  }
  .offer-price-card__value { align-items: center; text-align: center; }
  .offer-price-card__terms { max-width: none; }
}

/* ── 6/9 · blocos de CTA (a seta é acrescentada via ::after) ── */
.offer-cta-block { margin-top: var(--sp-6); }
/* CTA da oferta descola mais do marfim: tom rosé mais fundo (mesmo matiz) */
.offer-cta.cta {
  background: linear-gradient(180deg, var(--cta) 0%, var(--cta-deep) 100%);
  box-shadow: 0 10px 24px var(--cta-glow);
}
.offer-cta.cta:hover {
  background: linear-gradient(180deg, var(--cta-deep) 0%, #1D4E38 100%);
}
.offer-cta.cta::after {
  content: "\2192";           /* → */
  font-size: 1.15em;
  line-height: 1;
  margin-left: var(--sp-2);
}

/* ── 7 · linha de selos de confiança ── */
.offer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-5) var(--sp-6);
}
.offer-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  flex: 1 1 90px;
  max-width: 130px;
}
.offer-trust__icon { color: var(--gold); display: inline-flex; }
.offer-trust__label {
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* ── 8 · "O que você vai receber" ── */
.offer-receive {
  text-align: left;
  padding: var(--sp-7) var(--sp-6);
  background: var(--surface-select);
  border: 1px solid var(--accent-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.offer-receive__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  margin: 0 0 var(--sp-5);
  text-align: center;
}
/* filete dourado — assinatura visual sob os títulos de seção */
.offer-proof__title::after,
.offer-faq__title::after,
.offer-guarantee__title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: var(--sp-3) auto 0;
  background: var(--gold);
  border-radius: var(--r-pill);
}
.offer-receive__list { gap: var(--sp-4); }
/* Lista com 5 itens estáticos aqui — anula o stagger do .check-list
   compartilhado (que só cobre 4 e deixaria o 5º invisível). */
.offer-receive__list li {
  align-items: flex-start;
  opacity: 1;
  animation: none;
  font-size: var(--fs-small);
  line-height: var(--lh-snug);
  color: var(--ink-body);
}
.offer-receive__list .check-icon,
.offer-receive__list li:last-child .check-icon { margin-top: 1px; background: var(--gold); }
.offer-receive__text { display: block; }
.offer-receive__text strong { color: var(--ink-primary); font-weight: 700; }

/* ── 8.5 · contraste antes/depois (dois cards sóbrios) ── */
.offer-compare {
  display: grid;
  gap: var(--sp-4);
}
.offer-compare__card {
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid transparent;
  text-align: left;
}
.offer-compare__card--before {
  background: var(--surface-select);
  border-color: var(--accent-soft);
}
.offer-compare__card--after {
  background: var(--gold-wash);
  border-color: var(--gold-soft);
}
.offer-compare__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: var(--display-tracking);
  text-align: center;
  margin: 0 0 var(--sp-4);
}
.offer-compare__card--before .offer-compare__title { color: var(--accent); }
.offer-compare__card--after  .offer-compare__title { color: var(--gold); }
.offer-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.offer-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-small);
  line-height: var(--lh-snug);
  color: var(--ink-body);
}
.offer-compare__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
}
.offer-compare__card--before .offer-compare__mark {
  color: var(--accent);
  background: rgba(169, 74, 102, 0.10);
}
.offer-compare__card--after .offer-compare__mark {
  color: #fff;
  background: var(--gold);
}
.offer-compare__ic { display: block; }

/* ── 10 · fecho prova social ── */
.offer-proof__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 5.6vw, 1.9rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  margin: 0;
}
.offer-proof__subtitle {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: var(--lh-snug);
  max-width: 42ch;
  margin: var(--sp-3) auto 0;
}
/* 4 vídeos verticais (9:16) — grid 2 col, botão de play desenhado (port .vids/.vid) */
.offer-vids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-6) 0 0;
}
.offer-vid {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: linear-gradient(150deg, #E8D8D0 0%, #CBA6AF 100%);
}
.offer-vid:nth-child(2n) { background: linear-gradient(150deg, #EAD9DC 0%, #C79FA9 100%); }
.offer-vid:nth-child(4n+1) { background: linear-gradient(150deg, #E3C8CE 0%, #BE96A0 100%); }
.offer-vid__play {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.offer-vid__play::before {
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 3px;
}
.offer-vid__name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-6) var(--sp-3) var(--sp-3);
  background: linear-gradient(to top, rgba(23, 9, 13, 0.72), transparent);
  color: #fff;
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Vídeo antes/depois sozinho no bloco: ocupa a linha inteira do grid, mas com
   largura travada — 9:16 em largura cheia vira uma parede de vídeo no desktop. */
.offer-vid--solo {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

/* Depoimentos em texto (aspa + nome + estrelas). Herdam a mesma gramática de
   card do antes/depois pra não abrir um dialeto visual novo na mesma página. */
.offer-depos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-5) 0 0;
}
.offer-depo {
  margin: 0;
  border-radius: var(--r-md);
  padding: var(--sp-5);
  background: var(--surface-select);
  border: 1px solid var(--accent-soft);
  text-align: left;
}
.offer-depo__stars {
  display: block;
  color: var(--gold);
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
}
.offer-depo__quote {
  margin: var(--sp-3) 0 0;
  font-size: var(--fs-small);
  line-height: var(--lh-snug);
  color: var(--ink-body);
}
.offer-depo__name {
  margin-top: var(--sp-3);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}
/* Moldura tracejada = depoimento AINDA É MOLDE, não é aluna real. Some sozinha
   quando o `molde` sai do config. Serve pra ninguém revisar a página e achar
   que a prova social já está pronta só porque o texto está lá. */
.offer-depo--molde {
  border-style: dashed;
  border-color: var(--accent);
}
.offer-depo--molde .offer-depo__name::after {
  content: " · MOLDE, SUBSTITUIR POR ALUNA REAL";
  color: var(--accent);
}

/* 4 prints de WhatsApp — grid 2 col, slot que evoca screenshot de conversa */
.offer-prints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-5) 0 0;
}
.offer-print {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: #ECE3DA;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.offer-print__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px;
  background: rgba(169, 74, 102, 0.14);
  border-bottom: 1px solid var(--border);
}
.offer-print__bubble {
  border-radius: 12px;
  height: 22px;
  opacity: 0.55;
}
.offer-print__bubble--in {
  align-self: flex-start;
  width: 62%;
  margin-top: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-top-left-radius: 3px;
}
.offer-print__bubble--out {
  align-self: flex-end;
  width: 54%;
  background: rgba(169, 74, 102, 0.18);
  border-top-right-radius: 3px;
}
.offer-print__name {
  margin-top: auto;
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
}
.offer-print-solo {
  aspect-ratio: auto;
  width: 100%;
  max-width: 340px;
  min-height: 420px;
  margin: var(--sp-7) auto;
  padding: var(--sp-5);
}
.offer-print-solo .offer-print__bubble {
  height: 30px;
}
.offer-print-solo .offer-print__bubble--in { width: 68%; margin-top: 40px; }
.offer-print-solo .offer-print__bubble--out { width: 60%; }
.offer-proof__todo {
  border: 1px dashed var(--accent);
  background: rgba(169, 74, 102, 0.05);
  color: var(--accent);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-small);
  font-weight: 600;
  text-align: left;
  line-height: var(--lh-snug);
  margin: var(--sp-5) 0 0;
}

/* ── 11 · FAQ rápido (accordion compacto, port .faq) ── */
.offer-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  box-shadow: var(--shadow-card);
}
.offer-faq__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 5.4vw, 1.8rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  margin: 0 0 var(--sp-4);
}
.offer-faq__list { text-align: left; }
.offer-faq__list details {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.offer-faq__list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-primary);
  font-size: 1.03rem;
  line-height: var(--lh-snug);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  align-items: center;
}
.offer-faq__list summary::-webkit-details-marker { display: none; }
.offer-faq__list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 auto;
}
.offer-faq__list details[open] summary::after { content: "\2013"; } /* – */
.offer-faq__list p {
  margin: var(--sp-3) 0 0;
  color: var(--ink-body);
  font-size: var(--fs-small);
  line-height: var(--lh-snug);
}

/* ── 12 · garantia (headline centrado + texto + selo grande, port .guarantee) ── */
.offer-guarantee-block { text-align: center; }
.offer-guarantee__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  max-width: 22ch;
  margin: 0 auto var(--sp-4);
}
.offer-guarantee__title em {
  font-style: normal;
  color: var(--accent);
  letter-spacing: var(--display-tracking-accent);
}
.offer-guarantee__text {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1.0625rem;
  line-height: var(--lh-snug);
  color: var(--ink-body);
}
.offer-guarantee__conviction {
  margin: var(--sp-4) auto 0;
  max-width: 44ch;
  font-size: var(--fs-small);
  line-height: var(--lh-snug);
  color: var(--ink-body);
  font-style: italic;
}

/* ── 13 · fecho final (painel calmo · CTA nº3 · selos) ── */
.offer-final {
  text-align: center;
  padding: var(--sp-4) 0 0;
}
.offer-final__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--display-tracking);
  color: var(--ink-primary);
  max-width: 26ch;
  margin: 0 auto;
}
.offer-final__title em {
  font-style: normal;
  color: var(--accent);
  letter-spacing: var(--display-tracking-accent);
}
.offer-final__body {
  font-size: 1.0625rem;
  line-height: var(--lh-snug);
  color: var(--ink-body);
  max-width: 40ch;
  margin: var(--sp-4) auto 0;
}
.offer-final__cta { margin-top: var(--sp-6); }
/* placeholder do selo de blindagem (PNG a inserir) — some quando trocado pela img */
.offer-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  margin: var(--sp-6) auto 0;
  border: 1px dashed var(--gold-soft);
  border-radius: 50%;
  background: var(--gold-wash);
}
.offer-shield__label {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--gold);
  padding: 0 var(--sp-4);
}

/* ── pulso contínuo e discreto em TODO CTA da oferta (aditivo ao shine) ── */
@keyframes offer-cta-pulse {
  0%, 100% {
    box-shadow: 0 8px 20px var(--cta-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 20px var(--cta-glow), 0 0 0 6px rgba(47, 122, 87, 0.12), 0 12px 30px var(--cta-glow);
    transform: scale(1.018);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .offer-cta.cta { animation: offer-cta-pulse 2s ease-in-out infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .offer-cta.cta { animation: none; }
}
