/* ============================================================
   LP PAULA ZAGOTTA — FRAMEWORK DOS 5 C'S
   Direção: "Dossiê Editorial" (revista premium) · dark + dourado
   Estratégia: mobile-first (base mobile, min-width pra escalar).
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS — variáveis de tema (fonte única da verdade)
   ------------------------------------------------------------ */
:root {
  /* Cores base (paleta original preservada) */
  --paper:      #0a0a0c;   /* fundo quase preto, levemente quente */
  --paper-2:    #101012;   /* superfície de seções alternadas */
  --paper-3:    #16161a;   /* superfície de cartões */

  /* Tinta / texto (bone quente em vez de branco frio: menos cara de IA) */
  --ink:        #f4f1ea;
  --ink-soft:   #cfc9be;
  --ink-mute:   #8a857c;

  /* Fios e bordas (baseados na tinta pra manter harmonia) */
  --line:        rgba(244,241,234,0.10);
  --line-strong: rgba(244,241,234,0.20);

  /* Accent dourado (original) */
  --gold:        #e8a44a;
  --gold-light:  #f0c878;
  --gold-deep:   #c8863a;
  --gold-wash:   rgba(232,164,74,0.10);

  /* Par de preço: âncora vs final (tons próprios pro fundo escuro) */
  --green:      #4ade80;   /* preço final / com desconto */
  --red:        #f4736b;   /* preço riscado / âncora */

  /* Tipografia
     Display: Fraunces (serifada editorial com caráter, eixo óptico).
     Corpo:   Instrument Sans (grotesca moderna, limpa e legível). */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Instrument Sans', system-ui, -apple-system, sans-serif;

  /* Raios (editorial = cantos quase retos) */
  --r:    4px;
  --r-lg: 8px;

  /* Transições */
  --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Largura de leitura */
  --wide:   1120px;
  --narrow: 720px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;   /* aproveita o eixo óptico da Fraunces */
}

/* Textura sutil: gradientes quentes muito leves no topo (atmosfera, não
   "glow"). Camada própria, position: fixed, pra não engasgar o scroll no
   mobile (evitamos background-attachment: fixed por performance). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 45% at 15% -5%, rgba(232,164,74,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 90% 8%, rgba(232,164,74,0.035) 0%, transparent 55%);
}

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

/* ------------------------------------------------------------
   3. LAYOUT — containers e utilitários de seção
   ------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 20px;
}
.wrap--narrow { max-width: var(--narrow); }

.section {
  padding: 28px 0;
  position: relative;
}

/* Fio horizontal editorial (fina linha dourada esmaecida) */
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg,
    transparent, var(--line-strong) 20%,
    rgba(232,164,74,0.35) 50%,
    var(--line-strong) 80%, transparent);
}

/* ------------------------------------------------------------
   4. KICKERS + TÍTULOS (linguagem de revista)
   ------------------------------------------------------------ */
/* Kicker: rótulo curto, caixa alta, com um fio antes (índice de matéria) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Título de seção: serifada editorial, alto contraste */
.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  /* text-wrap: balance evita palavra órfã sozinha na última linha */
  text-wrap: balance;
}
.title em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 20px;
}

/* ------------------------------------------------------------
   5. TICKER (barra superior)
   ------------------------------------------------------------ */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ticker b { color: var(--gold); font-weight: 600; }
.ticker .dot { color: var(--gold); opacity: 0.6; }

/* ------------------------------------------------------------
   6. BOTÕES / CTA
   Editorial: retângulo dourado, texto escuro, caixa alta discreta.
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: clamp(11px, 3.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a 60%, #15803d);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(22,163,74,0.25);
  transition: transform var(--t), box-shadow var(--t);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(22,163,74,0.40);
}
.btn:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 3px;
}
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--block { width: 100%; }

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 28px 0 12px;
  text-align: left;
  overflow: hidden;      /* recorta o numeral e o glow */
  isolation: isolate;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}
.hero__content { position: relative; z-index: 2; }
.hero__visual {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 25%, rgba(0,0,0,0.3) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 25%, rgba(0,0,0,0.3) 100%);
}
.hero__visual .hero__portrait {
  width: 100%;
  height: 100%;
}
.hero__visual .hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

