/* ============================================================
   INOVAPLUG — Design System  v6 (alinhado à marca Inovaplug)
   ══════════════════════════════════════════════════════════
   PALETA OFICIAL SIMPLIFICADA — 3 cores base
   ──────────────────────────────────────────────────────────
   Azul       #2f4264  background / fundos dark  (★ tom ref)
   CTA Turq   #419b87  botões / destaques / ícones / acentos
   White      #FFFFFF  texto / fundos claros
   (+ cinzas semânticos para texto muted em dobras claras)

   Paleta Inovaplug: azul #2f4264 como primário, turquesa #419b87
   como accent de CTA e destaques. Design mantém estrutura Liberta
   com atualização completa de cores e marca.
   ══════════════════════════════════════════════════════════ */

:root {
  /* ── Tokens principais ── */
  --primary:       #2f4264;   /* Azul médio — cor primária Inovaplug  ★ */
  --primary-dark:  #1f2d3d;   /* Azul profundo (fundos alternados)         */
  --primary-mid:   #3d5574;   /* Azul cards                                 */
  --primary-light: #4b6584;   /* Azul claro (hover / bordas)                */

  --orange:        #419b87;   /* CTA Turquesa   ★ */
  --orange-dark:   #2d7d6f;   /* hover escuro */
  --orange-light:  #52b59f;   /* hover claro / variação */
  --orange-glow:   rgba(65, 155, 135, 0.22);

  /* ALIAS RE-MAPEADOS PARA TURQUESA
     (antes: ouro, verde e azul-elétrico — agora turquesa
      para consistência com a marca Inovaplug) */
  --gold:          #419b87;
  --gold-dark:     #2d7d6f;
  --gold-glow:     rgba(65, 155, 135, 0.18);

  --green:         #419b87;
  --green-dark:    #2d7d6f;
  --green-glow:    rgba(65, 155, 135, 0.15);

  --soft-blue:     #419b87;
  --soft-blue-dark:#2d7d6f;
  --soft-blue-glow:rgba(65, 155, 135, 0.18);

  /* Electric = ACCENT principal → turquesa */
  --electric:      #419b87;
  --electric-dark: #2d7d6f;
  --electric-glow: rgba(65, 155, 135, 0.15);

  --blue:          #2f4264;          /* = Azul médio */
  --blue-mid:      #3d5574;
  --blue-dark:     #1f2d3d;
  --blue-light:    #419b87;          /* antes = soft-blue, agora turquesa */
  --blue-glow:     rgba(47, 66, 100, 0.30);

  /* ── Fundos dark — família Azul ──
     bg-900 ajustado para #2f4264 = azul primário Inovaplug
     (a logo fica inserida no header/footer sem nenhum "quadrado" visível) */
  --bg-900: #2f4264;   /* fundo base profundo — casa com a logo */
  --bg-800: #2f4264;   /* Azul médio — seções principais  ★    */
  --bg-700: #3d5574;   /* cards dark                            */
  --bg-600: #4b6584;   /* borda / divisor                       */
  --bg-500: #5a7594;   /* hover state                           */

  /* Token dedicado: cor exata do fundo do PNG da logo.
     Usada em .header e .footer para garantir seamless. */
  --logo-navy: #2f4264;

  /* Neutro claro */
  --neutral: #EBEFF0;

  /* Tipografia */
  --text-100: #FFFFFF;
  --text-200: #EAF1FC;   /* branco azulado claro — alto contraste sobre azul */
  --text-300: #BCCEE8;   /* muted claro — contraste mínimo 4.5:1 sobre bg-800 */
  --text-400: #90ACD0;   /* muted legível — contraste 3:1+ sobre bg-800 */

  /* Fontes */
  --font: 'Jeko', 'Inter', sans-serif;

  /* Sombras */
  --shadow-electric: 0 0 28px rgba(65, 155, 135, 0.28);
  --shadow-orange:   0 8px 32px rgba(65, 155, 135, 0.35);
  --shadow-gold:     0 4px 20px rgba(65, 155, 135, 0.25);
  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-heavy:    0 16px 64px rgba(0, 0, 0, 0.55);

  /* Raios */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 100px;

  /* Transição */
  --t: .28s ease;

  --container: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font); font-weight: 900; line-height: 1.15; color: var(--text-100); }
p { color: var(--text-300); font-weight: 400; }
/* Garantia de contraste: parágrafos em dobras escuras herdam text-300 melhorado */
strong { color: var(--text-100); font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOKENS ÚTEIS
   ============================================================ */
.txt-electric { color: var(--electric); }
.txt-gold     { color: var(--gold); }
.txt-muted    { color: var(--text-300); }
.txt-orange   { color: var(--orange); }

/* ============================================================
   LABEL TAG — pill de seção
   ============================================================ */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65,155,135,0.10);
  border: 1px solid rgba(65,155,135,0.28);
  color: var(--electric);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.label-tag--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text-300);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--t);
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(65,155,135,.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: transparent;
  color: var(--text-200);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--t);
}
.btn-ghost:hover {
  border-color: var(--electric);
  color: var(--electric);
}
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-full  { width: 100%; justify-content: center; }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--t);
  flex-shrink: 0;
}
.btn-header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(65,155,135,.5), var(--shadow-orange); }
  70%  { box-shadow: 0 0 0 20px rgba(65,155,135,0), var(--shadow-orange); }
  100% { box-shadow: 0 0 0 0 rgba(65,155,135,0), var(--shadow-orange); }
}
.pulse-cta { animation: pulse-orange 2.4s infinite; }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  /* Fundo sólido e idêntico ao navy do PNG da logo — zero "quadrado" visível */
  background: #0F245D !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--t);
}
.header.scrolled {
  background: #0F245D !important;
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-bolt {
  width: 36px; height: 36px;
  background: var(--electric);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-900);
  font-size: .9rem;
  box-shadow: var(--shadow-electric);
}
.logo-bolt--sm { width: 30px; height: 30px; font-size: .8rem; }
.logo-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-100);
}
.logo-name strong { color: var(--electric); font-weight: 900; }
.logo-name--lg { font-size: 1.5rem; }

