/* ============================================================
   02 — Landing
   Estilos específicos da página de diagnóstico:
     • Top ribbon
     • Navbar v2 (.navbar)
     • Hero v2 (.hero, .hero__badge, .hero__title)
     • Seções: pain, myth, pivot, system, cases, benefits,
       about, delivers, polarize, faq, finalcta
     • Footer v2 + fixed bottom bar + exit popup
   ============================================================ */

:root {
  --text-strong: #ffffff;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);
  --text-on-dark-soft: rgba(255, 255, 255, 0.55);
  --green: #8FA13E;
}

/* ── Ribbon topo de autoridade (variação Reconecta ID 1) ──
   Faixa vermelha sólida com claim "🏆 EMPRESA Nº1 EM TRÁFEGO PAGO".
   Decisão Leonardo 2026-05-22: fundo vermelho + texto branco
   (variação da notice preta ID 1 supercaso pra puxar autoridade
   visualmente mais forte). */
.ribbon {
  background: var(--red-cta);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 225, 166, 0.18);
  box-shadow: 0 2px 12px rgba(211, 17, 26, 0.25);
}
.ribbon strong { color: #ffffff; font-weight: 800; }
.ribbon__icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-right: 6px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  line-height: 1;
}
.ribbon strong { color: var(--cream-gold); font-weight: 700; }
.ribbon__text { white-space: normal; }

@media (max-width: 810px) { .ribbon { font-size: 0.82rem; padding: 10px 15px; } }
@media (max-width: 768px) { .ribbon { font-size: 0.78rem; padding: 10px 12px; line-height: 1.4; } }
@media (max-width: 480px) { .ribbon { font-size: 0.74rem; padding: 8px 10px; } }

/* Hierarquia tipográfica padronizada (2026-05-22): todos os títulos da landing
   ficam do mesmo tamanho do .customer-reviews__title (clamp 24px → 76px desktop).
   Inclui hero h1 pra consistência completa. */