/* Brilho âmbar que deriva devagar (só transform/opacity = GPU, sem repaint) */
.hero__glow {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(680px, 125vw);
  aspect-ratio: 1;
  transform: translate(-50%, 0);
  background: radial-gradient(circle at 50% 50%,
    rgba(232,164,74,0.16), rgba(232,164,74,0.05) 45%, transparent 68%);
  filter: blur(18px);
  z-index: -2;
  pointer-events: none;
  animation: hero-drift 12s ease-in-out infinite alternate;
}

/* Numeral "5" gigante ao fundo: a "edição" da masterclass (device editorial) */
.hero__numeral {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(80vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232,164,74,0.10);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero__eyebrow .tick {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 8.5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin: 0;
  text-wrap: balance;
}

/* Palavra-chave: itálico dourado + traço desenhado à mão (SVG anima na carga).
   Sem nowrap: em telas muito estreitas pode quebrar, mas nunca estoura a largura. */
.mark {
  position: relative;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.mark__line {
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 100%;
  height: 0.34em;
  overflow: visible;
}
.mark__line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-line 0.9s cubic-bezier(0.6, 0, 0.2, 1) 0.75s forwards;
}

.hero__sub {
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 24px 0 28px;
}

/* Índice dos 5 C's (teaser do método) */
.hero__cs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: 540px;
  margin: 0 0 32px;
}
.hero__cs li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(244,241,234,0.02);
}
.hero__cs b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Par de preço no hero: âncora VERMELHA riscada + final VERDE (regra) */
.price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.price-old {
  font-size: 15px;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-now {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* Metadados do hero (garantias) */
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-top: 30px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.meta-item:last-child { border-right: 0; }
.meta-item svg { color: var(--green); flex-shrink: 0; }

/* ------------------------------------------------------------
   8. PROBLEMA (dor)
   ------------------------------------------------------------ */
.problema { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;                     /* fios finos entre itens (grade editorial) */
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pain-item {
  background: var(--paper-2);
  padding: 28px 26px;
  transition: background var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-item:hover { background: var(--paper-3); }
.pain-ico {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--paper-3);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-ico svg { width: 22px; height: 22px; }
.pain-item h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.pain-item p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }

/* ------------------------------------------------------------
   9. VIRADA (big idea)
   ------------------------------------------------------------ */
.virada { text-align: center; }
.virada__block {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0 4px;
}
.virada__block p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
}
.virada__block p:last-child { margin-bottom: 0; }
.virada__block em { font-style: italic; color: var(--gold); }

/* ------------------------------------------------------------
   10. MÉTODO — OS 5 C'S (seção assinatura)
   Lista editorial numerada: numeral gigante contornado + texto.
   ------------------------------------------------------------ */
.metodo { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.cs-list { margin-top: 44px; }

.c-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.c-row:last-child { border-bottom: 1px solid var(--line); }

/* Numeral gigante: contorno dourado que preenche no hover */
.c-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 14vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  transition: color var(--t), -webkit-text-stroke-color var(--t);
}
.c-row:hover .c-num { color: var(--gold-wash); }

.c-body { }
.c-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.c-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.15;
}
.c-body p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 60ch; }

/* ------------------------------------------------------------
   11. AUTORIDADE (quem ensina)
   grid-template-areas garante ordem no mobile: título → foto → texto.
   ------------------------------------------------------------ */
.autor__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "photo"
    "body";
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}
.autor__head  { grid-area: head; }
.autor__photo { grid-area: photo; }
.autor__body  { grid-area: body; }

.autor__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.autor__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  line-height: 1.5;
}

/* Foto: moldura editorial (placeholder com iniciais + legenda) */
.autor__photo figure {
  display: inline-block;
  max-width: 220px;
}
.photo-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(232,164,74,0.10), transparent 70%),
    var(--paper-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.photo-frame .initials {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.photo-frame::after {   /* cantoneira dourada (detalhe de moldura) */
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232,164,74,0.18);
  border-radius: 2px;
  pointer-events: none;
}
.photo-cap {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 10px;
  text-transform: uppercase;
}
.autor__body p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }

/* ------------------------------------------------------------
   12. ENTREGÁVEIS (o que está dentro) — índice/sumário editorial
   ------------------------------------------------------------ */
.entrega-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.entrega-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.entrega-item:hover { background: rgba(244,241,234,0.02); }
.entrega-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--paper-3);
  color: var(--gold);
  flex-shrink: 0;
}
.entrega-icon svg { width: 24px; height: 24px; }
.entrega-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.entrega-item p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 12px; }
.entrega-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid rgba(232,164,74,0.25);
  border-radius: 100px;
}