/* Logo imagem — novo logo "Liberta eletroposto" tem ratio ~1.29:1
   (quadradão), então precisa mais altura do que o wordmark horizontal antigo */
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--header {
  height: 88px;   /* header expandido — logo mais proeminente */
}
.header.scrolled .logo-img--header {
  height: 68px;   /* header scrollado: reduz um pouco mas mantém presença */
}
.logo-img--mobile-nav {
  height: 72px;
}
.logo-img--footer {
  height: 120px;   /* footer: destaque máximo da marca */
  margin-bottom: 8px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  color: var(--text-200);  /* melhorado: maior contraste no header */
  font-size: .88rem;
  font-weight: 600;
  transition: var(--t);
  position: relative;
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--electric);
  transform: scaleX(0);
  transition: var(--t);
}
.header__nav a:hover { color: var(--text-100); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__nav a.active { color: var(--electric); }
.header__nav a.active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-200);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 998; backdrop-filter: blur(4px); }
.nav-overlay.is-open { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: 0;
  width: min(300px, 86vw); height: 100dvh;
  background: var(--logo-navy);   /* casa com a logo (sem quadrado visível) */
  border-left: 1px solid var(--bg-600);
  z-index: 999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); box-shadow: -8px 0 48px rgba(0,0,0,.6); }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--bg-600); }
.mobile-nav__close { background: var(--bg-600); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--text-200); font-size: 1rem; transition: var(--t); }
.mobile-nav__close:hover { background: var(--bg-500); color: #fff; }
.mobile-nav__links { display: flex; flex-direction: column; flex: 1; padding: 12px 0; }
.mobile-nav__links a { display: flex; align-items: center; gap: 12px; padding: 14px 24px; color: var(--text-200); font-weight: 600; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.04); transition: var(--t); }  /* melhorado: maior contraste no menu mobile */
.mobile-nav__links a:hover { background: var(--bg-600); color: var(--electric); }
.mobile-nav__links a i { width: 18px; color: var(--electric); }
.mobile-nav__cta { padding: 20px 24px 32px; border-top: 1px solid var(--bg-600); }
.mobile-nav__cta .btn-primary { width: 100%; justify-content: center; }


/* ============================================================
   HERO  v4 — navy 100% limpo, sem orbe/glow laranja
   ──────────────────────────────────────────────────────────
   Camadas:
   1. Fundo: degradê navy sólido (sem cor laranja em lugar algum)
   2. Grid tech sutil branco (via .hero__grid-bg)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 55%, var(--bg-900) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Grid tech sutil — SEM mask (evita qualquer hotspot radial percebido) */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

/* Orbe laranja TOTALMENTE removido — sem resíduo
   (classe mantida zerada caso algum HTML antigo/cache ainda referencie) */
.hero__glow,
.hero .glow,
.hero__orb {
  display: none !important;
  background: none !important;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 26px;
  padding: 8px 16px;
  background: rgba(65,155,135,.10);
  border: 1px solid rgba(65,155,135,.24);
  border-radius: var(--r-pill);
  opacity: 0;
  animation: fadeUp .7s ease .1s forwards;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s ease .25s forwards;
}
.hero__title-highlight {
  display: block;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-200);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .7s ease .4s forwards;
}
.hero__sub em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .7s ease .55s forwards;
}

/* Trust markers inline — substituem a charge bar */
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  opacity: 0;
  animation: fadeUp .7s ease .7s forwards;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-200);
}
.hero__trust li i {
  color: var(--orange);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 56px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   SECTION LABEL (título de seção padrão)
   ============================================================ */
.section-label {
  text-align: center;
  margin-bottom: 56px;
}
.section-label h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-300);
  max-width: 520px;
  margin: 0 auto;
}


/* ============================================================
   SEÇÃO: MODELO (4 blocos)
   ============================================================ */
/* ── LIGHT (dobra clara) ── */
.model-section {
  background: #FFFFFF;
  padding: 96px 0;
  position: relative;
}
.model-header {
  text-align: center;
  margin-bottom: 56px;
}
.model-header h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 12px; }
.model-header p { color: var(--text-300); max-width: 480px; margin: 0 auto; }

.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 640px) { .model-grid { grid-template-columns: 1fr 1fr; } }

