/* ============================================================
   V2G — Landing page de vendas (leva o visitante frio à compra)
   Depende de v2g.css: usa as variáveis e o ::selection de lá.

   Decisão de superfície: a LP é MARKETING, não produto. Os anúncios
   reais da marca (billboards do rebrand) são navy com lima — então
   aqui o navy é a cor de campanha, ousada, e o claro é onde o produto
   se explica com transparência. É o oposto do fluxo de cadastro (claro
   do começo ao fim), e de propósito: propaganda e produto têm vozes
   visuais diferentes.

   Regras herdadas (não se quebram):
   - lima só celebração/ganho e prova de resultado, nunca no botão;
   - a ação é sempre cobalto (no claro) ou branco (no navy) — uma cor
     de ação só, para o olho nunca hesitar sobre onde clicar;
   - sem a palavra "grátis"; zero jargão de tráfego.
   ============================================================ */

body.lp {
  background: var(--offwhite);
  background-image: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

.lp-container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.lp-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   NAV superior — enxuta, CTA sempre à mão
   ============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 27, 43, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid rgba(171, 234, 253, 0.14);
}
.lp-nav .lp-container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.lp-nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.lp-nav .brand .wm {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  line-height: 1;
}
.lp-nav .brand .wm small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-top: 3px;
}
.lp-nav .nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.lp-nav .nav-links a.txt {
  font-family: var(--display);
  font-size: 13.5px;
  color: rgba(240, 242, 239, 0.82);
  text-decoration: none;
}
.lp-nav .nav-links a.txt:hover { color: var(--offwhite); }
@media (max-width: 720px) { .lp-nav .nav-links a.txt { display: none; } }

/* ============================================================
   BOTÕES — uma ação, dois contrastes
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
}
.btn .arrow { transition: transform 0.14s ease; }
.btn:hover .arrow { transform: translateX(3px); }
/* ação no claro */
.btn-primary { background: var(--cobalt); color: var(--white); }
.btn-primary:hover { background: var(--cobalt-dark); transform: translateY(-1px); }
/* ação no navy */
.btn-light { background: var(--offwhite); color: var(--navy); }
.btn-light:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 10px 30px -12px rgba(171, 234, 253, 0.6); }
/* secundária */
.btn-ghost-light {
  background: transparent; color: var(--offwhite);
  border: 1.5px solid rgba(171, 234, 253, 0.4);
}
.btn-ghost-light:hover { border-color: var(--ice); background: rgba(171, 234, 253, 0.08); }
.btn-lg { font-size: 16.5px; padding: 17px 30px; }
.btn-nav { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   HERO — o navy é o palco; a tese entra em 3 segundos
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--offwhite);
  padding: 66px 0 76px;
}
.hero .dotgrid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(171, 234, 253, 0.16) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 40%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 40%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 52px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  border: 1px solid rgba(171, 234, 253, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 22px;
}
.hero-eyebrow .pip { width: 7px; height: 7px; background: var(--lime); flex: none; }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  text-wrap: balance;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(240, 242, 239, 0.86);
  margin: 0 0 30px;
  max-width: 48ch;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(240, 242, 239, 0.7);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .tk { width: 15px; height: 15px; background: var(--lime); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* logomark que se monta */
.hero-mark { margin-bottom: 26px; }
.hero-mark .mark i { background: var(--lime); transition: opacity 0.5s ease, transform 0.5s ease; }
.hero-mark .mark i.off { background: rgba(171, 234, 253, 0.14); }

/* card de prova flutuante — mostra a transparência, não só promete */
.proof-float {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  transform: rotate(1.4deg);
}
.proof-float .pf-top {
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 13px; margin-bottom: 14px;
  border-bottom: 1.5px solid var(--line);
}
.proof-float .pf-avatar {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: var(--navy); color: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 14px;
}
.proof-float .pf-who b { font-family: var(--display); font-size: 13.5px; color: var(--navy); display: block; line-height: 1.1; }
.proof-float .pf-who span { font-size: 11px; color: var(--ink-mute); }
.proof-float .pf-phrase {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 15px;
}
.proof-float .pf-phrase b { color: var(--cobalt); }
.proof-float .pf-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proof-float .pf-m {
  background: var(--offwhite);
  border-radius: 9px;
  padding: 11px 12px;
}
.proof-float .pf-m .l { font-family: var(--display); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); display: block; }
.proof-float .pf-m .v { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--navy); font-variant-numeric: tabular-nums; }
.proof-float .pf-m .v.win { color: var(--cobalt); }
.proof-float .pf-tag {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px;
  background: var(--lime); color: var(--navy);
  font-family: var(--display); font-weight: 700; font-size: 11.5px;
  padding: 7px 11px; border-radius: 7px;
}