/* ------------------------------------------------------------
   13. DADOS (prova / estatísticas de mercado)
   ------------------------------------------------------------ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 34px 26px;
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.stat__label { font-size: 14px; line-height: 1.55; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.stat__src { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-mute); }

.depo {
  margin-top: 20px;
  padding: 34px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  color: var(--ink-mute);
  font-size: 14px;
}

/* ------------------------------------------------------------
   14. PARA QUEM (checklist)
   ------------------------------------------------------------ */
.paraquem { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 38px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: border-color var(--t), background var(--t);
}
.check-list li:hover { border-color: rgba(74,222,128,0.28); background: rgba(74,222,128,0.03); }
.check-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.10);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ------------------------------------------------------------
   15. OFERTA — "ticket" editorial (moldura dourada estática)
   ------------------------------------------------------------ */
.oferta { position: relative; }
.oferta__box {
  max-width: 560px;
  margin: 44px auto 0;
  background: var(--paper-2);
  border: 1px solid rgba(232,164,74,0.30);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
/* Fio dourado no topo do box (detalhe de recorte) */
.oferta__box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.oferta__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Tabela de valor: itens = valor agregado (dourado, sem riscar);
   só o TOTAL é âncora riscada vermelha vs preço final verde (regra). */
.value-table { width: 100%; border-collapse: collapse; margin-bottom: 26px; text-align: left; }
.value-table td { padding: 11px 0; font-size: 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.value-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; white-space: nowrap; }
.value-table .total td {
  border-bottom: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
  font-weight: 700;
  color: var(--ink);
}
.value-table .total td:last-child {
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 700;
}

.offer-price { margin-bottom: 26px; }
.offer-price .cap {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.offer-price .val {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 3.8rem);
  font-weight: 800;
  color: var(--green);       /* preço final = verde (regra) */
  line-height: 1;
  display: block;
}
.offer-price .note { display: block; font-size: 13px; color: var(--ink-mute); margin-top: 10px; }

/* Selo de garantia */
.garantia {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 18px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.22);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  text-align: left;
  line-height: 1.4;
}
.garantia svg { flex-shrink: 0; }

/* ------------------------------------------------------------
   16. FAQ (acordeão)
   ------------------------------------------------------------ */
.faq { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-list { margin-top: 44px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold-light); }
.faq-q:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }
.faq-ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform var(--t);
}
.faq-ico::before, .faq-ico::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
}
.faq-ico::before { width: 13px; height: 1.5px; }
.faq-ico::after  { width: 1.5px; height: 13px; transition: transform var(--t); }
.faq-item.open .faq-ico::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a__inner {
  padding: 0 4px 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ------------------------------------------------------------
   17. FECHO (CTA final)
   ------------------------------------------------------------ */
.fecho { text-align: center; padding: 36px 0; }
.fecho h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto 20px;
  text-wrap: balance;
}
.fecho h2 em { font-style: italic; font-weight: 500; color: var(--gold); }
.fecho .lead { margin: 0 auto 34px; text-align: center; }

.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 34px;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-mute); }
.trust-item svg { color: var(--ink-soft); flex-shrink: 0; }

/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.9;
  background: var(--paper);
}
footer a { color: var(--gold); text-decoration: none; transition: color var(--t); }
footer a:hover { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   19. ANIMAÇÕES — 1 carga orquestrada + reveal no scroll
   Só opacity/transform. Nada de loop infinito.
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Deriva lenta do brilho do hero (transform + opacity, sem custo de layout) */
@keyframes hero-drift {
  from { transform: translate(-50%, 0)   scale(1);    opacity: 0.85; }
  to   { transform: translate(-44%, 3%)  scale(1.07); opacity: 1; }
}

/* Traço dourado que "se desenha" sob a palavra-chave */
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* Reveal escalonado no hero (carga inicial) */
.hero [data-load] { opacity: 0; animation: fade-up 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }
.hero [data-load="1"] { animation-delay: 0.05s; }
.hero [data-load="2"] { animation-delay: 0.15s; }
.hero [data-load="3"] { animation-delay: 0.25s; }
.hero [data-load="4"] { animation-delay: 0.35s; }
.hero [data-load="5"] { animation-delay: 0.45s; }
.hero [data-load="6"] { animation-delay: 0.55s; }

/* Reveal no scroll: só escondemos se o JS confirmar que está ativo (classe
   .js no <html>). Assim, se o JS falhar, o conteúdo aparece normalmente
   (progressive enhancement) e a página de venda nunca fica em branco. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.reveal-in { opacity: 1; transform: none; }

/* Acessibilidade: quem pediu menos movimento, recebe tudo estático */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero [data-load], .js .reveal { opacity: 1 !important; transform: none !important; }
  /* Sem animação, o traço precisa já aparecer desenhado */
  .mark__line path { stroke-dashoffset: 0 !important; }
}