.model-card {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--t);
}
.model-card:hover {
  border-color: var(--bg-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.model-card__num {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  user-select: none;
}
.model-card__icon {
  width: 52px; height: 52px;
  background: var(--bg-600);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--text-300);
  margin-bottom: 18px;
}
.model-card__icon--electric { background: var(--electric-glow); color: var(--electric); box-shadow: var(--shadow-electric); }
.model-card__icon--gold     { background: var(--gold-glow);     color: var(--gold); }

.model-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-100);
}
.model-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.model-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-200);  /* melhorado: branco azulado sobre cards bg-700 */
  font-weight: 500;
}
.model-card ul li i { color: #419b87; font-size: .75rem; flex-shrink: 0; }  /* bullet ouro — alto contraste sobre azul escuro */

.model-card__note {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-400);
  font-style: italic;
}
.model-card__note--electric { color: var(--electric); font-style: normal; }
.model-card__note--simple   { color: var(--electric); font-style: normal; font-size: .85rem; }
.model-card__note--gold     { color: var(--gold); font-style: normal; }

/* Card 2 destaque */
.model-card--2 {
  border-color: rgba(65,155,135,.35);
  box-shadow: 0 0 0 1px rgba(23,52,93,.12), var(--shadow-card);
}
.model-card--2:hover { border-color: rgba(65,155,135,.65); box-shadow: var(--shadow-electric); }

/* Card 4 destaque */
.model-card--4 {
  border-color: rgba(65,155,135,.25);
}
.model-card--4:hover { border-color: rgba(65,155,135,.55); box-shadow: var(--shadow-gold); }

.model-cta {
  text-align: center;
  padding: 40px;
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.model-cta p { font-size: 1.05rem; color: var(--text-100); font-weight: 600; margin: 0; }  /* melhorado: branco para versão dark */


/* ============================================================
   SEÇÃO: DINHEIRO NA MESA
   ============================================================ */
.money-section {
  background: var(--bg-900);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.money-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(65,155,135,.06) 0%, transparent 70%);
  pointer-events: none;
}
.money-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .money-inner { grid-template-columns: 1fr 1fr; } }

.money-text .label-tag { margin-bottom: 16px; }
.money-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.money-text p { color: var(--text-200); margin-bottom: 16px; line-height: 1.75; font-size: .98rem; }  /* melhorado: maior contraste em money-section bg-900 */
.money-text p:last-of-type { margin-bottom: 32px; }

.money-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mstat {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
}
.mstat:hover { border-color: var(--bg-500); transform: translateY(-3px); }
.mstat--highlight {
  border-color: rgba(65,155,135,.35);
  background: linear-gradient(135deg, var(--bg-700), rgba(23,52,93,.15));
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
}
.mstat--highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(23,52,93,.20) 0%, transparent 70%);
  pointer-events: none;
}
.mstat__value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
}
.mstat__num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--electric);
  line-height: 1;
  font-family: var(--font);
}
.mstat--highlight .mstat__num { font-size: clamp(2rem, 4vw, 3rem); }
.mstat__unit {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--electric);
  font-family: var(--font);
  line-height: 1;
}
.mstat__label { font-size: .82rem; color: var(--text-300); line-height: 1.4; }  /* melhorado: maior contraste sobre money bg-900 */


/* ============================================================
   SEÇÃO: CLIENTE EV
   ============================================================ */
.client-section {
  background: #F8FAFC;
  padding: 96px 0;
}

/* Avatar central */
.client-profile {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.client-avatar {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.avatar-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--bg-600), var(--bg-500));
  border: 2px solid rgba(65,155,135,.40);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--electric);
  z-index: 3;
  box-shadow: var(--shadow-electric);
}
.avatar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(65,155,135,.20);
  animation: ringPulse 3s ease-in-out infinite;
}
.avatar-ring--1 { width: 170px; height: 170px; animation-delay: 0s; }
.avatar-ring--2 { width: 230px; height: 230px; animation-delay: .8s; border-color: rgba(23,52,93,.15); }
@keyframes ringPulse {
  0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .4; transform: translate(-50%,-50%) scale(1.04); }
}

/* Tags ao redor do avatar */
.avatar-tag {
  position: absolute;
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-200);
  white-space: nowrap;
  z-index: 4;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-card);
}
.avatar-tag i { color: var(--electric); }
.avatar-tag--tl { top: 10px;   left: -20px; }
.avatar-tag--tr { top: 10px;   right: -20px; }
.avatar-tag--bl { bottom: 20px; left: -20px; }
.avatar-tag--br { bottom: 20px; right: -20px; }

/* Facts */
.client-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}
.fact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: var(--t);
}
.fact-card:hover { border-color: rgba(65,155,135,.35); transform: translateX(4px); }
.fact-card--lit {
  border-color: rgba(65,155,135,.28);
  background: linear-gradient(135deg, var(--bg-700), rgba(23,52,93,.10));
}
.fact-card__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--electric-glow);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--electric);
  font-size: 1.05rem;
}
.fact-card__body strong { display: block; font-size: .95rem; color: var(--text-100); margin-bottom: 4px; }
.fact-card__body span  { font-size: .84rem; color: var(--text-300); line-height: 1.5; }  /* melhorado: maior contraste sobre bg-700 */

/* Cenários */
.scenarios { }
.scenarios__title { text-align: center; font-size: 1.35rem; margin-bottom: 28px; color: var(--text-100); }  /* melhorado: branco puro */
.scenarios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .scenarios__grid { grid-template-columns: repeat(3, 1fr); } }