/* ============================================================
   SEÇÕES genéricas
   ============================================================ */
.section { padding: 76px 0; }
.section.tight { padding: 60px 0; }
.section.ice { background: var(--ice-soft); }
.section.navy { background: var(--navy); color: var(--offwhite); }

.sec-head { max-width: 62ch; margin: 0 0 42px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: block;
  margin-bottom: 14px;
}
.section.navy .sec-eyebrow { color: var(--ice); }
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
  text-wrap: balance;
}
.section.navy .sec-head h2 { color: var(--offwhite); }
.sec-head h2 em { font-style: normal; color: var(--cobalt); }
.section.navy .sec-head h2 em { color: var(--lime); }
.sec-lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.section.navy .sec-lead { color: rgba(240, 242, 239, 0.82); }

/* ============================================================
   DOR — o filme que o dono já viveu
   ============================================================ */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.pain .p-ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--crit-soft); color: var(--crit);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain h3 { font-family: var(--display); font-size: 17px; color: var(--navy); margin: 0 0 8px; }
.pain p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ============================================================
   VIRADA — o contrário disso
   ============================================================ */
.shift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shift {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.shift .s-ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(43, 76, 206, 0.1); color: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.shift h3 { font-family: var(--display); font-size: 17px; color: var(--navy); margin: 0 0 8px; }
.shift p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ============================================================
   COMO FUNCIONA — 3 passos (espelha o produto real)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step .s-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  width: 40px; height: 40px;
  background: var(--navy); color: var(--lime);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--display); font-size: 19px; color: var(--navy); margin: 0 0 10px; }
.step p { font-size: 14.5px; line-height: 1.58; color: var(--ink-soft); margin: 0; }
.step .s-note { font-size: 12.5px; color: var(--cobalt); font-weight: 600; margin-top: 10px; display: inline-block; }
.steps-cta { margin-top: 40px; text-align: center; }