/* ============================================================
   20. RESPONSIVO — escalonando pra cima (mobile-first)
   ============================================================ */

/* Tablet ≥ 640px */
@media (min-width: 640px) {
  .wrap { padding: 0 32px; }
  .section { padding: 24px 0; }

  .pain-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
  .check-list { grid-template-columns: 1fr 1fr; }

  /* 5 C's: numeral à esquerda, texto à direita */
  .c-row { grid-template-columns: 140px 1fr; align-items: baseline; }

  /* Autoridade: foto à esquerda, título+texto à direita (mantém a ordem
     head→body no fluxo, foto na coluna lateral) */
  .autor__grid {
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "photo head"
      "photo body";
    gap: 20px 40px;
    align-items: start;
  }
  .autor__photo { position: sticky; top: 80px; }
}

/* Desktop ≥ 960px */
@media (min-width: 960px) {
  .section { padding: 32px 0; }
  .hero { padding: 40px 0 16px; }
  .hero__inner {
    grid-template-columns: 1fr 42%;
    text-align: left;
    gap: 48px;
    align-items: center;
  }
  .hero h1 { margin: 0; }
  .hero__sub { margin-left: 0; margin-right: 0; }
  .hero__actions { align-items: flex-start; }
  .hero__visual {
    position: relative;
    right: auto;
    width: auto;
    height: auto;
    mask-image: none;
    -webkit-mask-image: none;
    pointer-events: auto;
  }
  .hero__portrait {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.12);
  }
  .hero__portrait img {
    object-fit: cover;
    object-position: 50% 20%;
    aspect-ratio: 3/4;
  }
  .c-row { grid-template-columns: 180px 1fr; gap: 4px 48px; }
}

/* ------------------------------------------------------------
   VIRADA — Jornada Steps + Callout
   ------------------------------------------------------------ */







.virada-callout {
  max-width: 620px;
  margin: 40px auto 0;
  padding: 28px 28px;
  background: var(--paper-2);
  border: 1px solid rgba(232,164,74,0.20);
  border-radius: var(--r-lg);
  position: relative;
  text-align: left;
}
.virada-callout::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.virada-callout__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.virada-callout__header svg {
  color: var(--gold);
  flex-shrink: 0;
}
.virada-callout p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.virada-callout em {
  font-style: italic;
  color: var(--gold);
}

@media (min-width: 640px) {
  
  
}

/* ------------------------------------------------------------
   MÉTODO — Cards grid
   ------------------------------------------------------------ */
.metodo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
.metodo-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.metodo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t);
}
.metodo-card:hover {
  border-color: rgba(232,164,74,0.30);
  transform: translateY(-2px);
}
.metodo-card:hover::before {
  opacity: 1;
}
.metodo-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid rgba(232,164,74,0.30);
  border-radius: 100px;
  margin-bottom: 14px;
}
.metodo-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.metodo-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .metodo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .metodo-card--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .metodo-grid {
    gap: 16px;
  }
  .metodo-card {
    padding: 28px 26px;
  }
}

/* ------------------------------------------------------------
   ENTREGÁVEIS — Kit Cards
   ------------------------------------------------------------ */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
.kit-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: border-color var(--t), transform var(--t);
}
.kit-card:hover {
  border-color: rgba(232,164,74,0.30);
  transform: translateY(-2px);
}
.kit-card__icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: transparent;
  border: none;
  overflow: hidden;
}
.kit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.kit-card__icon svg {
  width: 24px;
  height: 24px;
}
.kit-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(232,164,74,0.25);
  border-radius: 100px;
  margin-bottom: 12px;
}
.kit-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.kit-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .kit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (min-width: 960px) {
  .kit-grid {
    gap: 16px;
  }
  .kit-card {
    padding: 32px 28px;
  }
}