.scenario {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
}
.scenario:hover { border-color: var(--bg-500); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.scenario--featured {
  border-color: rgba(65,155,135,.35);
  background: linear-gradient(160deg, var(--bg-700), rgba(23,52,93,.12));
  box-shadow: 0 0 0 1px rgba(23,52,93,.15);
}
.scenario--featured:hover { border-color: rgba(65,155,135,.55); box-shadow: var(--shadow-electric); }
.scenario__icon {
  width: 52px; height: 52px;
  background: var(--bg-600);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--electric);
  margin-bottom: 16px;
}
.scenario h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-100); }
.scenario p  { font-size: .88rem; color: var(--text-300); line-height: 1.65; margin-bottom: 18px; }  /* melhorado: maior contraste sobre bg-700 */
.scenario__result {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--electric-glow);
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 700;
  color: var(--electric);
}
.scenario__result i { font-size: .9rem; }


/* ============================================================
   CALCULADORA
   ============================================================ */
.calc-section {
  background: var(--bg-900);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(23,52,93,.12) 0%, transparent 70%);
  pointer-events: none;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) { .calc-wrapper { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; } }

/* Controles */
.calc-controls {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-block label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-200);  /* melhorado: maior visibilidade dos labels */
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.calc-block label strong { color: var(--electric); font-weight: 700; text-transform: none; letter-spacing: 0; }

/* Segmented control */
.seg-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seg-btn {
  padding: 9px 16px;
  background: var(--bg-600);
  border: 1px solid var(--bg-500);
  border-radius: var(--r-pill);
  color: var(--text-400);
  font-size: .84rem;
  font-weight: 600;
  transition: var(--t);
  font-family: var(--font);
}
.seg-btn:hover  { border-color: var(--electric); color: var(--electric); }
.seg-btn.active { background: var(--electric-glow); border-color: var(--electric); color: var(--electric); }

/* Range */
.ev-range {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: var(--r-pill);
  background: linear-gradient(to right, var(--electric) 0%, var(--electric) 37.5%, var(--bg-500) 37.5%);
  outline: none;
  cursor: pointer;
  margin: 4px 0 8px;
}
.ev-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 14px rgba(65,155,135,.55);
  border: 3px solid var(--bg-900);
  cursor: pointer;
}
.range-extremes { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-300); }  /* melhorado */

/* Caixa de resumo */
.calc-summary-box {
  background: var(--bg-800);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.csb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
}
.csb-row span { color: var(--text-300); }  /* melhorado */
.csb-row strong { color: var(--electric); font-weight: 700; }
.csb-row--note { color: var(--text-400); font-size: .76rem; gap: 6px; justify-content: flex-start; border-top: 1px solid var(--bg-600); padding-top: 10px; }
.csb-row--note i { color: var(--text-400); }

/* Resultados */
.calc-results {
  background: var(--bg-700);
  border: 1px solid rgba(65,155,135,.28);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 0 1px rgba(23,52,93,.12), var(--shadow-card);
}

.calc-main-result {
  text-align: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--bg-800), rgba(23,52,93,.12));
  border: 1px solid rgba(65,155,135,.28);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cmr-label { font-size: .78rem; font-weight: 700; color: var(--text-300); text-transform: uppercase; letter-spacing: .06em; }  /* melhorado */
.cmr-value { font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 900; color: var(--electric); line-height: 1; font-family: var(--font); }
.cmr-sub  { font-size: .82rem; color: var(--text-300); }  /* melhorado */
.cmr-sub strong { color: var(--electric); }

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.crg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-800);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.crg-item i { font-size: 1.2rem; color: var(--text-300); flex-shrink: 0; }  /* melhorado */
.crg-item div { display: flex; flex-direction: column; gap: 2px; }
.crg-item span { font-size: .72rem; color: var(--text-300); text-transform: uppercase; letter-spacing: .04em; }  /* melhorado */
.crg-item strong { font-size: 1rem; font-weight: 700; color: var(--text-100); font-family: var(--font); }
.crg-item--green i { color: var(--electric); }
.crg-item--green strong { color: var(--electric); }
.crg-item--orange i { color: var(--orange); }

.calc-disclaimer {
  font-size: .76rem;
  color: var(--text-400);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--bg-800);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--electric);
}
.calc-disclaimer i { color: var(--electric); flex-shrink: 0; margin-top: 1px; }


/* ============================================================
   PROCESSO
   ============================================================ */