/* ============================================================
   PREÇO — a âncora
   ============================================================ */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.price-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--offwhite);
  border-radius: 18px;
  padding: 34px 32px;
}
.price-card .pc-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(171, 234, 253, 0.12) 1.1px, transparent 1.1px);
  background-size: 18px 18px; pointer-events: none;
}
.price-card .pc-body { position: relative; }
.price-card .pc-label { font-family: var(--display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ice); }
.price-card .pc-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 62px;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin: 10px 0 4px;
  font-variant-numeric: tabular-nums;
}
.price-card .pc-amount small { font-size: 22px; font-weight: 400; color: var(--offwhite); letter-spacing: 0; }
.price-card .pc-sub { font-size: 14px; color: rgba(240, 242, 239, 0.82); line-height: 1.55; margin: 0 0 22px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-card ul li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.45; }
.price-card ul li .tk { width: 19px; height: 19px; flex: none; background: var(--lime); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.price-card .btn { width: 100%; }
.price-card .pc-fine { font-size: 12px; color: rgba(240, 242, 239, 0.6); text-align: center; margin: 12px 0 0; }

.price-side { display: flex; flex-direction: column; gap: 18px; }
.compare {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.compare h3 { font-family: var(--display); font-size: 16px; color: var(--navy); margin: 0 0 18px; }
.compare-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.compare-row:last-child { border-bottom: none; }
.compare-row .who { font-size: 14px; color: var(--ink-soft); }
.compare-row .who b { color: var(--ink); font-family: var(--display); }
.compare-row .val { font-family: var(--display); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 16px; white-space: nowrap; }
.compare-row .val.them { color: var(--crit); }
.compare-row .val.us { color: var(--cobalt); }
.compare-bar { height: 10px; border-radius: 999px; background: var(--offwhite); overflow: hidden; margin-top: 4px; }
.compare-bar i { display: block; height: 100%; border-radius: 999px; }
.compare-bar i.them { background: var(--crit); width: 100%; }
.compare-bar i.us { background: var(--cobalt); }

.pix-note {
  background: var(--ice-soft);
  border: 1.5px solid var(--ice);
  border-radius: 16px;
  padding: 20px 22px;
}
.pix-note b { font-family: var(--display); font-size: 14.5px; color: var(--navy); display: block; margin-bottom: 8px; }
.pix-note p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; font-variant-numeric: tabular-nums; }
.pix-note p mark { background: var(--lime); color: var(--navy); padding: 1px 5px; font-weight: 600; }

/* ============================================================
   PROMESSA HONESTA — os 3 "nãos" (converte quem já foi queimado)
   ============================================================ */
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.promise-item .no {
  font-family: var(--display);
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px;
}
.promise-item .no .x { width: 22px; height: 22px; flex: none; border-radius: 6px; background: rgba(11,27,43,0.06); color: var(--ink-soft); display: inline-flex; align-items: center; justify-content: center; }
.promise-item .yes {
  background: var(--ice-soft);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.promise-item .yes b { color: var(--navy); }

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee {
  display: flex; align-items: center; gap: 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
}
.guarantee .g-seal {
  width: 66px; height: 66px; flex: none;
  border-radius: 14px;
  background: var(--ice-soft); color: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
}
.guarantee h3 { font-family: var(--display); font-size: 19px; color: var(--navy); margin: 0 0 6px; }
.guarantee p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ============================================================
   FAQ — acordeão nativo
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--cobalt); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 18px; height: 18px; flex: none; color: var(--cobalt); transition: transform 0.2s ease; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); }
.faq .faq-body b { color: var(--ink); }

/* ============================================================
   CTA FINAL — o fecho
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--offwhite);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
}
.final-cta .fc-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(171, 234, 253, 0.14) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 75%);
}
.final-cta .fc-body { position: relative; }
.final-cta h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 auto 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.final-cta h2 em { font-style: normal; color: var(--lime); }
.final-cta p { font-size: 16.5px; line-height: 1.55; color: rgba(240, 242, 239, 0.82); margin: 0 auto 30px; max-width: 46ch; }
.final-cta .fc-fine { font-size: 13px; color: rgba(240, 242, 239, 0.6); margin: 20px 0 0; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.lp-footer { background: var(--navy); color: rgba(240, 242, 239, 0.66); padding: 40px 0 44px; }
.lp-footer .lp-container { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.lp-footer .f-brand { display: flex; align-items: center; gap: 11px; }
.lp-footer .f-brand .wm { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--offwhite); letter-spacing: 0.04em; }
.lp-footer .f-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 18px; }
.lp-footer .f-links a { color: rgba(240, 242, 239, 0.66); text-decoration: none; font-size: 13px; }
.lp-footer .f-links a:hover { color: var(--ice); }
.lp-footer .f-legal { flex-basis: 100%; font-size: 12px; color: rgba(240, 242, 239, 0.44); border-top: 1px solid rgba(171, 234, 253, 0.12); padding-top: 18px; margin-top: 4px; line-height: 1.6; }

/* ============================================================
   MOTION — revelação suave ao rolar
   ============================================================ */