/* ------------------------------------------------------------
   PARA QUEM — Two-column Yes/No grid
   ------------------------------------------------------------ */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.pq-col {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pq-col--yes {
  background: var(--paper-3);
  border: 1px solid rgba(74,222,128,0.18);
}
.pq-col--no {
  background: var(--paper-3);
  border: 1px solid rgba(244,115,107,0.18);
}
.pq-col__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
}
.pq-col__header--yes {
  background: rgba(74,222,128,0.06);
  border-bottom: 1px solid rgba(74,222,128,0.12);
}
.pq-col__header--no {
  background: rgba(244,115,107,0.06);
  border-bottom: 1px solid rgba(244,115,107,0.12);
}
.pq-col__header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.pq-col__badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pq-col__badge--yes {
  background: rgba(74,222,128,0.15);
  color: var(--green);
}
.pq-col__badge--no {
  background: rgba(244,115,107,0.15);
  color: var(--red);
}
.pq-col ul {
  list-style: none;
  padding: 8px 22px 18px;
}
.pq-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pq-col li:last-child {
  border-bottom: 0;
}
.pq-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pq-ico--yes {
  background: rgba(74,222,128,0.12);
  border: 1.5px solid rgba(74,222,128,0.35);
  color: var(--green);
}
.pq-ico--no {
  background: rgba(244,115,107,0.10);
  border: 1.5px solid rgba(244,115,107,0.30);
  color: var(--red);
}

@media (min-width: 640px) {
  .pq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ------------------------------------------------------------
   MÉTODO — Duo boxes (Estratégia + Execução)
   ------------------------------------------------------------ */
.metodo-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.metodo-box {
  background: var(--paper-3);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.metodo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.metodo-box--strategy {
  border: 1px solid rgba(232,164,74,0.20);
}
.metodo-box--strategy::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.metodo-box--exec {
  border: 1px solid rgba(99,102,241,0.20);
}
.metodo-box--exec::before {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}
.metodo-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.2;
}
.metodo-box--strategy h3 {
  color: var(--gold);
}
.metodo-box--exec h3 {
  color: #818cf8;
}
.metodo-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.metodo-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.metodo-box li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
}
.metodo-box--strategy li::before {
  background: var(--gold);
}
.metodo-box--exec li::before {
  background: #818cf8;
}

@media (min-width: 640px) {
  .metodo-duo {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Reduz gap hero → problema ── */
.hero + .rule { margin: 0; }
.rule + .problema { padding-top: 20px; }
@media (min-width: 960px) {
  .rule + .problema { padding-top: 28px; }
}

/* ── Badge garantia no hero ── */
.hero__garantia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent, #e8a44a);
  border: 1.5px solid var(--accent, #e8a44a);
  border-radius: 999px;
  opacity: .9;
}
.hero__garantia svg {
  flex-shrink: 0;
  stroke: var(--accent, #e8a44a);
}

/* ── Rota visual — jornada do cliente ── */
.rota {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin: 44px auto 0;
  padding: 0 20px;
}

.rota-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.rota-node {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(232,164,74,0.10), 0 4px 20px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
}

.rota-step:hover .rota-node {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(232,164,74,0.15), 0 8px 32px rgba(0,0,0,0.12);
}

.rota-node--final {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(232,164,74,0.18), 0 8px 32px rgba(232,164,74,0.25);
}

.rota-num {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.rota-node--final .rota-num {
  color: var(--paper);
  font-size: 20px;
}

.rota-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 48px;
  color: var(--gold);
  opacity: 0.5;
  position: relative;
}

.rota-connector svg:first-child {
  width: 24px;
  height: 100%;
}

.rota-arrow {
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: -2px;
  animation: pulseDown 2s ease-in-out infinite;
}

@keyframes pulseDown {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

.rota-txt {
  margin: 10px 0 0;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 320px;
  transition: border-color .3s, background .3s;
}

.rota-step:hover .rota-txt {
  border-color: rgba(232,164,74,0.35);
  background: var(--paper-3);
}

.rota-step--final .rota-txt {
  font-weight: 700;
  color: var(--gold);
  border-color: rgba(232,164,74,0.3);
  background: linear-gradient(135deg, var(--paper-2), rgba(232,164,74,0.06));
}

/* Desktop: rota horizontal */
@media (min-width: 860px) {
  .rota {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1100px;
    gap: 0;
    padding: 0;
  }

  .rota-step {
    flex: 1;
    position: relative;
  }

  .rota-connector {
    display: none;
  }

  /* Linha horizontal entre nodes */
  .rota-step:not(.rota-step--final)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 4px, transparent 4px, transparent 8px);
    opacity: 0.4;
    z-index: 1;
  }

  /* Seta horizontal */
  .rota-step:not(.rota-step--final)::before {
    content: '';
    position: absolute;
    top: 22px;
    right: calc(-50% + 24px);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--gold);
    opacity: 0.6;
    z-index: 2;
    animation: pulseRight 2s ease-in-out infinite;
  }

  @keyframes pulseRight {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 0.8; transform: translateX(3px); }
  }

  .rota-txt {
    margin: 16px 6px 0;
    max-width: none;
    font-size: 14px;
  }
}