.process-section {
  background: var(--bg-800);
  padding: 96px 0;
}
.process-track {
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  position: relative;
}
.ps-line {
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--bg-600), transparent);
}
.process-step--last .ps-line { display: none; }
.ps-dot {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: var(--bg-600);
  border: 2px solid var(--bg-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  color: var(--text-200);  /* melhorado: branco azulado sobre bg-600 */
  font-family: var(--font);
  z-index: 2;
  transition: var(--t);
}
.ps-dot--we   { background: var(--electric-glow); border-color: rgba(65,155,135,.55); color: var(--electric); box-shadow: var(--shadow-electric); }
.ps-dot--gold { background: var(--gold-glow);     border-color: rgba(65,155,135,.55); color: var(--gold); box-shadow: var(--shadow-gold); }

.ps-content {
  padding: 4px 0 40px;
}
.ps-content h3 { font-size: 1.05rem; color: var(--text-100); margin-bottom: 8px; }
.ps-content h3 i { color: var(--electric); margin-right: 6px; font-size: .9rem; }
.ps-content p  { font-size: .88rem; color: var(--text-300); line-height: 1.65; margin-bottom: 12px; }  /* melhorado: maior contraste sobre process bg-800 */

.ps-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.ps-tag--you { background: rgba(65,155,135,.12); color: var(--orange); border: 1px solid rgba(65,155,135,.2); }
.ps-tag--we  { background: var(--electric-glow); color: var(--electric); border: 1px solid rgba(65,155,135,.30); }
.ps-tag--gold{ background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(65,155,135,.30); }

.process-cta { text-align: center; }


/* ============================================================
   FIT PILLS
   ============================================================ */
.fit-section {
  background: #FFFFFF;
  padding: 80px 0;
}
.fit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.fit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-300);
  transition: var(--t);
  cursor: default;
}
.fit-pill:hover { border-color: rgba(65,155,135,.50); color: var(--electric); transform: translateY(-2px); }
.fit-pill--lit {
  background: var(--electric-glow);
  border-color: rgba(65,155,135,.35);
  color: var(--electric);
}
.fit-pill i { font-size: .9rem; }


/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-800);
  padding: 96px 0;
}
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--bg-500); }
.faq-item.open  { border-color: rgba(65,155,135,.45); }  /* corrigido: era verde antigo, agora soft-blue */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-200);
  transition: var(--t);
  font-family: var(--font);
}
.faq-q:hover { color: var(--text-100); }
.faq-item.open .faq-q { color: var(--electric); }
.faq-icon { flex-shrink: 0; color: var(--text-300); transition: transform .3s ease, color .3s; font-size: .8rem; }  /* melhorado: maior contraste */
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--electric); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; }
.faq-a p { font-size: .9rem; color: var(--text-300); line-height: 1.75; }  /* melhorado: maior contraste sobre faq bg-800 */
.faq-a strong { color: #7bcfc4; }  /* azul claro acessível sobre fundo azul escuro bg-700 */


/* ============================================================
   FORM
   ============================================================ */
.form-section {
  background: #F1F5F9;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) { .form-section__inner { grid-template-columns: 1fr 1fr; } }

/* Lado esquerdo */
.form-left .label-tag { margin-bottom: 16px; }
.form-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.form-left > p { color: var(--text-300); margin-bottom: 32px; line-height: 1.7; }

.form-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.form-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-200);
  font-weight: 500;
}
.form-perks li i { color: var(--electric); width: 16px; }

/* Mini resumo do modelo */
.form-model-recap {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fmr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-600);
}
.fmr-row:last-child { border-bottom: none; }
.fmr-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-400);
  padding: 4px 10px;
  background: var(--bg-800);
  border-radius: var(--r-sm);
}
.fmr-label--we   { color: var(--electric); background: var(--electric-glow); }
.fmr-label--gold { color: var(--gold);     background: var(--gold-glow); }
.fmr-val { font-size: .92rem; font-weight: 600; color: var(--text-200); }

/* Formulário */
.form-right { }
.ev-form {
  background: var(--bg-700);
  border: 1px solid var(--bg-600);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ev-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ev-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .ev-form__row { grid-template-columns: 1fr 1fr; } }

.ev-form__group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.req { color: var(--electric); }

.ev-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ev-input-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--text-400);
  font-size: .88rem;
  pointer-events: none;
  z-index: 1;
}
.ev-input-wrap input,
.ev-input-wrap select {
  width: 100%;
  padding: 13px 16px 13px 40px;
  background: var(--bg-800);
  border: 1px solid var(--bg-500);
  border-radius: var(--r-md);
  font-size: .95rem;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-100);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.ev-input-wrap input::placeholder { color: var(--text-400); }
.ev-input-wrap input:focus,
.ev-input-wrap select:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(65,155,135,.18);  /* corrigido: era rgba verde antigo */
}
.ev-input-wrap input.error,
.ev-input-wrap select.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}
.ev-input-wrap--select::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-400);
  pointer-events: none;
}
.ev-input-wrap--select select { padding-right: 40px; }

/* Options do select */
.ev-input-wrap select option { background: var(--bg-700); color: var(--text-100); }
.ev-input-wrap select:invalid,
.ev-input-wrap select option[value=""] { color: var(--text-400); }

.ev-error { font-size: .76rem; color: #EF4444; font-weight: 600; min-height: 14px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
  margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(65,155,135,.40); }