.section-title,
.hero__title {
  font-size: clamp(24px, 7vw, 76px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  text-wrap: balance;
}


.section-subtitle {
  font-size: 1rem;
  color: var(--text-on-navy-soft);
  margin-top: 8px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust signals abaixo do CTA do hero — 3 razões de baixo atrito com bullets coloridos.
   Desktop: 3 items em linha horizontal (matching referência Leo).
   Mobile: empilhados em coluna.
   Substitui o caveat-whisper que veio do template FSS. */
.hero__cta-reasons {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}
.hero__cta-reason {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.3;
  white-space: nowrap;
}
.hero__cta-reason strong { color: #fff; font-weight: 700; }
.hero__cta-reason-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-cta);
  flex-shrink: 0;
}
.hero__cta-reason--green .hero__cta-reason-dot {
  background: #22c55e; /* verde escassez */
}
@media (max-width: 700px) {
  /* Mobile: empilha em coluna pra não quebrar */
  .hero__cta-reasons {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }
  .hero__cta-reason { font-size: 0.88rem; white-space: normal; }
}

/* ── NAVBAR v2 ─────────────────────────────────── */
.navbar {
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}
.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(14, 15, 45, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.navbar__links a:hover {
  color: var(--cream-gold);
}
.navbar__links a::after { background: var(--red-cta); }
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.navbar__links a:hover::after {
  transform: scaleX(1);
}

/* Navbar CTA mantém visual de pill dourada (.btn--red já gerencia
   o gradiente dourado novo). Apenas reduzimos o tamanho. */
.navbar__cta {
  font-size: 0.85rem !important;
  padding: 11px 22px !important;
  border-radius: 100px !important;
}

@media (max-width: 900px) {
  .navbar__links {
    display: none;
  }
}

/* Mobile: esconde CTA do navbar (botão fixo de baixo já cobre) */
@media (max-width: 600px) {
  .navbar__cta {
    display: none !important;
  }
}

/* ── HERO v2 ─────────────────────────────────── */
/* Hero contém: badge+h1+sub+cta+vsl+.clientes (dentro do .container)
   + .cases-marquee (full-width, fora do container). Tudo na mesma dobra. */
.hero {
  min-height: auto !important;
  padding-bottom: 48px;
}
.hero .hero__overlay {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(14, 15, 45, 0) 0%, rgba(14, 15, 45, 0.35) 100%) !important;
}
.hero__container {
  padding-top: 56px !important;
  padding-bottom: 8px !important; /* reduzido em 2026-05-22 — .cases-marquee logo abaixo (fora do container) */
  max-width: 920px !important;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(211, 17, 26, 0.18);
  border: 1px solid rgba(255, 225, 166, 0.45);
  color: var(--cream-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__badge .pulse {
  background: var(--cream-gold) !important;
  box-shadow: 0 0 0 4px rgba(255, 225, 166, 0.25) !important;
}
.hero__badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(211, 17, 26, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(211, 17, 26, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(211, 17, 26, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream-gold);
  margin-bottom: 22px;
  max-width: 880px;
  text-align: center;
  text-wrap: balance;
}
.hero__title .red,
.hero__title .display-gold {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--cream-gold);
  letter-spacing: -0.005em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 720px;
  text-align: center;
  text-wrap: pretty;
}
.hero__subtitle strong {
  color: #fff;
  font-weight: 600;
}

.hero__video {
  width: min(100%, 760px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 44px !important;     /* respiro acima — separa dos trust signals */
  margin-bottom: 44px !important;  /* respiro abaixo — separa do .clientes */
  /* Cancela o hack left:50% + translateX(-50%) do 01-base.css
     (que causava deslocamento à direita quando combinado com flex centering) */
  left: auto !important;
  transform: none !important;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 700px) {
  .hero__video {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

/* Click-to-play poster */

.hero__cta {
  font-size: 1.1rem !important;
  padding: 18px 36px !important;
  border-radius: 100px !important;
  margin-bottom: 18px;
}
.hero__cta:hover {
  opacity: 0.9 !important;
}
.hero__cta--top {
  margin-top: 8px;
  margin-bottom: 14px;
}

.hero__urgency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.hero__urgency--top {
  margin-bottom: 28px;
}
.hero__urgency strong {
  color: #fff;
}
.urgency-dot--green {
  background: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(143, 161, 62, 0.25);
  animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(143, 161, 62, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(143, 161, 62, 0); }
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 580px;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__stars {
  color: #EECE66;
  letter-spacing: 2px;
  font-size: 1rem;
}
.hero__rating-text strong {
  color: #fff;
}
.hero__divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
}
.hero__stat {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__stat strong {
  color: #fff;
  font-family: var(--font-body);
}

@media (max-width: 700px) {
  .hero__divider { display: none; }
  .hero__urgency { gap: 12px; font-size: 0.76rem; }
  .hero__container {
    padding-top: 36px !important;
    padding-bottom: 48px !important;
  }
  .hero__title {
    /* font-size herdado da regra global .section-title,.hero__title (clamp 24-76px padronizado) */
    margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .hero__cta--top {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }
  .hero__urgency--top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero__video {
    margin-bottom: 22px !important;
  }
}

/* ── PAIN POINTS v2 ─────────────────────────────────── */
.pains {
  padding: 96px 0 !important;
}
.pains__list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 768px) {
  .pains__list { grid-template-columns: 1fr !important; }
}
/* (Regra .pains__item--last removida 2026-05-22 — agora são 4 cards em grid 2x2 par,
   não tem mais o caso ímpar do 5º card centralizado) */
.pains__item {
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 225, 166, 0.15);
  border-radius: 14px;
  padding: 24px 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  align-items: flex-start !important;
  gap: 18px !important;
}
.pains__item:hover {
  border-color: rgba(255, 225, 166, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}
.pains__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(211, 17, 26, 0.18);
  color: var(--cream-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pains__body {
  padding: 0 !important;
  display: block !important;
}
.pains__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pains__item p {
  font-size: 0.92rem !important;
  color: var(--text-on-navy-soft) !important;
  line-height: 1.6;
}
.pains__item strong { color: #fff; font-weight: 700; }

.pains__callout {
  margin-top: 48px !important;
  max-width: 720px !important;
  padding: 28px 32px;
  background: rgba(211, 17, 26, 0.10);
  border-left: 4px solid var(--cream-gold);
  border-radius: 0 12px 12px 0;
  text-align: left !important;
}
.pains__callout p {
  font-size: 1.05rem !important;
  color: #fff !important;
  line-height: 1.65 !important;
}
.pains__callout strong {
  color: #fff !important;
  font-weight: 700 !important;
}

/* ── ABOUT DIAGNÓSTICO v2 ─────────────────────────────────── */

/* ── CASES — componente Reconecta adaptado pra navy theme (2026-05-22) ──
   Importado de supercaso.com.br/treinamento-gratis (.clientes + .cases-marquee).
   Tokens originais cream substituídos por tokens ID 1 navy. */
/* section.cases removida 2026-05-22 — todo o componente (.clientes + .cases-marquee)
   vive DENTRO do hero, na mesma dobra. Regras .cases mantidas só por seguraça. */
.cases { display: none; }

/* .clientes vive DENTRO do hero (abaixo do VSL) — mesma dobra. Sem padding extra,
   só margin-top pra separar do VSL. */
.clientes { margin-top: 20px; padding: 0; }
.clientes__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.clientes__avatars {
  display: flex;
  align-items: center;
}
.clientes__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -22px;
  background-color: var(--cream-gold);
  border: 2px solid var(--cream-gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.clientes__avatar:last-child { margin-right: 0; }
.clientes__avatar:nth-child(1) { z-index: 7; }
.clientes__avatar:nth-child(2) { z-index: 6; }
.clientes__avatar:nth-child(3) { z-index: 5; }
.clientes__avatar:nth-child(4) { z-index: 4; }
.clientes__avatar:nth-child(5) { z-index: 3; }
.clientes__avatar:nth-child(6) { z-index: 2; }
.clientes__avatar:nth-child(7) { z-index: 1; }
.clientes__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.clientes__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.clientes__rating-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--cream-gold);
}
.clientes__rating-text b { font-weight: 700; color: #fff; }
.clientes__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.clientes__star {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(82%) sepia(35%) saturate(540%) hue-rotate(345deg) brightness(102%) contrast(101%);
}
@media (min-width: 768px) {
  .clientes { margin-top: 28px; padding: 0; }
  .clientes__container { gap: 14px; }
  .clientes__rating { flex-direction: row; gap: 18px; }
  .clientes__rating-break { display: none; }
  .clientes__avatar { width: 68px; height: 68px; margin-right: -26px; }
}
@media (min-width: 1200px) {
  .clientes__avatar { width: 76px; height: 76px; margin-right: -30px; }
}

/* marquee infinito de cards brancos por cima da navy.
   Vive DENTRO do hero, full-width (fora do .container), abaixo do .clientes — mesma dobra. */
.cases-marquee {
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
@media (min-width: 768px) {
  .cases-marquee { margin-top: 24px; }
}
.cases-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: cases-marquee-scroll 50s linear infinite;
  will-change: transform;
}
.cases-marquee:hover .cases-marquee__track { animation-play-state: paused; }
@keyframes cases-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cases-marquee__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border: 2px solid var(--cream-gold);
  border-radius: 16px;
  padding: 12px 16px 12px 12px;
  width: 260px;
  flex-shrink: 0;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.cases-marquee__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.cases-marquee__avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(221, 42, 123, 0.25);
}
.cases-marquee__avatar::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.cases-marquee__avatar > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.cases-marquee__name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.cases-marquee__handle {
  font-size: 0.72rem;
  line-height: 1.2;
  color: #1a1a1a;
  opacity: 0.6;
}
.cases-marquee__followers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #1a1a1a;
}
.cases-marquee__followers b { font-weight: 700; }
.cases-marquee__followers-count { font-weight: 700; }
.cases-marquee__followers-label { opacity: 0.65; margin-left: 3px; }
@media (min-width: 768px) {
  .cases-marquee { padding: 40px 0 16px; }
  .cases-marquee__card { width: 290px; padding: 14px 18px 14px 14px; gap: 14px; }
  .cases-marquee__avatar { width: 58px; height: 58px; }
  .cases-marquee__name { font-size: 0.92rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cases-marquee__track { animation: none; }
}

/* ── BENEFITS v2 — SVG icons ─────────────────────────────────── */
.benefits__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(211, 17, 26, 0.18);
  color: var(--cream-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
/* hide default emoji icon container if we forgot to replace */
.benefits__card .benefit-icon { display: none; }
.benefits__card .benefits__desc {
  color: var(--text-on-navy-soft);
  line-height: 1.65;
}

/* Em seções imersivas, .red vira cream-gold Playfair italic — assinatura editorial.
   Antes usava --yellow (#EECE66 saturado), agora --cream-gold (#FFE1A6) pra harmonizar com hero. */
.method .section-title .red,
.delivers .section-title .red,
.final-cta .section-title .red,
.final-cta__title .red {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--cream-gold) !important;
  letter-spacing: -0.005em;
}

/* ── SYSTEM v2 — diagrama de engrenagens ─────────────────────────────────── */
.method__title { color: var(--cream-gold) !important; }
.method__lead {
  font-size: 1.02rem !important;
  color: var(--text-on-dark-muted) !important;
  text-align: center;
  max-width: 740px;
  margin: 22px auto 40px !important;
}
.method__lead strong { color: #fff; }

.method__diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .method__diagram { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .method__diagram { grid-template-columns: 1fr; }
}
.method__gear {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.method__gear:hover {
  border-color: var(--border-red);
  background: rgba(211, 17, 26, 0.04);
  transform: translateY(-3px);
}
.method__gear-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(211, 17, 26, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.method__gear-number {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -0.04em;
}
.method__gear-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.method__gear-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.method__quote {
  max-width: 720px;
  margin: 48px auto 0 !important;
  padding: 24px 28px !important;
  background: rgba(211, 17, 26, 0.05) !important;
  border-top: 0 !important;
  border-left: 3px solid var(--red) !important;
  border-radius: 0 10px 10px 0 !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-style: italic;
  text-align: left !important;
  line-height: 1.7 !important;
}

/* ── ABOUT FSS v2 ─────────────────────────────────── */
/* Headline da autoridade tem 3 linhas em CAPS, então clamp menor que o padrão da página */
.about .section-title {
  font-size: clamp(20px, 4vw, 44px) !important;
  line-height: 1.15 !important;
}
.about__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-navy-soft);
}
.about__text strong {
  color: #fff;
  font-weight: 700;
}
/* ── ABOUT IMAGE v3 — mockup composto Leo+Instagram ───
   Foto da Gemini é vertical alta — precisa de espaço pra mostrar a bio inteira.
   SOBRESCREVE height: 512px de 01-base.css (que estava cortando) com !important.
   transform: none cancela o scale(1.08) também herdado de 01-base.css. */
.about__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: auto !important;
  border: none !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 225, 166, 0.18);
  background: var(--navy-deep);
}
.about .about__image {
  width: 100%;
  height: auto !important;
  display: block;
  transform: none !important;
}
/* Layout about v4: foto e texto equilibrados (1fr cada), align-items start
   pra a foto APARECER INTEIRA (sem corte) e texto não ficar comprimido.
   Container amplo (1400px) pra ambos terem ar. */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.about__layout > .reveal {
  max-width: 100%;
  justify-self: stretch;
  width: 100%;
}
.about__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
  }
  .about__layout > .reveal {
    max-width: 520px;
    margin: 0 auto;
    justify-self: center;
  }
}
.about__stats {
  margin-top: 48px !important;
}

/* ── FAQ v2 ─────────────────────────────────── */
.faq .faq__question {
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
}
.faq .faq__answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-on-navy-soft);
  padding-bottom: 20px;
}

/* ── FINAL CTA v2 ─────────────────────────────────── */
.final-cta { padding: 112px 0 !important; }
.final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 18px !important;
  color: var(--cream-gold) !important;
}
/* (Seletor `.final-cta__title span[style]` removido — código morto do ID 3.
   O HTML já não tem mais o inline style="color:var(--red)" nesse span.) */
.final-cta__subtitle {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 32px !important;
}
.final-cta__subtitle strong { color: #fff; }
.final-cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── FOOTER v2 ─────────────────────────────────── */
.footer { padding: 56px 0 28px !important; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream-gold);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__col li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  max-width: 320px;
}
.footer__cnpj {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__address {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* ── CUSTOMER REVIEWS — override pra ID 1 navy (2026-05-22) ──
   Componente original mora em criacao-sites/_componentes/customer-reviews/
   (designed pra fundo cream). Aqui sobrescrevemos os tokens expostos pra
   integrar à identidade visual da landing (navy + cream-gold + Playfair italic). */
.customer-reviews {
  /* Fundo navy + acentos cream-gold */
  --cr-bg: var(--navy-deep);
  --cr-card-bg: #ffffff; /* mantém branco pros prints WhatsApp terem contraste */
  --cr-card-border: var(--cream-gold);
  --cr-text: #fff;
  --cr-text-muted: rgba(255, 255, 255, 0.65);
  --cr-accent: var(--cream-gold);          /* "Reconecta" italic vira cream-gold (não vermelho) */
  --cr-eyebrow-color: var(--cream-gold);
}
/* Headline "Quem confia na Reconecta": "Reconecta" em Playfair Display italic cream-gold
   (matching o padrão da landing — .section-title .red em outras seções imersivas) */
.customer-reviews__title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}
.customer-reviews__title-em {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-style: italic !important;
  color: var(--cream-gold) !important;
}
/* Card com borda cream-gold mais forte + sombra navy pra destacar no fundo escuro */
.customer-reviews__card {
  border: 2px solid var(--cream-gold) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

/* Stat "R$ 500M+ em tratamentos pelas alunas" — vive dentro do .clientes__container
   na section .cases (movido do .hero__stat em 2026-05-22). */
.clientes__stat {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.clientes__stat strong {
  color: var(--cream-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .clientes__stat { font-size: 1rem; }
  .clientes__stat strong { font-size: 1.2rem; }
}
.footer__badges li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-size: 0.85rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ── WIZARD MODAL v2 ─────────────────────────────────── */
.modal__dialog { max-width: 540px !important; }
.wizard__header { padding: 22px 26px 14px !important; }
.wizard__progress {
  margin-bottom: 14px;
}
.wizard__progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.wizard__progress-fill {
  height: 100%;
  width: 33%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.wizard__tabs {
  display: flex;
  gap: 6px;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.wizard__tabs .wizard__tab {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.45) !important;
}
.wizard__tabs .wizard__tab::after { display: none !important; }
.wizard__tab-num {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.wizard__tab-label {
  font-size: 0.78rem;
  font-weight: 500;
}
.wizard__tabs .wizard__tab.active .wizard__tab-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.wizard__tabs .wizard__tab.active {
  color: #fff !important;
}
.wizard__tabs .wizard__tab.completed .wizard__tab-num {
  background: rgba(143, 161, 62, 0.2);
  border-color: var(--green);
  color: var(--green);
}
.wizard__tabs .wizard__tab.completed { color: rgba(255, 255, 255, 0.7) !important; }
.wizard__tabs .wizard__tab.completed .wizard__tab-num::after {
  content: '✓';
  font-size: 0.7rem;
}
.wizard__tabs .wizard__tab.completed .wizard__tab-num {
  font-size: 0;
}

@media (max-width: 768px) {
  /* ── Modal / backdrop ──
     Material 8pt grid · backdrop 16px de margem segura
     + scroll vertical para conteúdo maior que viewport ── */
  .modal {
    padding: 16px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .modal__dialog {
    border-radius: 18px !important;
    max-width: 640px !important;
    margin: auto 0 !important;
  }

  /* ── Header (faixa preta) ── */
  .wizard__header,
  .wizard__header { padding: 22px 24px 16px !important; }
  .wizard__brand { font-size: 1rem !important; margin-bottom: 16px !important; }

  /* ── Tabs ── */
  .wizard__tabs { gap: 6px; padding-bottom: 12px; }
  .wizard__tab-label { font-size: 0.85rem; }
  .wizard__tab-num {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
  .wizard__tabs .wizard__tab.completed .wizard__tab-num::after { font-size: 0.78rem; }

  /* ── Progress meta ── */
  .wizard__meta { font-size: 0.8rem; margin-top: 12px; }
  .wizard__step-label,
  .wizard__step-time { font-size: 0.8rem; }

  /* ── Conteúdo do step ──
     padding generoso (8pt grid: 32/24/28) ── */
  .wizard__body { padding: 32px 24px 28px !important; }
  .wizard__step-title {
    font-size: 1.5rem !important;       /* 24px — H2 mobile padrão */
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.01em !important;
  }
  .wizard__step-desc {
    font-size: 1.0625rem !important;    /* 17px — body+ */
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }
  .wizard__step-tag { display: none !important; }

  /* ── Cards de opção ──
     altura ≥56px (Material recomenda 56px filled fields)
     padding interno generoso + tipografia legível ── */
  .wizard__radio {
    padding: 20px 20px !important;
    font-size: 1.0625rem !important;    /* 17px */
    line-height: 1.45 !important;
    gap: 16px !important;
    border-radius: 14px !important;
    min-height: 56px !important;
  }
  .wizard__radio-grid { gap: 14px !important; margin-bottom: 22px !important; }
  .wizard__radio-list { gap: 14px !important; margin-bottom: 12px !important; }
  .wizard__radio-circle { width: 26px !important; height: 26px !important; }
  .wizard__radio-circle::after { width: 13px !important; height: 13px !important; }

  /* ── Inputs / info-block ── */
  .wizard__info-box { padding: 18px 20px !important; margin-bottom: 20px !important; }
  .wizard__info-box p { font-size: 1rem !important; line-height: 1.6 !important; }
  .wizard__field { margin-bottom: 18px !important; }
  .wizard__field input,
  .wizard__field select {
    padding: 18px 18px !important;
    font-size: 16px !important;          /* obrigatório: anti-zoom iOS */
    border-radius: 12px !important;
    min-height: 56px !important;         /* Material: 56px filled */
  }
  .wizard__field label {
    font-size: 0.875rem !important;     /* 14px */
    margin-bottom: 10px !important;
    letter-spacing: 0.04em !important;
  }
  .wizard__phone { min-height: 56px !important; border-radius: 12px !important; }
  .wizard__phone #f-country-code {
    padding: 18px 28px 18px 14px !important;
    font-size: 1rem !important;
  }
  .wizard__phone #f-whatsapp {
    padding: 18px 18px !important;
    font-size: 16px !important;
  }

  /* ── Ações ── */
  .wizard__footer { padding-top: 20px !important; }
  .wizard__urgency {
    font-size: 0.875rem !important;     /* 14px */
    gap: 12px 18px !important;
    margin: 20px 0 16px !important;
    flex-wrap: wrap !important;
  }
  .wizard__btn-next {
    padding: 20px !important;
    font-size: 1.2rem !important;        /* 19.2px — botão primário grande */
    border-radius: 14px !important;
    min-height: 60px !important;         /* > 48px Material */
    font-weight: 700 !important;
  }
  .wizard__btn-next svg { width: 22px !important; height: 22px !important; }
  .wizard__btn-next:disabled { opacity: 0.85; }
  .wizard__btn-back {
    font-size: 1rem !important;
    padding: 14px !important;
    min-height: 48px !important;         /* alvo de toque mínimo */
  }
  .wizard__secure {
    font-size: 0.875rem !important;
    margin-top: 14px !important;
    gap: 8px !important;
  }
  .wizard__secure svg { width: 16px !important; height: 16px !important; }
}

/* ── Refinamentos para telas pequenas (≤500px) ── */
@media (max-width: 500px) {
  /* ── ≤500px — celular (mantém escala confortável, só ajusta margens) ── */
  .modal { padding: 12px !important; }
  .modal__dialog { border-radius: 16px !important; }

  .wizard__header,
  .wizard__header { padding: 18px 18px 14px !important; }
  .wizard__brand { font-size: 0.92rem !important; margin-bottom: 14px !important; }

  .wizard__tab-label { display: none; }
  .wizard__tab-num { width: 24px; height: 24px; font-size: 0.78rem; }
  .wizard__tabs { padding-bottom: 10px; }

  .wizard__meta { font-size: 0.78rem; margin-top: 10px; }

  .wizard__body { padding: 26px 20px 22px !important; }
  .wizard__step-title { font-size: 1.35rem !important; margin-bottom: 12px !important; }
  .wizard__step-desc { font-size: 1rem !important; margin-bottom: 20px !important; }

  .wizard__radio {
    padding: 18px 18px !important;
    font-size: 1rem !important;
    min-height: 56px !important;
    border-radius: 12px !important;
  }
  .wizard__radio-grid { gap: 12px !important; margin-bottom: 18px !important; }
  .wizard__radio-list { gap: 12px !important; margin-bottom: 10px !important; }
  .wizard__radio-circle { width: 24px !important; height: 24px !important; }
  .wizard__radio-circle::after { width: 12px !important; height: 12px !important; }
  .wizard__info-box { padding: 16px 18px !important; }

  .wizard__field input,
  .wizard__field select {
    padding: 16px !important;
    min-height: 52px !important;
  }
  .wizard__btn-next {
    padding: 18px !important;
    font-size: 1.12rem !important;
    min-height: 56px !important;
  }
  .wizard__urgency { font-size: 0.82rem !important; }
}

/* ── BUTTONS — refinements & hover ─────────────────────────────────── */
.btn--red {
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s !important;
}
.btn--red:active {
  transform: translateY(0) !important;
}

/* ── REVEAL — make it less aggressive on mount ─────────────────────────────── */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}

/* ── Hide old static red banner that was above hero ─────────────────────── */
.hero-title-wrap { display: none !important; }

/* ── Logos clientes: card branco uniforme (PNGs do repo são mistura de fundo
   transparente + fundo branco; usar card branco normaliza a aparência) ── */
.logos__item {
  height: 56px !important;
  padding: 8px 18px !important;
  min-width: 130px;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 225, 166, 0.20) !important;
  border-radius: 10px !important;
}
.logos__item:hover {
  background: #fff !important;
  border-color: rgba(255, 225, 166, 0.50) !important;
}
.logos__item img {
  filter: none !important;
  opacity: 1 !important;
  max-width: 140px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logos__label {
  color: var(--cream-gold) !important;
  margin-bottom: 30px !important;
}

/* ── Spacing for fixed elements ─────────────────────────────────── */
body {
  padding-bottom: 120px;
}
@media (max-width: 600px) {
  body { padding-bottom: 110px; }
}

/* ── Bottom bar: aparece só a partir da seção Pains ────────────
   Hidden por padrão. Quando a seção Pains entra no viewport,
   o JS adiciona body.show-bar e a barra desliza pra cima.
*/
.bottom-bar {
  transform: translateY(110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.show-bar .bottom-bar,
body.show-bar .bottom-bar.hidden {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ══════════════════════════════════════════════════════════════
   FIXED BOTTOM BAR v2 — playbook-style (tag flutuante + pill + white CTA)
   ══════════════════════════════════════════════════════════════ */
.bottom-bar {
  background: transparent !important;
  backdrop-filter: none !important;
  border-top: none !important;
  box-shadow: none !important;
  padding: 0 16px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  pointer-events: none;
}
.bottom-bar > * {
  pointer-events: all;
}
.bottom-bar__tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--cream-gold);
  background: var(--red-cta);
  padding: 10px 28px;
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--cream-gold);
  border-bottom: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -8px 32px rgba(211, 17, 26, 0.35);
  margin-bottom: -2px;
}
.bottom-bar__pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-overlay);
  border: 1px solid rgba(255, 225, 166, 0.18);
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.bottom-bar__text {
  flex: 1;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bottom-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-cta);
  color: #fff;
  border: 1px solid var(--cream-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.bottom-bar__cta:hover {
  background: var(--red-cta-hover);
  color: #fff;
}
.bottom-bar__cta:active {
  transform: scale(0.98);
}
.bottom-bar__cta-short { display: none; }

@media (max-width: 560px) {
  .bottom-bar { padding: 0 10px 10px !important; }
  .bottom-bar__tag {
    font-size: 0.68rem;
    padding: 7px 18px;
    letter-spacing: 0.15em;
  }
  .bottom-bar__pill {
    padding: 6px 6px 6px 18px;
    gap: 8px;
  }
  .bottom-bar__text {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
  }
  .bottom-bar__cta {
    padding: 11px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    gap: 6px;
  }
  .bottom-bar__cta-full { display: none; }
  .bottom-bar__cta-short { display: inline; }
}
@media (max-width: 380px) {
  .bottom-bar__text {
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

/* ── Exit popup: esconde X de fechar (mantém ESC + click fora pra fechar) ── */
#exit-popup-close {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   GRANDE MENTIRA — quebra de objeções inline
   ══════════════════════════════════════════════════════════════ */
.myths {
  background: var(--navy-overlay);
  padding: 96px 0 !important;
}
.myths__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.myths__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-bottom: 16px;
}
.myths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .myths__grid { grid-template-columns: 1fr; gap: 16px; }
}
.myths__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 225, 166, 0.15);
  border-radius: 16px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.myths__card:hover {
  border-color: rgba(255, 225, 166, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}
.myths__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-gold);
  background: rgba(211, 17, 26, 0.18);
  border: 1px solid rgba(255, 225, 166, 0.35);
  padding: 5px 12px;
  border-radius: 100px;
}
.myths__belief {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  padding: 14px 16px 14px 18px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--cream-gold);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.myths__belief em {
  color: var(--cream-gold);
  font-style: italic;
  font-weight: 700;
}
.myths__truth {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-on-navy-soft);
}
.myths__truth strong {
  color: #fff;
  font-weight: 700;
}
/* "Falso." abre cada myth-truth — fica em cream-gold como anchor visual */
.myths__truth strong:first-child {
  color: var(--cream-gold);
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   A VIRADA — pivot pra o mecanismo único
   ══════════════════════════════════════════════════════════════ */
.pivot {
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(211, 17, 26, 0.08) 0%, transparent 70%),
    var(--navy-deep);
  padding: 88px 0 !important;
  position: relative;
}
.pivot::before,
.pivot::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--red));
  transform: translateX(-50%);
}
.pivot::before { top: 0; }
.pivot::after {
  bottom: 0;
  background: linear-gradient(0deg, transparent, var(--red));
}
.pivot__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pivot__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-gold);
  background: rgba(211, 17, 26, 0.18);
  border: 1px solid rgba(255, 225, 166, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.pivot__title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem) !important;
  margin-bottom: 26px;
  text-wrap: balance;
}
.pivot__text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-on-navy);
  max-width: 720px;
  margin: 0 auto 18px;
}
.pivot__text strong {
  color: #fff;
  font-weight: 700;
}
.pivot__arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--cream-gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .pivot__arrow { animation: none; }
}