/* Mobile refinements */
@media (max-width: 420px) {
  .rota-node {
    width: 46px;
    height: 46px;
  }
  .rota-node--final {
    width: 54px;
    height: 54px;
  }
  .rota-num {
    font-size: 16px;
  }
  .rota-connector {
    height: 38px;
  }
  .rota-txt {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ── Método v2 — cards modernos com bridge ── */
.metodo-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 960px;
  margin: 48px auto 0;
  position: relative;
}

.mv2-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.mv2-card:hover {
  transform: translateY(-4px);
}

.mv2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mv2-card--gold { border-color: rgba(232,164,74,0.18); }
.mv2-card--gold::before { background: linear-gradient(90deg, var(--gold), rgba(232,164,74,0.3)); }
.mv2-card--gold:hover { border-color: rgba(232,164,74,0.4); }

.mv2-card--purple { border-color: rgba(99,102,241,0.18); }
.mv2-card--purple::before { background: linear-gradient(90deg, #6366f1, rgba(99,102,241,0.3)); }
.mv2-card--purple:hover { border-color: rgba(99,102,241,0.4); }

/* Card glow sutil */
.mv2-card--gold::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232,164,74,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mv2-card--purple::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mv2-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mv2-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv2-card__icon svg {
  width: 22px;
  height: 22px;
}

.mv2-card--gold .mv2-card__icon {
  background: rgba(232,164,74,0.12);
  color: var(--gold);
}

.mv2-card--purple .mv2-card__icon {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
}

.mv2-card__badge {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv2-card--gold .mv2-card__badge { color: var(--gold); }
.mv2-card--purple .mv2-card__badge { color: #818cf8; }

.mv2-card__title {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}

.mv2-card__desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}

.mv2-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.mv2-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mv2-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.mv2-check svg {
  width: 13px;
  height: 13px;
}

.mv2-card--gold .mv2-check {
  background: rgba(232,164,74,0.12);
  color: var(--gold);
}

.mv2-card--purple .mv2-check {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
}

/* Bridge conector */
.mv2-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  position: relative;
  z-index: 2;
}

.mv2-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line-strong) 0, var(--line-strong) 4px, transparent 4px, transparent 8px);
  transform: translateX(-50%);
}

.mv2-bridge__plus {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid var(--line-strong);
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Resultado strip */
.mv2-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 580px;
  margin: 32px auto 0;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(232,164,74,0.06), rgba(99,102,241,0.06));
  border: 1px solid rgba(232,164,74,0.15);
  border-radius: 999px;
  text-align: center;
}

.mv2-result__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mv2-result__icon svg {
  width: 20px;
  height: 20px;
}

.mv2-result p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.mv2-result strong {
  color: var(--ink);
}

/* Desktop: lado a lado */
@media (min-width: 760px) {
  .metodo-v2 {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
  }

  .mv2-bridge {
    height: auto;
    width: 56px;
    flex-direction: column;
  }

  .mv2-bridge::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, var(--line-strong) 0, var(--line-strong) 4px, transparent 4px, transparent 8px);
  }

  .mv2-card {
    padding: 36px 32px;
  }
}

@media (max-width: 420px) {
  .mv2-card {
    padding: 26px 22px;
  }
  .mv2-card__title {
    font-size: 1.35rem;
  }
  .mv2-result {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 20px;
  }
}