/* aprimoramento progressivo: sem JS, o conteúdo aparece normalmente.
   o esconde-e-revela só entra quando o <html> ganha a classe .js. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-float { max-width: 400px; }
  .pains, .shift-grid, .steps, .promise { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 54px 0; }
  .hero { padding: 46px 0 54px; }
  .guarantee { flex-direction: column; text-align: center; }
  .final-cta { padding: 44px 24px; border-radius: 18px; }
  .lp-footer .f-links { margin-left: 0; flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mark .mark i { transition: none; }
  .btn, .btn .arrow { transition: none; }
  .lp-nav { backdrop-filter: none; }
  .proof-float { transform: none; }
}

/* ============================================================
   LP v2 — copy comercial (análise gratuita + comparação de preço)
   Componentes novos. Tabelas empilham em cards no mobile (sem scroll lateral).
   ============================================================ */

.navy-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(171, 234, 253, 0.12) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
}

/* par de CTAs: primário (análise) + secundário (cadastro) */
.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.cta-stack.center { align-items: center; text-align: center; }
.cta-sub-link {
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.cta-sub-link .arrow { transition: transform 0.14s ease; }
.cta-sub-link:hover .arrow { transform: translateX(3px); }
.hero .cta-sub-link, .final-cta .cta-sub-link, .isca .cta-sub-link { color: var(--ice); }
.section .cta-sub-link { color: var(--cobalt); }
.cta-reinforce { font-size: 13.5px; margin: 2px 0 0; }
.hero .cta-reinforce { color: rgba(240, 242, 239, 0.72); }
.section .cta-reinforce, .plan .cta-reinforce { color: var(--ink-mute); }

/* corpo de texto de seção + frase de virada */
.sec-body { max-width: 62ch; }
.sec-body p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.sec-body p:last-child { margin-bottom: 0; }
.sec-body i { color: var(--ink); }
.turn-line {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(19px, 2.4vw, 27px); line-height: 1.18;
  color: var(--navy); margin: 26px 0 0; text-wrap: balance; max-width: 24ch;
}
.turn-line em { font-style: normal; color: var(--cobalt); }

/* --- comparação de preço (estilo Contabilizei) --- */
.cmp { border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; align-items: center; }
.cmp-head { background: var(--navy); }
.cmp-head > div { padding: 14px 18px; font-family: var(--display); font-size: 13px; letter-spacing: 0.02em; }
.cmp-head .h-feat { color: rgba(240, 242, 239, 0.66); }
.cmp-head .h-v2g { color: var(--lime); text-align: center; }
.cmp-head .h-mkt { color: rgba(240, 242, 239, 0.72); text-align: center; }
.cmp-row { border-top: 1.5px solid var(--line); }
.cmp-row > div { padding: 14px 18px; font-size: 14.5px; }
.cmp-feat { color: var(--ink); font-weight: 600; }
.cmp-v2g { text-align: center; color: var(--navy); font-weight: 700; font-family: var(--display); display: flex; align-items: center; justify-content: center; gap: 7px; }
.cmp-v2g .tk { width: 18px; height: 18px; background: var(--lime); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.cmp-mkt { text-align: center; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.cmp-lbl { display: none; }
.cmp-row.total { background: var(--offwhite); }
.cmp-row.total > div { padding-top: 17px; padding-bottom: 17px; }
.cmp-row.total .cmp-feat { font-family: var(--display); font-weight: 700; font-size: 15px; }
.cmp-row.total .cmp-v2g { font-size: 23px; color: var(--cobalt); }
.cmp-row.total .cmp-mkt { font-size: 17px; font-weight: 700; font-family: var(--display); color: var(--crit); }
.eco { text-align: center; margin: 24px 0 0; }
.eco h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); color: var(--navy); margin: 0 0 8px; text-wrap: balance; }
.eco h3 mark { background: var(--lime); color: var(--navy); padding: 1px 8px; }
.eco p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.cmp-note { font-size: 12px; line-height: 1.55; color: var(--ink-mute); margin: 18px auto 0; max-width: 74ch; }

/* --- não é agência (vs) --- */
.vs { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; }
.vs-col.them { background: var(--white); }
.vs-col.us { background: var(--ice-soft); }
.vs-h { font-family: var(--display); font-weight: 700; font-size: 14px; padding: 15px 18px; border-bottom: 1.5px solid var(--line); }
.vs-col.them .vs-h { color: var(--ink-soft); }
.vs-col.us .vs-h { color: var(--navy); }
.vs-item { padding: 14px 18px; font-size: 14px; line-height: 1.45; border-top: 1px dashed var(--line); }
.vs-item.first { border-top: none; }
.vs-col.them .vs-item { color: var(--ink-soft); }
.vs-col.us .vs-item { color: var(--ink); font-weight: 500; }
.vs-note { font-size: 13.5px; line-height: 1.6; color: var(--ink-mute); margin: 18px 0 0; }

/* --- isca análise gratuita (navy) --- */
.isca { position: relative; overflow: hidden; background: var(--navy); border-radius: 20px; padding: 42px 40px; color: var(--offwhite); }
.isca > * { position: relative; }
.isca .sec-eyebrow { color: var(--ice); }
.isca h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.1; margin: 0 0 12px; color: var(--offwhite); text-wrap: balance; max-width: 20ch; }
.isca .isca-sub { font-size: 16px; line-height: 1.6; color: rgba(240, 242, 239, 0.82); margin: 0 0 22px; max-width: 52ch; }
.isca-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.isca-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; color: rgba(240, 242, 239, 0.92); }
.isca-list li .tk { width: 20px; height: 20px; flex: none; background: var(--lime); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }

/* --- prova social --- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.stat { text-align: center; background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; padding: 26px 20px; }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: 34px; color: var(--cobalt); font-variant-numeric: tabular-nums; }
.stat span { font-size: 13px; line-height: 1.4; color: var(--ink-soft); }
.tstm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.tstm { background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; padding: 22px; }
.tstm p { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 0 0 14px; }
.tstm .who { font-size: 13px; color: var(--ink-mute); font-family: var(--display); }
.is-placeholder { color: var(--ink-mute); font-style: italic; }
.social-fallback { margin: 26px auto 0; max-width: 60ch; text-align: center; font-size: 15px; line-height: 1.6; color: var(--ink-soft); background: var(--ice-soft); border: 1.5px solid var(--ice); border-radius: 12px; padding: 20px 24px; }
.social-fallback b { color: var(--navy); font-family: var(--display); }

/* --- plano de preço --- */
.plan { max-width: 470px; margin: 0 auto; background: var(--white); border: 2px solid var(--cobalt); border-radius: 18px; padding: 34px 32px 30px; text-align: center; box-shadow: 0 24px 50px -30px rgba(43, 76, 206, 0.4); }
.plan .p-name { font-family: var(--display); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cobalt); }
.plan .p-price { font-family: var(--display); font-weight: 700; font-size: 56px; color: var(--navy); line-height: 1; margin: 8px 0 4px; font-variant-numeric: tabular-nums; }
.plan .p-price small { font-size: 21px; font-weight: 400; color: var(--ink-soft); }
.plan .p-fid { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 24px; }
.plan ul { list-style: none; text-align: left; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.plan ul li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.4; color: var(--ink); }
.plan ul li .tk { width: 19px; height: 19px; flex: none; background: var(--lime); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.plan .btn { width: 100%; }
.plan .p-obs { font-size: 12.5px; line-height: 1.55; color: var(--ink-mute); margin: 16px 0 0; }
.plan .cta-sub-link { margin-top: 14px; }

@media (max-width: 720px) {
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr 1fr; }
  .cmp-feat { grid-column: 1 / -1; padding-bottom: 2px; }
  .cmp-lbl { display: block; font-family: var(--display); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
  .cmp-v2g, .cmp-mkt { display: block; text-align: left; }
  .cmp-v2g .tk { vertical-align: -3px; margin-right: 4px; }
  .cmp-row.total .cmp-v2g { font-size: 20px; }
  .vs { grid-template-columns: 1fr; }
  .vs-col.them { border-bottom: 1.5px solid var(--line); }
  .stats { grid-template-columns: 1fr; gap: 12px; }
  .isca { padding: 30px 22px; }
  .plan { padding: 28px 22px 24px; }
}