/* ── Mechanism badge dentro do System ─────────────────────────── */
.method__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--cream-gold);
  background: rgba(255, 225, 166, 0.08);
  border: 1px solid rgba(255, 225, 166, 0.30);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════
   POLARIZAÇÃO — quem É e quem NÃO É o lead
   ══════════════════════════════════════════════════════════════ */
.polarize {
  background: var(--navy-overlay);
  padding: 96px 0 !important;
}
.polarize__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.polarize__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .polarize__grid { grid-template-columns: 1fr; }
}
.polarize__col {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 225, 166, 0.15);
  border-radius: 16px;
  padding: 28px 28px 30px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.polarize__col--yes {
  border-color: rgba(143, 161, 62, 0.45);
  background: linear-gradient(180deg, rgba(143, 161, 62, 0.10), rgba(255, 255, 255, 0.04));
}
.polarize__col--yes:hover {
  border-color: rgba(143, 161, 62, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(143, 161, 62, 0.20);
}
.polarize__col--no {
  border-color: rgba(211, 17, 26, 0.40);
  background: linear-gradient(180deg, rgba(211, 17, 26, 0.10), rgba(255, 255, 255, 0.04));
}
.polarize__col--no:hover {
  border-color: rgba(211, 17, 26, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(211, 17, 26, 0.18);
}
.polarize__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.polarize__tag--yes {
  color: #C8DA88;
  background: rgba(143, 161, 62, 0.18);
  border: 1px solid rgba(143, 161, 62, 0.4);
}
.polarize__tag--no {
  color: var(--cream-gold);
  background: rgba(211, 17, 26, 0.18);
  border: 1px solid rgba(255, 225, 166, 0.30);
}
.polarize__tag svg {
  flex-shrink: 0;
}
.polarize__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.polarize__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-on-navy);
}
.polarize__col--yes .polarize__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-body);
  font-weight: 800;
  color: #C8DA88;
  font-size: 1.05rem;
  line-height: 1.55;
}
.polarize__col--no .polarize__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--cream-gold);
  font-size: 1.05rem;
  line-height: 1.55;
}
.polarize__list strong {
  color: #fff;
  font-weight: 700;
}
.polarize__cta {
  text-align: center;
  margin-top: 48px;
}
.polarize__cta-text {
  font-size: 0.92rem;
  color: var(--text-on-navy-soft);
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════════════════════
   ADDITIONS 2026-05-22 — refac SUPERCASO+PPNE / about quote /
   customer-reviews subtitle. Substitui .method__diagram+.method__gear
   (mantidos no CSS pra não quebrar caches, mas não usados no HTML novo).
   ════════════════════════════════════════════════════════════ */

/* ── METHOD v3 — trio POSICIONAMENTO + SUPERCASO + PPNE ─── */
.method__pair {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .method__pair { grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
}

.method__piece {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 225, 166, 0.18);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.method__piece:hover {
  border-color: var(--cream-gold);
  background: rgba(255, 225, 166, 0.04);
  transform: translateY(-3px);
}

.method__piece-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.method__piece-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  color: var(--cream-gold);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  hyphens: none;
  word-break: keep-all;
}
.method__piece-sub {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255, 225, 166, 0.7);
  margin-top: 6px;
  letter-spacing: 0;
}