/* ── Oferta v2 — Stack de valor com impacto ── */

/* Stack items */
.stack {
  text-align: left;
  margin-bottom: 28px;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}

.stack-item:first-child {
  border-top: 1px solid var(--line);
}

.stack-item__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.stack-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(232,164,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.stack-item__icon svg {
  width: 18px;
  height: 18px;
}

.stack-item__name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.stack-item__price {
  flex-shrink: 0;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Total riscado */
.stack-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  margin-top: 4px;
}

.stack-total__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.stack-total__val {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--red, #ef4444);
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: var(--red, #ef4444);
  letter-spacing: -0.03em;
}

/* Hero do preço */
.offer-hero {
  position: relative;
  margin-bottom: 28px;
  padding: 32px 24px 28px;
  background: linear-gradient(145deg, rgba(74,222,128,0.06), rgba(74,222,128,0.02));
  border: 2px solid rgba(74,222,128,0.25);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}

.offer-hero::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green, #4ade80), transparent);
  border-radius: 0 0 4px 4px;
}

.offer-hero__cap {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}

.offer-hero__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.offer-hero__old {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: var(--red, #ef4444);
  opacity: 0.6;
  letter-spacing: -0.04em;
}

.offer-hero__new {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 800;
  color: var(--green, #4ade80);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 0 40px rgba(74,222,128,0.2);
}

.offer-hero__savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(74,222,128,0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green, #4ade80);
  margin-bottom: 12px;
}

.offer-hero__note {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* Animação sutil no preço */
@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 40px rgba(74,222,128,0.15); }
  50% { text-shadow: 0 0 60px rgba(74,222,128,0.3); }
}

.offer-hero__new {
  animation: priceGlow 3s ease-in-out infinite;
}

/* Mobile polish */
@media (max-width: 480px) {
  .stack-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .stack-item__icon svg {
    width: 16px;
    height: 16px;
  }
  .stack-item__name {
    font-size: 13.5px;
  }
  .offer-hero {
    padding: 28px 18px 24px;
  }
  .offer-hero__row {
    gap: 14px;
  }
  .offer-hero__old {
    font-size: 1.3rem;
  }
}

/* ── Oferta compacta ── */
.stack-compact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.stack-compact li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.stack-compact li:first-child {
  border-top: 1px solid var(--line);
}

.sc-price {
  flex-shrink: 0;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* De → Por */
.offer-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 22px 16px;
  background: var(--paper-3);
  border: 1.5px solid rgba(74,222,128,0.25);
  border-radius: 20px;
}

.offer-compact__de,
.offer-compact__por {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.offer-compact__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.offer-compact__old {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: var(--red, #ef4444);
  opacity: 0.55;
  letter-spacing: -0.04em;
}

.offer-compact__arrow {
  color: var(--green, #4ade80);
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

.offer-compact__new {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2.8rem, 10vw, 4rem);
  font-weight: 800;
  color: var(--green, #4ade80);
  line-height: 1;
  letter-spacing: -0.06em;
  animation: priceGlow 3s ease-in-out infinite;
}

.offer-meta {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin: 12px 0 0;
}

@media (max-width: 420px) {
  .offer-compact {
    gap: 10px;
    padding: 18px 12px;
  }
  .offer-compact__old {
    font-size: 1.3rem;
  }
}

/* ── Gap global reduzido ── */
.section.section { padding: 36px 0; }
.fecho.fecho { padding: 36px 0; }
.hero.hero { padding-bottom: 24px; }
hr.rule { margin: 0; }

@media (min-width: 640px) {
  .section.section { padding: 44px 0; }
  .fecho.fecho { padding: 44px 0; }
}
@media (min-width: 960px) {
  .section.section { padding: 52px 0; }
  .fecho.fecho { padding: 52px 0; }
}

/* ── Highlight amarelo (marca-texto) ── */
.highlight {
  background: var(--gold, #e8a44a);
  color: #1a1a1a;
  padding: 2px 8px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ── Sublinhado forte no .mark do método ── */
.metodo .mark {
  text-decoration: underline;
  text-decoration-color: var(--gold, #e8a44a);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.metodo .mark__line {
  display: none;
}

/* ── Preços individuais riscados em vermelho na oferta ── */
.sc-price {
  color: var(--red, #ef4444) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--red, #ef4444);
  opacity: 0.75;
}