.btn-loader { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; display: none; flex-shrink: 0; }
.btn-loader.visible { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-privacy { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .76rem; color: var(--text-400); text-align: center; }
.form-privacy i { color: var(--electric); }

/* Sucesso */
.form-success { text-align: center; padding: 48px 20px; }
.fs-icon { font-size: 3.5rem; color: var(--blue); margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; color: #0F172A; margin-bottom: 10px; }
.form-success p  { color: #475569; font-size: .95rem; line-height: 1.6; }
.form-success strong { color: var(--blue); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  /* Casa com o navy do PNG da logo — logo grande aparece sem moldura */
  background: #0F245D !important;
  border-top: 1px solid var(--bg-600);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bg-600);
}
@media (min-width: 640px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; } }

.footer__brand p { font-size: .87rem; color: var(--text-400); line-height: 1.65; max-width: 260px; margin-top: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  background: var(--bg-600);
  border: 1px solid var(--bg-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-400);
  font-size: .95rem;
  transition: var(--t);
}
.footer__social a:hover { background: var(--electric-glow); border-color: rgba(65,155,135,.50); color: var(--electric); transform: translateY(-2px); }  /* corrigido: era rgba verde antigo */

.footer__col h4 {
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-200);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li { display: flex; align-items: flex-start; gap: 8px; font-size: .87rem; color: var(--text-300); }  /* melhorado: maior contraste sobre footer bg-800 */
.footer__col ul li a { color: var(--text-300); transition: color var(--t); }  /* melhorado: maior contraste */
.footer__col ul li a:hover { color: var(--electric); }
.footer__col--contact li i { color: var(--electric); margin-top: 2px; flex-shrink: 0; width: 14px; font-size: .85rem; }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p { font-size: .78rem; color: var(--text-300); }  /* melhorado: maior contraste */


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--electric);
  color: var(--bg-900);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: var(--t);
  box-shadow: var(--shadow-electric);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