.method__piece-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.method__piece-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.method__piece-block--stop {
  background: rgba(211, 17, 26, 0.07);
  border-left: 3px solid var(--red);
  border-bottom: 0;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-top: 6px;
}

.method__piece-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.method__piece-block--stop .method__piece-label {
  color: var(--red);
}

.method__piece-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.method__piece-text strong {
  color: #fff;
  font-weight: 700;
}

/* ── ABOUT v2 — quote-âncora do Leo ─────────────────── */
.about__quote {
  margin-top: 24px !important;
  padding: 18px 22px !important;
  border-left: 3px solid var(--cream-gold);
  background: rgba(255, 225, 166, 0.05);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.04rem !important;
  line-height: 1.55 !important;
  color: var(--cream-gold) !important;
}
.about__quote em { font-style: italic; }

/* ── CUSTOMER-REVIEWS — subtitle (header v2) ─────────── */
.customer-reviews__subtitle {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-navy-soft);
  text-align: center;
}
.customer-reviews__subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   ADDITIONS 2026-05-23 — blocos de PROVA VISUAL
   Inseridos em: pains (GIF aspiracional), about (3 prints autoridade),
   delivers (planilha R$1M/ano). Estilo: bordered + caption em itálico.
   ════════════════════════════════════════════════════════════ */

/* ── PAINS PROOF (print da agenda — prova matemática da headline) ───
   Variant --agenda: usa max-width maior (planilha é wide). */
.pains__proof {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}
.pains__proof img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: 12px;
  border: 2px solid var(--cream-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.pains__proof--agenda {
  max-width: 1000px;
}
.pains__proof--agenda img {
  max-width: 100%;
}
.pains__proof figcaption {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-on-navy-soft);
  font-style: italic;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pains__proof figcaption strong {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

/* ── BENEFITS PROOF ROW (3 imagens lado a lado: agenda-fechada + nova-consulta + 630mil)
   Desktop: 3 colunas com TAMANHO IGUAL via aspect-ratio + object-fit.
   Mobile: empilhadas. */
.benefits__proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 40px auto 0;
}
@media (max-width: 820px) {
  .benefits__proof-row { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }
}
.benefits__proof-item {
  margin: 0;
  display: flex;
  align-items: stretch;
}
/* Aspect-ratio 4/5 (vertical) padroniza todas as 3 imagens no mesmo tamanho.
   object-fit: cover corta o que sobra, mantendo proporção igual em todos os cards. */
.benefits__proof-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 2px solid var(--cream-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  background: #0e1218;
}
/* Card agenda: object-position começa em 08:00 (não 06:00 nem header de data) */
.benefits__proof-item--agenda img {
  object-position: center 32%;
}
/* Card 3 (GIF 630mil): conteúdo relevante está à ESQUERDA da imagem,
   right side é fundo decorativo. Crop pela esquerda preserva a info. */
.benefits__proof-item--630 img {
  object-position: left center;
}

/* ── LIGHTBOX (clica imagem com [data-lightbox] e abre fullscreen) ─── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox[hidden] { display: none; }
#lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  background: #fff;
  cursor: default;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

/* Hint "Clique pra ampliar" usada em figcaptions com data-lightbox */
.agenda-math__hint {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.82em;
  font-style: italic;
  color: var(--cream-gold);
  opacity: 0.75;
}

/* ── FINAL-CTA REASONS (mesmos trust signals do hero, abaixo do botão final) */
.final-cta__reasons {
  justify-content: center;
  margin-top: 24px;
}

/* ── AGENDA-MATH (mini-section depois do CTA pains, com o print da planilha) */
.agenda-math {
  padding: 56px 0 96px !important;
  background: var(--navy-deep);
}
.agenda-math__figure {
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
}
.agenda-math__figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--cream-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  background: #fff;
}
.agenda-math__figure figcaption {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-on-navy-soft);
  font-style: italic;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.agenda-math__figure figcaption strong {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

/* ── ABOUT PROOF (prints comprobatórios — vem logo após foto, sem divisor) */
.about__proof {
  margin-top: 56px;
  text-align: center;
}
.about__proof-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211, 17, 26, 0.14);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.about__proof-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--cream-gold);
  margin: 0 0 32px;
  line-height: 1.2;
}
.about__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
/* Variação 2 colunas: usada quando o Instagram já tá embutido na foto principal */
.about__proof-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
}
@media (max-width: 960px) {
  .about__proof-grid,
  .about__proof-grid--2col { grid-template-columns: 1fr; gap: 28px; max-width: 520px; }
}
.about__proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 225, 166, 0.22);
  border-radius: 14px;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.about__proof-card:hover {
  border-color: var(--cream-gold);
  background: rgba(255, 225, 166, 0.05);
  transform: translateY(-3px);
}
.about__proof-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
  display: block;
}
.about__proof-card figcaption {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  font-style: italic;
}
.about__proof-card figcaption strong {
  color: var(--cream-gold);
  font-style: normal;
  font-weight: 700;
}

/* ── DELIVERS HERO PROOF (planilha R$1M/ano abaixo da headline) ── */
.delivers__hero-proof {
  max-width: 920px;
  margin: 36px auto 0;
  text-align: center;
}
.delivers__hero-proof img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--cream-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.delivers__hero-proof figcaption {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-on-navy-soft);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.delivers__hero-proof figcaption strong {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}