.header__nav { display: none; }
.btn-header-cta { display: none; }
.hamburger { display: flex; }
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .btn-header-cta { display: inline-flex; }
  .hamburger { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-primary,
  .hero__actions .btn-ghost { justify-content: center; }
  .model-cta { flex-direction: column; align-items: center; text-align: center; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .client-avatar { width: 220px; height: 220px; }
  .avatar-tag--tl, .avatar-tag--bl { left: -10px; }
  .avatar-tag--tr, .avatar-tag--br { right: -10px; }
  .ev-form { padding: 24px 18px; }
  .money-stats { grid-template-columns: 1fr; }
  .scenarios__grid { grid-template-columns: 1fr; }
  .calc-controls { padding: 20px 16px; }
  .calc-results  { padding: 20px 16px; }
  .process-track { max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-section__inner { gap: 32px; }
}

/* ============================================================
   DOBRAS CLARAS — overrides de cor para seções com fundo branco/claro
   Seções: .model-section | .client-section | .fit-section | .form-section
   ============================================================ */

/* Títulos e textos nas dobras claras */
.model-section h2,
.model-section h3,
.model-section h4,
.client-section h2,
.client-section h3,
.client-section h4,
.fit-section h2,
.fit-section h3,
.fit-section h4 {
  color: #0F172A;
}
.model-section p,
.client-section p,
.fit-section p {
  color: #475569;
}
/* Garante que strong em dobras claras seja legível */
.model-section strong,
.client-section strong,
.fit-section strong {
  color: #1E293B;
}
.model-section .label-tag,
.client-section .label-tag,
.fit-section .label-tag {
  background: rgba(23,52,93, 0.10);
  border-color: rgba(65,155,135,0.28);
  color: var(--blue);
}
.model-header p { color: #475569; }

/* Cards do modelo — light */
.model-section .model-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.model-section .model-card:hover {
  border-color: rgba(65,155,135,.35);
  box-shadow: 0 8px 32px rgba(23,52,93,.15);
}
.model-section .model-card--2 {
  background: #F0F4FF;
  border-color: rgba(65,155,135,.30);
  box-shadow: 0 4px 20px rgba(23,52,93,.15);
}
.model-section .model-card--2:hover {
  border-color: rgba(65,155,135,.55);
}
.model-section .model-card--4 {
  background: #f0fafa;
  border-color: rgba(65,155,135,.25);
}
.model-section .model-card__num {
  color: rgba(0,0,0,.05);
}
.model-section .model-card h3 { color: #0F172A; }
.model-section .model-card ul li { color: #475569; }
.model-section .model-card ul li i { color: var(--blue); }
.model-section .model-card__icon {
  background: #F1F5F9;
  color: #64748B;
}
.model-section .model-card__icon--electric {
  background: rgba(23,52,93,.12);
  color: var(--blue);
}
.model-section .model-card__icon--gold {
  background: rgba(65,155,135,.10);
  color: var(--orange);
}
.model-section .model-card__note { color: #94A3B8; }
.model-section .model-card__note--electric { color: var(--blue); }
.model-section .model-card__note--simple   { color: var(--blue); }
.model-section .model-card__note--gold     { color: var(--orange); }
.model-section .model-cta {
  background: #F8FAFC;
  border-color: #E2E8F0;
}
.model-section .model-cta p { color: #1E293B; }

/* Seção cliente — light */
.client-section .section-sub { color: #475569; }
.client-section .fact-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.client-section .fact-card:hover {
  border-color: rgba(65,155,135,.30);
}
.client-section .fact-card--lit {
  background: #F0F4FF;
  border-color: rgba(65,155,135,.25);
}
.client-section .fact-card__icon {
  background: rgba(23,52,93,.12);
  color: var(--blue);
}
.client-section .fact-card__body strong { color: #0F172A; }
.client-section .fact-card__body span   { color: #64748B; }
.client-section .avatar-circle {
  background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
  border-color: rgba(65,155,135,.30);
  color: var(--blue);
}
.client-section .avatar-ring {
  border-color: rgba(65,155,135,.15);
}
.client-section .avatar-ring--2 { border-color: rgba(23,52,93,.10); }
.client-section .avatar-tag {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #334155;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.client-section .avatar-tag i { color: var(--blue); }
.client-section .scenarios__title { color: #1E293B; }
.client-section .scenario {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.client-section .scenario:hover {
  border-color: rgba(65,155,135,.30);
  box-shadow: 0 8px 28px rgba(23,52,93,.12);
}
.client-section .scenario--featured {
  background: #F0F4FF;
  border-color: rgba(65,155,135,.30);
  box-shadow: 0 4px 20px rgba(23,52,93,.12);
}
.client-section .scenario--featured:hover {
  border-color: rgba(65,155,135,.55);
}
.client-section .scenario__icon {
  background: #F1F5F9;
  color: var(--blue);
}
.client-section .scenario h4 { color: #0F172A; }
.client-section .scenario p  { color: #64748B; }
.client-section .scenario__result {
  background: rgba(23,52,93,.10);
  color: var(--blue);
}

/* Seção quem pode — light */
.fit-section .section-label h2 { color: #0F172A; }
.fit-section .fit-pill {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #475569;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.fit-section .fit-pill:hover {
  border-color: rgba(65,155,135,.40);
  color: var(--blue);
}
.fit-section .fit-pill--lit {
  background: #EEF2FF;
  border-color: rgba(65,155,135,.30);
  color: var(--blue);
}

/* Formulário — light */
.form-section::before {
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.form-section .label-tag {
  background: rgba(23,52,93,.10);
  border-color: rgba(65,155,135,.25);
  color: var(--blue);
}
.form-section .label-tag--dark {
  background: rgba(23,52,93,.08);
  border-color: rgba(23,52,93,.18);
  color: #64748B;
}
.form-section h2 { color: #0F172A; }
.form-section .form-left > p { color: #475569; }
.form-section .form-perks li { color: #334155; }
.form-section .form-perks li i { color: var(--blue); }
.form-section .form-model-recap {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-section .fmr-label { background: #F1F5F9; color: #64748B; }
.form-section .fmr-label--we { background: rgba(23,52,93,.10); color: var(--blue); }
.form-section .fmr-label--gold { background: rgba(65,155,135,.10); color: var(--gold); }
.form-section .fmr-val { color: #1E293B; }
.form-section .fmr-row { border-bottom-color: #E2E8F0; }
.form-section .ev-form {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.form-section .ev-form__group label { color: #475569; }
.form-section .ev-input-wrap input,
.form-section .ev-input-wrap select {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}
.form-section .ev-input-wrap input::placeholder { color: #94A3B8; }
.form-section .ev-input-wrap input:focus,
.form-section .ev-input-wrap select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,52,93,.14);
}
.form-section .ev-input-wrap > i { color: #94A3B8; }
.form-section .ev-input-wrap--select::after { border-top-color: #94A3B8; }
.form-section .form-privacy { color: #94A3B8; }
.form-section .form-privacy i { color: var(--blue); }
.form-section .req { color: var(--blue); }
.form-section .calc-disclaimer {
  background: #F1F5F9;
  border-left-color: var(--blue);
  color: #64748B;
}
.form-section .calc-disclaimer i { color: var(--blue); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 997;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--t);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

/* ============================================================
   VISUAL SECTION (SVG do carro/eletroposto + copy ao lado)
   ============================================================ */
.viz-section {
  background: #1b2b3e;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.viz-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(65,155,135,.08) 0%, transparent 70%);
  pointer-events: none;
}
.viz-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .viz-inner { grid-template-columns: 1fr 1.1fr; gap: 64px; }
}
.viz-copy .label-tag { margin-bottom: 18px; }
.viz-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  color: var(--text-100);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.viz-copy h2 .txt-electric {
  color: var(--orange);
}
.viz-copy > p {
  color: var(--text-300);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 28px;
}
.viz-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.viz-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-200);
  font-size: .97rem;
  font-weight: 600;
}
.viz-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: rgba(65,155,135,.14);
  color: var(--orange);
  border: 1px solid rgba(65,155,135,.35);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
  flex-shrink: 0;
}
.viz-art {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  background: var(--bg-800);
  align-self: center;
  line-height: 0;
}
.viz-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.viz-art:hover img { transform: scale(1.03); }

/* Gradient overlay sutil — integra a foto ao tom navy do site sem descaracterizar */
.viz-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,93,.08) 0%, rgba(15,36,93,0) 40%, rgba(15,36,93,.45) 100%);
  pointer-events: none;
}

/* Badge "Ativo" sobreposta à foto */
.viz-art__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(15,36,93,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(65,155,135,.55);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.viz-art__led {
  width: 8px; height: 8px;
  background: #419b87;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(65,155,135,.85);
  animation: viz-pulse 1.6s ease-in-out infinite;
}
@keyframes viz-pulse {
  0%,100% { opacity: 1;   transform: scale(1); }
  50%     { opacity: .35; transform: scale(.85); }
}

/* ============================================================
   SECTION DIVIDER (linha decorativa entre seções)
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-600), transparent);
  margin: 0;
}


/* ============================================================
   CONTRASTE — Correções específicas por componente em fundos escuros
   Garantia WCAG AA mínimo 4.5:1 para texto normal, 3:1 para grande
   ============================================================ */

/* ── Hero (bg-900 #0D2850) ────────────────────────────────── */
.hero__sub em { color: #7bcfc4; font-style: normal; font-weight: 700; }
/* "sem nenhum custo" — laranja claro para alto contraste sobre navy */

/* ── Money Section (bg-900 #0D2850) ───────────────────────── */
.money-text h2 { color: #FFFFFF; }
.money-text .txt-electric { color: #7bcfc4; }
/* "gerando zero" — azul claro acessível */

.mstat__num { color: #419b87; }
/* números de estatística em ouro — alto contraste sobre azul */
.mstat__unit { color: #419b87; }
.mstat--highlight .mstat__num { color: #FFFFFF; }
/* destaque "R$ 0" — branco puro para máximo impacto */

/* ── Model Cards (bg-700 #20406C) — escuros por padrão ───── */
/* (dobra clara já tem overrides; aqui garante a versão escura) */
.money-section .model-card ul li,
.process-section .model-card ul li {
  color: var(--text-200);
}

/* ── Process Section (bg-800 #17345D) ────────────────────── */
.ps-content h3 { color: #FFFFFF; }
.ps-content h3 i { color: #419b87; }
/* ícones dos passos — ouro sobre azul */

.ps-tag--you { background: rgba(65,155,135,.18); color: #b2e8e0; border-color: rgba(65,155,135,.35); }
/* tag "Você faz isso" — laranja bem claro acessível */

.ps-tag--we  { background: rgba(65,155,135,.18); color: #b2e8e0; border-color: rgba(65,155,135,.40); }
/* tag "Nós fazemos" — azul bem claro acessível */

.ps-tag--gold{ background: rgba(65,155,135,.18); color: #b2e8e0; border-color: rgba(65,155,135,.40); }
/* tag "Você recebe" — ouro claro acessível */

.ps-dot--we   { background: rgba(65,155,135,.25); border-color: rgba(65,155,135,.65); color: #b2e8e0; }
/* número do dot "nós" — texto claro acessível */

.ps-dot--gold { background: rgba(65,155,135,.20); border-color: rgba(65,155,135,.60); color: #b2e8e0; }
/* número do dot "ouro" — amarelo claro acessível */

/* ── FAQ Section (bg-800 #17345D) ────────────────────────── */
.faq-q {
  color: var(--text-200);
}
/* perguntas do FAQ — branco azulado legível */

.faq-item.open .faq-q { color: #7bcfc4; }
/* pergunta aberta — azul claro sobre fundo azul escuro */

.faq-item.open .faq-icon { color: #7bcfc4; }

.faq-a strong { color: #7bcfc4; }
/* termos em negrito dentro das respostas */

/* ── Footer (bg-800 #17345D) ─────────────────────────────── */
.footer__brand > p { color: var(--text-300); }
/* descrição da marca — muted melhorado */

.footer__col h4 { color: #FFFFFF; }
/* títulos das colunas — branco puro */

.footer__col--contact li { color: var(--text-300); }
/* contatos — muted melhorado */

.footer__col--contact li a { color: var(--text-300); }
.footer__col--contact li a:hover { color: #7bcfc4; }
/* links de contato — hover azul claro */

.footer__col--contact li i { color: #419b87; }
/* ícones de contato — ouro para destaque */

.footer__social a { color: var(--text-300); }
/* ícones sociais — muted melhorado */

/* ── Cenários em dark (client-section bg-800 mas card bg-700) */
/* Já cobertos acima via .client-section .scenario h4/.scenario p */

/* ── Fact Cards em dark ───────────────────────────────────── */
/* Já cobertos via .fact-card__body */

/* ── Float Tags (hero, bg-700) ────────────────────────────── */
.float-tag { color: var(--text-200); }
.float-tag i { color: #419b87; }
/* ícones das tags flutuantes — ouro para destaque */

/* ── Avatar Tags (client-section — dobra clara) ──────────── */
/* já cobertos em .client-section .avatar-tag */

/* ── Correção: bullets em modelo dark (se mostrar escuro) ─── */
.model-card ul li i {
  color: #419b87;  /* ouro — alto contraste sobre bg-700 azul */
}
/* Dobra clara restaura azul */
.model-section .model-card ul li i { color: var(--blue); }

/* ── Seção de cenários dentro de client-section (light) ───── */
.client-section .scenario__result {
  background: rgba(23,52,93,.12);
  color: #17345D;
  font-weight: 700;
}
/* resultado dos cenários — azul escuro sobre fundo azul muito claro */

/* ── Form Section (bg #F1F5F9) ───────────────────────────── */
/* form-section overrides já extensos acima, complementos: */
.form-section .ev-form__group label { color: #334155; font-weight: 700; }
/* labels do formulário — slate escuro sobre branco */

.form-section .ev-input-wrap > i { color: #64748B; }
/* ícones dos inputs — cinza médio visível */

/* ── Scrolled Header (bg rgba(8,13,20,.96)) ──────────────── */
.header.scrolled .header__nav a { color: var(--text-200); }
/* garante que os links do nav sejam claros quando header scrollado */

/* ── Mobile Nav (bg-700 #20406C) ─────────────────────────── */
.mobile-nav__links a i { color: #419b87; }
/* ícones do menu mobile — ouro, visível sobre azul */

/* ── Back to top (electric bg) ───────────────────────────── */
.back-to-top { color: #FFFFFF; }
/* garante texto branco sobre soft-blue */
