/* ═══════════════════════════════════════════════════════════════════
   DS SOBRAL — Custom CSS Overrides + Glassmorphism + Components
   Brand: #005640 (Pantone 3308 C) · #84754E (Pantone 871 C)
   Built to complement Tailwind CSS via CDN
═══════════════════════════════════════════════════════════════════ */

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── PREFERS-REDUCED-MOTION — respeitar preferências de acessibilidade ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --green:      #005640;
  --green-l:    #006e52;
  --green-d:    #003d2e;
  --green-xs:   #e6f2ee;
  --gold:       #84754E;
  --gold-l:     #9d8c63;
  --gold-d:     #6b5e3e;
  --gold-xs:    #f5f0e8;
  --bg:         #F8F9FA;
  --text:       #111827;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --shadow-g:   0 6px 28px rgba(0,86,64,.38);
  --shadow-gl:  0 10px 40px rgba(0,86,64,.50);
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { overflow-x: hidden; }
a    { text-decoration: none; }

/* ─── SCROLLBAR — verde DS #005640 ─── */
::-webkit-scrollbar               { width: 8px; }
::-webkit-scrollbar-track         { background: #F3F4F6; }
::-webkit-scrollbar-thumb         { background: #005640; border-radius: 99px; border: 2px solid #F3F4F6; }
::-webkit-scrollbar-thumb:hover   { background: #006e52; }
/* Firefox */
* { scrollbar-color: #005640 #F3F4F6; scrollbar-width: thin; }

/* ─── FONT WEIGHTS (Tailwind classes) ─── */
.font-700  { font-weight: 700 !important; }
.font-800  { font-weight: 800 !important; }
.font-900  { font-weight: 900 !important; }


/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   NAVBAR — PulseIQ Style
═══════════════════════════════════════════ */
#navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: #E5E7EB;
  box-shadow: 0 1px 16px rgba(0,0,0,.07);
}

/* Navbar layout container */
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Nav list — sem bullets */
.navbar-row ul,
.navbar-row ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Nav link pills — texto simples, sem ícones */
.nav-link-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
  letter-spacing: 0;
}
.nav-link-pill:hover  { color: #005640; background: rgba(0,86,64,.06); }
.nav-link-pill.active { color: #005640; font-weight: 700; }

/* CTA dark pill — estilo PulseIQ "Contact" */
.nav-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: white;
  background: #005640;
  padding: 9px 20px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,86,64,.32);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.nav-cta-dark:hover {
  background: #006e52;
  box-shadow: 0 4px 20px rgba(0,86,64,.45);
  transform: translateY(-1px);
}
.nav-cta-dark:active { transform: translateY(0); }

/* Legacy green pill — kept for compatibility */
.nav-cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: white;
  background: #005640; padding: 9px 18px; border-radius: 100px;
  transition: all .22s var(--ease); white-space: nowrap;
}
.nav-cta-pill:hover { background: #006e52; transform: translateY(-1px); }

/* After scroll */
#navbar.scrolled .nav-cta-dark { background: #005640; }
/* Mobile nav links */
.mobile-nav-link { color: #374151 !important; }
.mobile-nav-link:hover { color: #111827 !important; }

/* After scroll — CTA stays bright */
#navbar.scrolled .nav-cta-pill {
  background: linear-gradient(135deg, #005640 0%, #007a58 100%);
}
/* ══════════════════════════════════════════════
   MOBILE MENU — Full-screen overlay
══════════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0b1a14;                    /* verde escuro DS */
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.is-open {
  transform: translateX(0);
}
/* Esconder em desktop (md: ≥ 768px) */
@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Botão fechar (X) */
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 18px;
  flex-shrink: 0;
  z-index: 10;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.15); }

/* Inner scroll container */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 72px 28px 40px;
  min-height: 100%;
  gap: 0;
}

/* Brand row */
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.mobile-menu-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Divider */
.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 16px 0;
}

/* Nav links */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  padding: 15px 4px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s, color .18s, padding-left .18s;
  letter-spacing: -0.01em;
}
.mobile-menu-link:hover {
  background: rgba(255,255,255,.05);
  padding-left: 12px;
  color: #4ade80;
}
.mobile-menu-link i:first-child {
  width: 28px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* CTA */
.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #005640;
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,86,64,.5);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.mobile-menu-cta:hover {
  background: #006e52;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,86,64,.65);
}

/* Social row */
.mobile-menu-social { margin-top: 4px; }
.mobile-social-row {
  display: flex;
  gap: 12px;
}
.mobile-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.mobile-social-btn:hover { transform: translateY(-3px); }
.mobile-social-fb { background: #1877F2; }
.mobile-social-ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.mobile-social-li { background: #0A66C2; }
.mobile-social-wa { background: #25D366; }

/* Footer */
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Hamburger — preto (navbar clara) */

/* Hamburger — preto no mobile (navbar é sempre clara nesta página) */
.hamburger-line {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #111827;
  border-radius: 99px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
  box-shadow: none;
}
/* Line 2 shorter for modern asymmetric look */
.hamburger-line:nth-child(2) {
  width: 20px;
  align-self: flex-end;
}
#navbar.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}
#navbar.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  width: 28px;
}
#navbar.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
}

.mobile-nav-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #6B7280;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--green); }


/* ═══════════════════════════════════════════
   LOGO — DS Oficial + Wordmark
═══════════════════════════════════════════ */

/* Ícone quadrado DS no navbar */
.nav-ds-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  display: block;
  transition: opacity .2s;
}
.nav-ds-icon:hover { opacity: .85; }

/* Ícone DS mobile (menor) */
.nav-ds-icon-sm {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  display: block;
}

/* Wordmark ao lado do ícone no navbar */
.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-wm-top {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-wm-main {
  font-size: 17px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.nav-wm-sub {
  font-size: 9px;
  font-weight: 600;
  color: #84754E;
  letter-spacing: .05em;
  line-height: 1;
}

/* Footer DS icon */
.footer-ds-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
  opacity: .95;
  transition: opacity .2s;
}
.footer-ds-icon:hover { opacity: 1; }

/* Legacy fallback */
.nav-logo-circle-sm {
  width: 32px; height: 32px;
  border-radius: 4px;
  background: #005247;
  border: 1px solid #84754E;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TRUST BAR — Bank Logos Real Images
═══════════════════════════════════════════ */
/* Cada linha de 4 logos — desktop */
.bank-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  padding: 6px 0;
  flex-wrap: wrap;
}

/* Desktop mostra linhas estáticas, esconde marquee */
.bank-logos-desktop { display: flex; }
.bank-logos-mobile  { display: none; }

/* Mobile: esconde linhas, mostra marquee */
@media (max-width: 767px) {
  .bank-logos-desktop { display: none !important; }
  .bank-logos-mobile  { display: block; }
}

/* ── MARQUEE infinito ── */
.bank-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

/* Fades laterais para suavizar os extremos */
.bank-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.bank-marquee-fade--left  { left: 0;  background: linear-gradient(to right, #F8F9FA, transparent); }
.bank-marquee-fade--right { right: 0; background: linear-gradient(to left,  #F8F9FA, transparent); }

/* Track — largura total dos 16 itens × (item_width + gap) */
.bank-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: bankMarquee 22s linear infinite;
}
.bank-marquee-track:hover { animation-play-state: paused; }

/* Item menor no marquee mobile */
.bank-marquee-track .bank-logo-item {
  min-width: 110px;
  max-width: 130px;
  height: 60px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.bank-marquee-track .bank-logo-img {
  max-height: 40px;
  max-width: 100px;
}

@keyframes bankMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 50% porque o track está duplicado */
}

.bank-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  min-width: 160px;
  max-width: 220px;
  height: 82px;          /* +40% de 64px → 90px; ajustado para 82 */
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.bank-logo-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  border-color: rgba(0,86,64,.2);
  transform: translateY(-2px);
}

.bank-logo-img {
  max-height: 58px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: none;           /* sempre a cores */
  transition: transform .25s ease, filter .25s ease;
}
.bank-logo-item:hover .bank-logo-img {
  filter: none;
  transform: scale(1.05);
}


/* ═══════════════════════════════════════════════════════
   HERO — PULSEIQ LAYOUT
   Outer bg: cinza #EBEBEB | Inset card: branco com radius
═══════════════════════════════════════════════════════ */

/* Outer page background — branco, sem margens laterais */
.hero-outer-bg {
  background: #ffffff;
  padding-top: 76px;   /* = navbar height */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero section ocupa 100% da largura */
.hero-section {
  width: 100%;
  flex: 1;
}
/* Card sem bordas nem radius — vai de limite a limite */
.hero-inset-card {
  background: #ffffff;
  position: relative;
  padding: 60px 72px 64px;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-inset-card { padding: 48px 40px 52px; }
}
@media (max-width: 640px) {
  .hero-outer-bg { padding-top: 76px; }
  .hero-inset-card { padding: 32px 20px 40px; }
}

/* Grid 48/52 — coluna direita ligeiramente maior para acomodar o mockup */
.hero-inset-grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 200px);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-inset-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }
}

/* ── LEFT column ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}
@media (max-width: 1024px) { .hero-left { padding-right: 0; } }

/* Headline — gigante, bold, preta */
.hero-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 20px;
}
/* .hero-headline-typing e .typing-ghost — definidos no bloco BdP Compliance abaixo */

/* Subtitle */
.hero-subtitle {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

/* CTA primária — preta/dark PulseIQ style */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: white;
  font-size: 14.5px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}
.hero-cta-primary:hover {
  background: #1f2937;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  transform: translateY(-2px);
}

/* CTA ghost — outline simples */
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #374151;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid #D1D5DB;
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.hero-cta-ghost:hover {
  border-color: #9CA3AF;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Rating row */
.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-stars { display: flex; gap: 2px; }
.hero-stars i { color: #F59E0B; font-size: 13px; }
.hero-rating-score {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}
.hero-rating-label {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

/* ── Stats inline — PulseIQ: números grandes, label pequena ── */
.hero-stats-inline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
}
.hero-stat-inline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}
.hero-stat-inline:first-child { padding-left: 0; }
.hero-stat-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 11.5px;
  color: #9CA3AF;
  font-weight: 600;
  line-height: 1.35;
  max-width: 100px;
}
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: #E5E7EB;
  flex-shrink: 0;
  margin: 4px 28px 0 0;
  align-self: flex-start;
}
@media (max-width: 480px) {
  .hero-stats-inline { gap: 0; }
  .hero-stat-inline { padding-right: 16px; }
  .hero-stat-divider { margin-right: 16px; }
  .hero-stat-num { font-size: 24px; }
}

/* Trust row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RIGHT column ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  overflow: visible;
}

/* ════════════════════════════════════════════
   HERO MOCKUP — imagem estática simples
════════════════════════════════════════════ */
.mockup-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,86,64,.14))
          drop-shadow(0 4px 12px rgba(0,0,0,.09));
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-right { padding: 12px 0; }
  .mockup-img { max-width: 480px; }
}
@media (max-width: 640px) {
  .hero-right { padding: 4px 0; }
  .mockup-img { max-width: 320px; }
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #E5E7EB;
  color: #6B7280;
  margin: 20px auto 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .2s var(--ease);
  text-decoration: none;
}
.hero-scroll-hint:hover { border-color: #9CA3AF; color: #374151; }

/* ══════════════════════════════════════════════
   TYPING EFFECT — hero title rotating phrases
══════════════════════════════════════════════ */
.typing-phrase-wrap {
  display: inline-block;
  min-height: 1.1em;
}
/* Legacy dark (kept) */
.typing-word {
  color: #86efac;
  position: relative;
  display: inline;
  font-style: italic;
  font-weight: 800;
}
.typing-cursor {
  display: inline-block;
  color: #34d399;
  font-weight: 200;
  font-style: normal;
  animation: blink .7s step-end infinite;
  margin-left: 1px;
}
/* .typing-word-clean e .typing-cursor-clean — definidos no bloco BdP Compliance abaixo */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

/* ══════════════════════════════════════════════
   CONTACT PREFERENCE — opções de contacto no form
══════════════════════════════════════════════ */
.contact-pref-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 2px;
}
.contact-pref-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-pref-option {
  cursor: pointer;
  display: block;
}
.contact-pref-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-pref-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  background: #F9FAFB;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.contact-pref-option input[type="radio"]:checked + .contact-pref-card {
  border-color: #005640;
  background: #f0f9f5;
  box-shadow: 0 0 0 3px rgba(0,86,64,.09);
}
.contact-pref-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6f2ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005640;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .18s ease;
}
.contact-pref-option input[type="radio"]:checked + .contact-pref-card .contact-pref-icon {
  background: #005640;
  color: #fff;
}
.contact-pref-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-pref-text strong {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}
.contact-pref-text span {
  font-size: 11px;
  color: #6B7280;
}
.contact-pref-check {
  font-size: 16px;
  color: #D1D5DB;
  transition: color .18s ease;
}
.contact-pref-option input[type="radio"]:checked + .contact-pref-card .contact-pref-check {
  color: #005640;
}

/* Sub-opções de período */
.contact-period-wrap {
  background: #f8fdfb;
  border: 1.5px solid #d1ead9;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 2px;
}
.contact-period-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #005640;
  margin-bottom: 8px;
}
.contact-period-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact-period-opt {
  cursor: pointer;
  display: block;
}
.contact-period-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-period-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border-radius: 8px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  text-align: center;
  transition: border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.contact-period-opt input[type="radio"]:checked + .contact-period-card {
  border-color: #005640;
  background: #f0f9f5;
}
.contact-period-card strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #111827;
}
.contact-period-card span {
  font-size: 10.5px;
  color: #9CA3AF;
}

/* Confirmação do tipo de contacto no resultado */
.result-contact-confirm {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f0f9f5;
  border: 1.5px solid #a7dfc4;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #003d2e;
  line-height: 1.4;
}
.result-contact-confirm i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   ODOMETER — poupança total acumulada
══════════════════════════════════════════════ */
/* Legacy dark (kept) */
.hero-odometer-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.hero-odometer-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.odometer-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  flex-shrink: 0; animation: pulseDot 1.8s ease-in-out infinite;
}
/* Clean odometer — inline block under stats */
.hero-odometer-wrap-clean {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid #E5E7EB;
  padding: 4px 0 4px 14px;
  margin-bottom: 20px;
}
.hero-odometer-label-clean {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.odometer-dot-clean {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  flex-shrink: 0; animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-odometer-display-clean {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.odometer-prefix-clean {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.04em;
}
.odometer-digits-clean {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.hero-odometer-sub-clean {
  font-size: 10.5px;
  color: #9CA3AF;
  font-weight: 600;
}

/* Hero badge */
.hero-badge { background: rgba(0,86,64,.2); border: 1px solid rgba(52,211,153,.2); }
.hero-badge-clean {
  background: rgba(0,86,64,.06);
  border: 1px solid rgba(0,86,64,.14);
}

/* Hero highlight text */
.hero-highlight { background: linear-gradient(135deg,#22c55e 0%,#4ade80 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-highlight-clean { color: #0d1f1a; position: relative; display: inline-block; }

/* Stats pills (legacy — kept) */
.hero-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hero-stat-pill { display:flex; flex-direction:column; align-items:center; justify-content:center; background:#fff; border:1px solid rgba(0,86,64,.12); border-radius:14px; padding:12px 8px; text-align:center; min-width:0; }
.stat-num-clean { font-size:clamp(18px,4vw,24px); font-weight:900; color:#005640; letter-spacing:-0.03em; line-height:1; }
.stat-lbl-clean { font-size:clamp(8px,2vw,10px); color:#6B7280; font-weight:700; margin-top:3px; text-transform:uppercase; letter-spacing:.03em; text-align:center; }
.stat-num-dark { font-size:clamp(18px,4vw,24px); font-weight:900; color:#4ade80; letter-spacing:-0.03em; line-height:1; }
.stat-lbl-dark { font-size:clamp(8px,2vw,10px); color:rgba(255,255,255,.45); font-weight:700; margin-top:3px; text-transform:uppercase; letter-spacing:.03em; text-align:center; }

/* Legacy stat (keep for compatibility) */
.stat-block { display: flex; flex-direction: column; }
.stat-num { font-size: clamp(22px,2.5vw,30px); font-weight: 900; color: var(--green); letter-spacing: -0.03em; line-height: 1; }
.stat-lbl { font-size: 11px; color: #9CA3AF; font-weight: 700; margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }
.stat-divider { width: 1px; height: 36px; background: #E5E7EB; flex-shrink: 0; }

/* ── CTA buttons (kept for other sections) ── */
.cta-primary-clean {
  display: inline-flex; align-items: center; gap: 9px;
  background: #111827; color: white; font-size: 15px; font-weight: 800;
  padding: 15px 30px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: all .25s var(--ease); white-space: nowrap; cursor: pointer;
  border: none; font-family: 'Nunito', sans-serif;
}
.cta-primary-clean:hover { background: #1f2937; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

.cta-ghost-clean {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: #374151; font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: 100px;
  border: 1.5px solid #D1D5DB;
  transition: all .2s var(--ease); cursor: pointer; font-family: 'Nunito', sans-serif;
}
.cta-ghost-clean:hover { border-color: #9CA3AF; color: #111827; }

/* ── Trust micro pills ── */
.trust-micro-clean {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #6B7280;
  background: #F9FAFB; border: 1px solid #E5E7EB;
  border-radius: 100px; padding: 5px 11px;
}

/* Legacy dark CTA — kept for compatibility */
.cta-primary-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #005640 0%, #006e52 100%);
  color: white; font-size: 15px; font-weight: 800;
  padding: 15px 30px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,86,64,.5);
  transition: all .25s var(--ease); white-space: nowrap;
  cursor: pointer; border: none; font-family: 'Nunito', sans-serif;
}
.cta-primary-dark:hover { transform: translateY(-2px); background: linear-gradient(135deg,#006e52,#008a66); }
.cta-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.8);
  font-size: 15px; font-weight: 700; padding: 14px 24px;
  border-radius: 100px; border: 1px solid rgba(255,255,255,.12);
  transition: all .2s var(--ease); cursor: pointer; font-family: 'Nunito', sans-serif;
}
.cta-ghost-dark:hover { border-color: rgba(0,86,64,.5); color: #4ade80; background: rgba(0,86,64,.15); }
.trust-micro-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px; padding: 5px 12px;
}

/* ── Quiz card clean — no hero card context usa border suave ── */
.quiz-card--clean {
  background: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  box-shadow:
    0 4px 24px rgba(0,0,0,.07),
    0 1px 3px rgba(0,0,0,.04) !important;
}

/* ══════════════════════════════════════════════════════════════
   RESULT / FORM / SUCCESS — light card (sim-quiz-card)
   Replaces old .quiz-card--clean context (migrated to .sim-quiz-card)
   ══════════════════════════════════════════════════════════════ */

/* ── Result: savings block ── */
.sim-quiz-card .result-savings-block {
  background: linear-gradient(135deg, rgba(0,86,64,.05) 0%, rgba(0,86,64,.03) 100%);
  border: 1.5px solid rgba(0,86,64,.14);
  border-radius: 14px;
  padding: 18px 20px 14px;
}
.sim-quiz-card .result-savings-label {
  color: #6B7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.sim-quiz-card .result-savings-min  { color: #005640; }
.sim-quiz-card .result-savings-max  { color: #111827; }
.sim-quiz-card .result-savings-max--hero {
  color: #005640 !important;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.sim-quiz-card .result-savings-sep    { color: #D1D5DB; font-size: 28px; font-weight: 300; }
.sim-quiz-card .result-savings-period { color: #9CA3AF; font-size: 16px; font-weight: 600; align-self: flex-end; margin-bottom: 4px; }
.sim-quiz-card .result-savings-bar-track  { background: rgba(0,86,64,.10); }
.sim-quiz-card .result-savings-bar-labels { color: rgba(0,86,64,.45); font-size: 10px; }

/* ── Result: analyzing ring ── */
.sim-quiz-card .result-analyzing-ring {
  background: rgba(0,86,64,.06);
  border: 2px solid rgba(0,86,64,.18);
}
.sim-quiz-card .result-loading-bar { background: rgba(0,86,64,.10); }

/* ── Result: eligible badge ── */
.sim-quiz-card .elig-dot { background: #005640; }
.sim-quiz-card .result-header-badge {
  background: rgba(0,86,64,.06);
  border: 1px solid rgba(0,86,64,.14);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

/* ── Result: annual projection ── */
.sim-quiz-card .result-annual-item {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
}
.sim-quiz-card .result-annual-num { color: #111827 !important; font-size: 18px; font-weight: 800; }
.sim-quiz-card .result-annual-lbl { color: #9CA3AF !important; font-size: 11px; }

/* ── Result: insight bullets ── */
.sim-quiz-card .result-insights {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
}
.sim-quiz-card .result-insight-item { color: #374151; font-size: 13px; }
.sim-quiz-card .result-insight-item i { color: #005640; }

/* ── Result: CTA button ── */
.sim-quiz-card .result-cta-btn {
  background: linear-gradient(135deg, #005640 0%, #006e52 100%);
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(0,86,64,.35);
}
.sim-quiz-card .result-cta-btn:hover {
  background: linear-gradient(135deg, #006e52 0%, #008a66 100%);
  box-shadow: 0 8px 32px rgba(0,86,64,.45);
  transform: translateY(-2px);
}

/* ── Back text link ── */
.sim-quiz-card .quiz-back-text { color: #9CA3AF; }
.sim-quiz-card .quiz-back-text:hover { color: #005640; }

/* ── Form: context pill ── */
.sim-quiz-card .form-context-pill {
  background: #f5f0e8;
  border: 1px solid rgba(132,117,78,.20);
  color: #374151;
}
.sim-quiz-card .form-context-pill i { color: #84754E; }

/* ── Form: urgency row ── */
.sim-quiz-card .form-urgency-row {
  background: rgba(0,86,64,.05);
  border: 1px solid rgba(0,86,64,.12);
  border-radius: 8px;
  padding: 8px 12px;
}
.sim-quiz-card .form-urgency-dot { background: #005640; }

/* ── Form: title ── */
.sim-quiz-card .form-title { color: #111827; }

/* ── Form: inputs ── */
.sim-quiz-card .lead-input,
.sim-quiz-card .lead-input--dark {
  background: #ffffff !important;
  border-color: #D1D5DB !important;
  color: #111827 !important;
}
.sim-quiz-card .lead-input::placeholder,
.sim-quiz-card .lead-input--dark::placeholder { color: #9CA3AF !important; }
.sim-quiz-card .lead-input:focus,
.sim-quiz-card .lead-input--dark:focus {
  border-color: rgba(0,86,64,.45) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0,86,64,.09) !important;
}

/* ── Form: legal checkboxes ── */
.sim-quiz-card .legal-checks,
.sim-quiz-card .legal-checks--dark {
  background: #F9FAFB !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 10px;
}
.sim-quiz-card .legal-checks .check-label,
.sim-quiz-card .legal-checks--dark .check-label { color: #6B7280 !important; }

/* ── Form: submit CTA ── */
.sim-quiz-card .submit-cta,
.sim-quiz-card .submit-cta--result {
  background: linear-gradient(135deg, #005640 0%, #006e52 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(0,86,64,.32) !important;
}
.sim-quiz-card .submit-cta:hover,
.sim-quiz-card .submit-cta--result:hover {
  background: linear-gradient(135deg, #006e52 0%, #008a66 100%) !important;
  box-shadow: 0 8px 32px rgba(0,86,64,.42) !important;
  transform: translateY(-2px);
}

/* ── Success: ring ── */
.sim-quiz-card .success-check-ring {
  background: rgba(0,86,64,.07);
  border: 2px solid rgba(0,86,64,.22);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Success: savings pill ── */
.sim-quiz-card .success-savings-pill {
  background: #f5f0e8;
  border: 1px solid rgba(132,117,78,.22);
  color: #374151;
  font-weight: 700;
}

/* ── Legacy .quiz-card--clean overrides (kept for compat) ── */
.quiz-card--clean .result-savings-block {
  background: rgba(0,86,64,.04) !important;
  border-color: rgba(0,86,64,.14) !important;
}
.quiz-card--clean .result-savings-label { color: #9CA3AF !important; }
.quiz-card--clean .result-savings-min { color: #005640 !important; }
.quiz-card--clean .result-savings-max { color: #111827 !important; }
.quiz-card--clean .result-savings-max--hero {
  color: #005640 !important;
  font-size: clamp(44px, 6vw, 64px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
}
.quiz-card--clean .result-savings-sep { color: #D1D5DB !important; }
.quiz-card--clean .result-savings-period { color: #9CA3AF !important; }
.quiz-card--clean .result-savings-bar-track { background: #F3F4F6 !important; }
.quiz-card--clean .result-savings-bar-labels { color: #9CA3AF !important; }
.quiz-card--clean .result-annual-item {
  background: #F9FAFB !important;
  border-color: #E5E7EB !important;
}
.quiz-card--clean .result-annual-num { color: #111827 !important; }
.quiz-card--clean .result-annual-lbl { color: #9CA3AF !important; }
.quiz-card--clean .result-insight-item { color: #4B5563 !important; }
.quiz-card--clean .result-loading-bar { background: #F3F4F6 !important; }
.quiz-card--clean .result-analyzing-ring {
  background: rgba(0,86,64,.06) !important;
  border-color: rgba(0,86,64,.18) !important;
}
.quiz-card--clean .quiz-back-text { color: #9CA3AF !important; }
.quiz-card--clean .quiz-back-text:hover { color: #374151 !important; }
.quiz-card--clean .form-context-pill {
  background: rgba(0,86,64,.06) !important;
  border-color: rgba(0,86,64,.16) !important;
  color: #374151 !important;
}
.quiz-card--clean .form-urgency-row { background: none !important; }
.quiz-card--clean .form-urgency-dot { background: #005640 !important; }
.quiz-card--clean .form-title { color: #111827 !important; }
.quiz-card--clean .lead-input--dark {
  background: #F9FAFB !important;
  border-color: #E5E7EB !important;
  color: #111827 !important;
}
.quiz-card--clean .lead-input--dark::placeholder { color: #9CA3AF !important; }
.quiz-card--clean .lead-input--dark:focus {
  border-color: rgba(0,86,64,.4) !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(0,86,64,.08) !important;
}
.quiz-card--clean .legal-checks--dark {
  background: #F9FAFB !important;
  border-color: #E5E7EB !important;
}
.quiz-card--clean .legal-checks--dark .check-label { color: #6B7280 !important; }
.quiz-card--clean .success-check-ring {
  background: rgba(0,86,64,.06) !important;
  border-color: rgba(0,86,64,.14) !important;
}
.quiz-card--clean .success-savings-pill {
  background: rgba(0,86,64,.05) !important;
  border-color: rgba(0,86,64,.12) !important;
}
.quiz-card--clean .elig-dot { background: #005640 !important; }
.quiz-card--clean .quiz-question { color: #0d1f1a !important; }
.quiz-card--clean .quiz-hint { color: #6B7280 !important; }
.quiz-card--clean .quiz-step-eyebrow .quiz-step-num { color: #005640 !important; }
.quiz-card--clean .quiz-step-eyebrow .quiz-step-of { color: #9CA3AF !important; }
.quiz-card--clean .quiz-opt {
  background: #F9FAFB;
  border-color: #E5E7EB;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-direction: row;
  min-height: 62px;
  transition: all .18s var(--ease);
}
.quiz-card--clean .quiz-opt:hover {
  background: rgba(0,86,64,.04);
  border-color: rgba(0,86,64,.28);
  color: #005640;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,86,64,.12);
}
.quiz-card--clean .quiz-opt.selected {
  background: rgba(0,86,64,.06);
  border-color: rgba(0,86,64,.40);
  color: #005640;
  box-shadow: 0 0 0 3px rgba(0,86,64,.08);
  transform: translateY(-1px);
}
.quiz-card--clean #progressLabel { color: #005640 !important; }
.quiz-card--clean .quiz-back { color: #9CA3AF !important; }
.quiz-card--clean .quiz-back:hover { color: #005640 !important; }

/* Clean form inputs */
.quiz-card--clean .lead-input {
  background: #F9FAFB !important;
  border-color: #E5E7EB !important;
  color: #111827 !important;
}
.quiz-card--clean .lead-input:focus {
  border-color: rgba(0,86,64,.5) !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(0,86,64,.10) !important;
}

/* Clean eligibility badge */
.quiz-card--clean .eligibility-badge {
  background: rgba(0,86,64,.05) !important;
  border-color: rgba(0,86,64,.15) !important;
}
.quiz-card--clean .eligibility-badge p { color: #0d1f1a !important; }
.quiz-card--clean .eligibility-badge .text-brand-green { color: #005640 !important; }

/* Clean small texts */
.quiz-card--clean .text-gray-400 { color: #9CA3AF !important; }
.quiz-card--clean .text-sm.text-gray-600 { color: #6B7280 !important; }
.quiz-card--clean .text-sm.text-gray-600 strong { color: #005640 !important; }
.quiz-card--clean .sim__disclaimer { color: #9CA3AF !important; }
.quiz-card--clean .check-label { color: #6B7280 !important; }

/* ── Quiz card dark (legacy) ── */
.quiz-card--dark {
  background: rgba(12,24,20,.75) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    0 0 0 1px rgba(0,86,64,.15),
    0 24px 80px rgba(0,0,0,.6),
    0 0 80px rgba(0,86,64,.08),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.quiz-card--dark .quiz-question { color: white; }
.quiz-card--dark .quiz-opt {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.09);
  color: rgba(255,255,255,.90);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-direction: row;
  min-height: 62px;
  transition: all .18s var(--ease);
}
.quiz-card--dark .quiz-opt:hover {
  background: rgba(0,86,64,.22);
  border-color: rgba(52,211,153,.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,86,64,.25), inset 0 1px 0 rgba(255,255,255,.06);
}
.quiz-card--dark .quiz-opt.selected {
  background: linear-gradient(135deg, rgba(0,86,64,.70) 0%, rgba(0,110,82,.55) 100%);
  border-color: rgba(52,211,153,.55);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0,86,64,.45), inset 0 1px 0 rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.quiz-card--dark #progressLabel { color: #4ade80 !important; }
.quiz-card--dark .quiz-back { color: rgba(255,255,255,.4); }
.quiz-card--dark .quiz-back:hover { color: #4ade80; }
.quiz-card--dark .slider-group__header label { color: rgba(255,255,255,.8) !important; }

/* Dark progress bar track */
.quiz-card--dark #progressBar {
  background: linear-gradient(90deg, #005640, #4ade80) !important;
  box-shadow: 0 0 8px rgba(74,222,128,.4);
}
.quiz-card--dark .w-full.h-1\.5 {
  background: rgba(255,255,255,.08) !important;
}

/* Dark form inputs */
.quiz-card--dark .lead-input {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: white !important;
}
.quiz-card--dark .lead-input::placeholder { color: rgba(255,255,255,.3) !important; }
.quiz-card--dark .lead-input:focus {
  border-color: rgba(0,86,64,.6) !important;
  background: rgba(255,255,255,.09) !important;
  box-shadow: 0 0 0 3px rgba(0,86,64,.2) !important;
}

/* Dark legal checks */
.quiz-card--dark .legal-checks {
  background: rgba(255,255,255,.03) !important;
  border-color: rgba(255,255,255,.07) !important;
}
.quiz-card--dark .check-label { color: rgba(255,255,255,.5) !important; }

/* Dark disclaimer */
.quiz-card--dark .sim__disclaimer { color: rgba(255,255,255,.3) !important; }

/* Dark text overrides */
.quiz-card--dark .text-gray-400 { color: rgba(255,255,255,.35) !important; }
.quiz-card--dark .text-xs { color: rgba(255,255,255,.35); }

/* Eligibility badge dark */
.quiz-card--dark .eligibility-badge {
  background: linear-gradient(135deg, rgba(0,86,64,.2), rgba(0,86,64,.3)) !important;
  border-color: rgba(0,86,64,.3) !important;
}
.quiz-card--dark .eligibility-badge p { color: white !important; }
.quiz-card--dark .eligibility-badge .text-gray-500 { color: rgba(255,255,255,.5) !important; }
.quiz-card--dark .eligibility-badge .text-brand-green { color: #4ade80 !important; }

/* Dark small text in form */
.quiz-card--dark .text-sm.text-gray-600 { color: rgba(255,255,255,.55) !important; }
.quiz-card--dark .text-sm.text-gray-600 strong { color: #4ade80 !important; }

/* Scroll hint dark */
.scroll-hint-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.scroll-hint-dark:hover { background: rgba(0,86,64,.3); color: #4ade80; }

/* Clean scroll hint */
.scroll-hint-clean {
  background: white;
  border: 1.5px solid rgba(0,86,64,.15);
  color: #005640;
  box-shadow: 0 2px 12px rgba(0,86,64,.12);
}
.scroll-hint-clean:hover { background: rgba(0,86,64,.06); border-color: rgba(0,86,64,.30); }


/* ═══════════════════════════════════════════
   BUTTONS — CTAs
═══════════════════════════════════════════ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 100px;
  box-shadow: var(--shadow-g);
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}
.cta-primary:hover {
  background: var(--green-l);
  box-shadow: var(--shadow-gl);
  transform: translateY(-2px);
}
.cta-primary:active { transform: translateY(0); }

.cta-xl { font-size: 17px; padding: 18px 40px; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid #E5E7EB;
  transition: all .2s var(--ease);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.cta-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-xs); }


/* ═══════════════════════════════════════════
   SIMULADOR — Layout 2 colunas ComparaJá style
═══════════════════════════════════════════ */

/* Section wrapper */
.sim-section {
  background: #F2F4F6;
  padding: 80px 0 96px;
  position: relative;
}

/* Inner container */
.sim-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header */
.sim-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* 2-column layout */
.sim-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* ── Quiz column ── */
.sim-quiz-col { min-width: 0; }

.sim-quiz-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid #E8EAED;
  overflow: hidden;
}

/* Green accent bar at top */
.sim-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #34d399);
  border-radius: 20px 20px 0 0;
}

/* Progress bar row */
.sim-progress-wrap {
  margin-bottom: 28px;
}
.sim-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sim-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s, opacity .2s;
  font-family: 'Nunito', sans-serif;
}
.sim-back-btn:hover { opacity: .75; }
.sim-back-btn[style*="visibility:hidden"] { pointer-events: none; }

/* Reset button — canto direito da barra de progresso */
.sim-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #9CA3AF;
  background: none;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  cursor: pointer;
  padding: 3px 10px;
  transition: color .2s, border-color .2s;
  font-family: 'Nunito', sans-serif;
}
.sim-reset-btn:hover {
  color: #005640;
  border-color: #005640;
}

.sim-step-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sim-progress-track {
  height: 6px;
  background: #EEF0F2;
  border-radius: 100px;
  overflow: hidden;
}
.sim-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #34d399);
  border-radius: 100px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* Question */
.sim-question {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 8px;
  font-family: 'Nunito', sans-serif;
}
.sim-hint {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Nunito', sans-serif;
}
.sim-hint i { color: #D1D5DB; font-size: 11px; }

/* Options list — full width, 1 per row */
.sim-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: all .18s var(--ease);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.sim-opt::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transition: transform .18s var(--ease);
  border-radius: 12px 0 0 12px;
}
.sim-opt:hover {
  border-color: rgba(0,86,64,.35);
  background: var(--green-xs);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0,86,64,.09);
}
.sim-opt:hover::before { transform: scaleY(1); }

.sim-opt.selected {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-xs) 0%, rgba(0,86,64,.08) 100%);
  box-shadow: 0 4px 16px rgba(0,86,64,.12);
}
.sim-opt.selected::before { transform: scaleY(1); }

/* Icon circle */
.sim-opt-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-xs);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.sim-opt:hover .sim-opt-icon,
.sim-opt.selected .sim-opt-icon {
  background: var(--green);
  color: #fff;
}

/* Label + sub */
.sim-opt-label {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: #1F2937;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sim-opt-sub {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
}
.sim-opt.selected .sim-opt-label { color: var(--green-d); }

/* Arrow chevron */
.sim-opt-arrow {
  color: #D1D5DB;
  font-size: 11px;
  flex-shrink: 0;
  transition: color .18s, transform .18s;
}
.sim-opt:hover .sim-opt-arrow,
.sim-opt.selected .sim-opt-arrow {
  color: var(--green);
  transform: translateX(3px);
}

/* Banks: logo instead of icon */
.sim-options--banks .sim-opt { padding: 12px 18px; }
.sim-bank-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  background: #f8f8f8;
  padding: 2px;
}

/* Quiz panel base */
.quiz-question { /* legacy compat — not used in new layout */ }
.quiz-options   { /* legacy compat */ }
.quiz-opt       { /* legacy compat */ }

.quiz-panel {
  animation: simSlideIn .28s var(--ease);
}
.quiz-panel.hidden { display: none; }

@keyframes simSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Back text button (result/form) — light card */
.quiz-back-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0 0;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  transition: color .2s;
}
.quiz-back-text:hover { color: var(--green); }

/* ── Sidebar ── */
.sim-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.sim-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid #E8EAED;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.sim-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}
.sim-sidebar-title i { font-size: 14px; }

.sim-sidebar-sub {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 14px;
  font-family: 'Nunito', sans-serif;
}

/* Summary rows */
.sim-summary-rows { display: flex; flex-direction: column; gap: 0; }
.sim-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  gap: 10px;
}
.sim-summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.sim-summary-key {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}
.sim-summary-val {
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  font-family: 'Nunito', sans-serif;
  text-align: right;
  transition: color .25s, transform .2s;
}
.sim-summary-val.updated {
  color: var(--green);
  transform: scale(1.04);
}

/* Partner logos grid */
.sim-partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.sim-partner-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #F8F9FA;
  border: 1px solid #EEEFF1;
  border-radius: 8px;
  padding: 6px;
  transition: transform .2s, box-shadow .2s;
}
.sim-partner-logo:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Trust items */
.sim-sidebar-trust {
  background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
  border-color: rgba(0,86,64,.12);
}
.sim-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,86,64,.07);
}
.sim-trust-item:last-child { border-bottom: none; padding-bottom: 0; }
.sim-trust-item i {
  color: var(--green);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.sim-trust-item strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #374151;
  font-family: 'Nunito', sans-serif;
  line-height: 1.3;
}
.sim-trust-item span {
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  line-height: 1.3;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .sim-layout {
    grid-template-columns: 1fr;
  }
  .sim-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sim-sidebar-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .sim-section { padding: 56px 0 72px; }
  .sim-quiz-card { padding: 24px 20px 22px; border-radius: 16px; }
  .sim-sidebar { grid-template-columns: 1fr; }
  .sim-sidebar-card:last-child { grid-column: auto; }
  .sim-opt { padding: 12px 14px; gap: 12px; }
  .sim-opt-label { font-size: 14px; }
}

/* Legacy quiz-card--clean (still used by result/form/success steps) */
.quiz-card--clean {
  position: relative;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  padding: 32px 28px 24px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.09),
    0 2px 8px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.8);
}

/* Eligibility badge */
.eligibility-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,86,64,.06), rgba(0,86,64,.10));
  border: 1px solid rgba(0,86,64,.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.elig-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}


/* ═══════════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════════ */
.lead-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--text);
  background: white;
  outline: none;
  transition: all .2s var(--ease);
}
.lead-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,86,64,.10);
}
.lead-input::placeholder { color: #9CA3AF; font-weight: 500; }
.lead-input.error { border-color: #EF4444; }

.err-msg {
  font-size: 11px;
  color: #EF4444;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.err-msg.hidden { display: none; }

/* Legal checkboxes */
.legal-checks {
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 11px;
  color: #6B7280;
  font-weight: 600;
  line-height: 1.5;
}
.check-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #D1D5DB;
  border-radius: 4px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-box:focus { outline: 2px solid rgba(0,86,64,.3); }

/* Submit button */
.submit-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-l) 100%);
  color: white;
  font-size: 14px;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-g);
  transition: all .25s var(--ease);
  font-family: 'Nunito', sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.submit-cta:hover {
  box-shadow: var(--shadow-gl);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--green-l) 0%, var(--green) 100%);
}
.submit-cta:active { transform: translateY(0); }
.submit-cta:disabled { opacity: .7; cursor: not-allowed; transform: none; }


/* ═══════════════════════════════════════════
   QUIZ — Dark card override (dentro do hero)
═══════════════════════════════════════════ */
.quiz-card--dark {
  background: rgba(10, 20, 16, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    0 24px 64px rgba(0,0,0,.45),
    0 4px 16px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.07);
}

/* Override text colours inside dark card */
.quiz-card--dark .quiz-question {
  color: white;
}
.quiz-card--dark .quiz-hint {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  text-align: center;
  margin-top: -12px;
  margin-bottom: 18px;
}

/* Step eyebrow (01 / 04) */
.quiz-step-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  justify-content: center;
}
.quiz-step-num {
  font-size: 34px;
  font-weight: 900;
  color: rgba(255,255,255,.10);
  line-height: 1;
  letter-spacing: -0.04em;
}
.quiz-step-of {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.18);
}

/* Dark quiz options — sem emojis, texto branco destacado */
.quiz-card--dark .quiz-opt {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-direction: row;
  justify-content: center;
  min-height: 62px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}
/* Subtle left-side accent bar */
.quiz-card--dark .quiz-opt::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  border-radius: 2px;
  background: rgba(52,211,153,0);
  transition: background .2s ease;
}
.quiz-opt-label {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.quiz-card--dark .quiz-opt:hover {
  background: rgba(0,86,64,.22);
  border-color: rgba(52,211,153,.30);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,86,64,.28), inset 0 1px 0 rgba(255,255,255,.06);
}
.quiz-card--dark .quiz-opt:hover::before {
  background: rgba(52,211,153,.7);
}
.quiz-card--dark .quiz-opt.selected {
  background: linear-gradient(135deg, rgba(0,86,64,.72) 0%, rgba(0,110,82,.55) 100%);
  border-color: rgba(52,211,153,.50);
  color: #ffffff;
  box-shadow: 0 0 28px rgba(0,86,64,.45), inset 0 1px 0 rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.quiz-card--dark .quiz-opt.selected::before {
  background: #34d399;
}

/* Bank options grid (7 items) */
.quiz-options--banks {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.quiz-opt--bank {
  min-height: 48px;
  padding: 12px 8px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.quiz-opt--bank .quiz-opt-label {
  font-size: 13px;
  font-weight: 800;
}

/* Dark back button */
.quiz-card--dark .quiz-back {
  color: rgba(255,255,255,.30);
}
.quiz-card--dark .quiz-back:hover { color: #6ee7b7; }

/* Text-only back link (result/form screens) — dark card override */
.quiz-card--dark .quiz-back-text {
  color: rgba(255,255,255,.25);
}
.quiz-card--dark .quiz-back-text:hover { color: rgba(255,255,255,.55); }


/* ═══════════════════════════════════════════
   RESULT STEP — Analyzing animation (light card)
═══════════════════════════════════════════ */
.result-analyzing-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-xs);
  border: 2px solid rgba(0,86,64,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: resultPulse 1.6s ease-in-out infinite;
}
@keyframes resultPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,86,64,.20); }
  50%     { box-shadow: 0 0 0 12px rgba(0,86,64,.0); }
}

.result-loading-bar {
  width: 100%;
  max-width: 220px;
  height: 4px;
  background: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
}
.result-loading-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), #34d399);
  border-radius: 4px;
  transition: width .15s ease;
}


/* ═══════════════════════════════════════════
   RESULT CARD — Savings reveal (light card)
═══════════════════════════════════════════ */
.result-header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* Savings block — fundo verde claro DS */
.result-savings-block {
  background: linear-gradient(135deg, var(--green-xs) 0%, rgba(0,86,64,.06) 100%);
  border: 1.5px solid rgba(0,86,64,.18);
  border-radius: 16px;
  padding: 20px 18px 16px;
  margin-bottom: 14px;
  text-align: center;
}
.result-savings-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  opacity: .7;
}
.result-savings-range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.result-savings-min {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  color: var(--green-d);
  letter-spacing: -0.03em;
  line-height: 1;
}
.result-savings-sep {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0,86,64,.30);
}
.result-savings-max {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.result-savings-period {
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* Savings bar */
.result-savings-bar-wrap { margin-top: 14px; }
.result-savings-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(0,86,64,.10);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 5px;
}
.result-savings-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, #34d399 100%);
  border-radius: 6px;
  transition: width 1.1s cubic-bezier(.4,0,.2,1) .3s;
}
.result-savings-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(0,86,64,.45);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Annual row — light cards */
.result-annual-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.result-annual-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 12px;
}
.result-annual-item i { font-size: 18px; flex-shrink: 0; }
.result-annual-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.result-annual-lbl {
  font-size: 10px;
  color: #9CA3AF;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.2;
}

/* Insight bullets — legíveis no branco */
.result-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
}
.result-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
  line-height: 1.5;
  font-family: 'Nunito', sans-serif;
}
.result-insight-item i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--green);
}

/* Result CTA button */
.result-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,86,64,.38);
  transition: all .25s var(--ease);
  font-family: 'Nunito', sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.result-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.10) 0%, transparent 60%);
  pointer-events: none;
}
.result-cta-btn:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,86,64,.50);
}
.result-cta-btn:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   SECÇÃO CONTACTOS — Formulário simples de contacto
════════════════════════════════════════════════════════════════════ */

.contact-section {
  background: linear-gradient(160deg, #f0f7f4 0%, #e8f4ef 50%, #f5f5f5 100%);
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,86,64,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,86,64,.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Lado esquerdo ── */
.contact-left { padding-top: 8px; }

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,86,64,.08);
  color: #005640;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.contact-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}
.contact-title span { color: #005640; }

.contact-sub {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,86,64,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005640;
  font-size: 15px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
  transition: color .2s;
}
a.contact-info-value:hover { color: #005640; }

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  padding: 5px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.contact-trust-badge i { color: #005640; }

/* ── Lado direito — formulário ── */
.contact-right {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,86,64,.10), 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid rgba(0,86,64,.08);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  margin-bottom: 16px;
}
.contact-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.contact-required { color: #005640; }

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  background: #F9FAFB;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: 'Nunito', 'Inter', sans-serif;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(0,86,64,.5);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,86,64,.08);
}
.contact-field input.cf-error,
.contact-field select.cf-error,
.contact-field textarea.cf-error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.contact-err {
  font-size: 11px;
  color: #EF4444;
  font-weight: 700;
  margin-top: 5px;
}

.contact-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  margin-top: 4px;
}
.contact-gdpr input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #005640;
  cursor: pointer;
}
.contact-gdpr label {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.contact-gdpr label a {
  color: #005640;
  text-decoration: underline;
  font-weight: 700;
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #005640 0%, #006e52 100%);
  color: white;
  font-size: 15px;
  font-weight: 900;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,86,64,.30);
  transition: all .25s ease;
  font-family: 'Nunito', sans-serif;
  letter-spacing: .01em;
  margin-top: 18px;
}
.contact-submit-btn:hover {
  background: linear-gradient(135deg, #006e52 0%, #00855f 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,86,64,.40);
}
.contact-submit-btn:active { transform: translateY(0); }
.contact-submit-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.contact-spinner {
  width: 18px;
  height: 18px;
  animation: cfSpin 1s linear infinite;
}
@keyframes cfSpin { to { transform: rotate(360deg); } }

.contact-form-note {
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Estado de sucesso do formulário */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.contact-success.visible { display: flex; }
.contact-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f4ee, #d1ece0);
  border: 2px solid rgba(0,86,64,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.contact-success h3 {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: 'Nunito', sans-serif;
}
.contact-success p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 300px;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-section { padding: 56px 16px 64px; }
  .contact-right { padding: 28px 20px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-sub { max-width: 100%; }
}

/* ═══════════════════════════════════════════
   LEAD FORM (post-result) — light card version
═══════════════════════════════════════════ */
.form-context-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-xs);
  border: 1px solid rgba(132,117,78,.22);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
}
.form-context-pill i { font-size: 14px; flex-shrink: 0; color: var(--gold); }

.form-urgency-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  background: var(--green-xs);
  border: 1px solid rgba(0,86,64,.12);
  border-radius: 8px;
  padding: 8px 12px;
}
.form-urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.form-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}

/* Light inputs (replace dark overrides) */
.lead-input--dark {
  background: #ffffff !important;
  border-color: #D1D5DB !important;
  color: var(--text) !important;
}
.lead-input--dark::placeholder { color: #9CA3AF !important; }
.lead-input--dark:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(0,86,64,.10) !important;
  background: #ffffff !important;
}
.lead-input--dark.error { border-color: #EF4444 !important; }

/* Light legal checks */
.legal-checks--dark {
  background: #F9FAFB !important;
  border-color: #E5E7EB !important;
}
.legal-checks--dark .check-label {
  color: #6B7280 !important;
}

/* Result submit button variant */
.submit-cta--result {
  background: var(--green);
  box-shadow: 0 6px 28px rgba(0,86,64,.38);
  font-size: 13px;
}
.submit-cta--result:hover {
  background: var(--green-l);
  box-shadow: 0 10px 40px rgba(0,86,64,.50);
}

/* ═══════════════════════════════════════════
   SUCCESS STATE — light card
═══════════════════════════════════════════ */
.success-check-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-xs);
  border: 2px solid rgba(0,86,64,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn .45s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.success-savings-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-xs);
  border: 1px solid rgba(132,117,78,.20);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

/* ═══════════════════════════════════════════
   TRUST BAR — Gradient transition from dark
═══════════════════════════════════════════ */
.trust-bar-section {
  background: #F8F9FA;
  border-top: 1px solid #E5E7EB;
  padding-top: 48px;
}
.trust-bar-section .trust-bar__label {
  color: #9CA3AF !important;
  margin-bottom: 32px;
}

.bank-pill {
  font-size: 13px;
  font-weight: 800;
  color: #9CA3AF;
  padding: 8px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  letter-spacing: -.01em;
  transition: all .2s var(--ease);
  cursor: default;
}
.bank-pill:hover { border-color: var(--green); color: var(--green); }

.cert-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #6B7280;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}


/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: var(--green-xs);
  color: var(--green);
  border: 1px solid rgba(0,86,64,.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title em { color: var(--green); font-style: normal; }
.section-sub {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PROCESS CARDS
═══════════════════════════════════════════ */
.process-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .25s var(--ease);
  z-index: 1;
}
.process-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 48px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.process-card:hover .process-icon-wrap {
  background: var(--green);
  color: white;
}
.process-card:hover .process-icon-wrap i {
  color: white !important;
}

.process-num {
  font-size: 56px;
  font-weight: 900;
  color: #F3F4F6;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.process-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-xs);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all .25s var(--ease);
}
.process-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process-body {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
}
.process-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  margin-top: 18px;
  transition: gap .2s var(--ease);
}
.process-link:hover { gap: 10px; }


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s var(--ease);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: rgba(0,86,64,.2);
}
.testimonial-card .stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: #6B7280; line-height: 1.65; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; font-weight: 800; color: var(--text); }
.t-author span   { font-size: 12px; color: #9CA3AF; }


/* ═══════════════════════════════════════════
   REVIEWS SLIDER
═══════════════════════════════════════════ */
.reviews-slider-section { position: relative; }

.review-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.review-nav-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.reviews-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.reviews-slider-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
}

@media (max-width: 900px) {
  .review-slide {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .review-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.reviews-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   EBOOK SECTION
═══════════════════════════════════════════ */
.ebook-li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.ebook-li i { margin-top: 2px; flex-shrink: 0; font-size: 15px; }

.ebook-input {
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  color: white;
  outline: none;
  transition: all .2s var(--ease);
  width: 100%;
}
.ebook-input::placeholder { color: rgba(255,255,255,.4); }
.ebook-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(132,117,78,.25);
}
.ebook-input.error { border-color: #FCA5A5; }

.ebook-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(132,117,78,.40);
  transition: all .25s var(--ease);
  font-family: 'Nunito', sans-serif;
  white-space: nowrap;
}
.ebook-cta:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(132,117,78,.50);
}


/* ═══════════════════════════════════════════
   3D BOOK MOCKUP (Pure CSS)
═══════════════════════════════════════════ */
.book-3d-wrapper {
  position: relative;
  width: 260px;
  height: 340px;
}

.book-3d {
  position: relative;
  width: 220px;
  height: 300px;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-18deg) rotateX(3deg);
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
}
.book-3d:hover {
  transform: perspective(1200px) rotateY(-8deg) rotateX(1deg) translateY(-10px);
}

.book-spine {
  position: absolute;
  left: -22px;
  top: 0;
  width: 22px;
  height: 100%;
  background: linear-gradient(to right, #002d1e, #003d2e);
  border-radius: 4px 0 0 4px;
  transform-origin: right;
}

.book-cover {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #004d38 0%, #002d1e 100%);
  border-radius: 0 8px 8px 0;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
}

.book-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .15em;
  margin-bottom: 14px;
  align-self: flex-start;
  font-family: 'Nunito', sans-serif;
}

.book-icon {
  margin-bottom: 14px;
}

.book-eyebrow {
  font-size: 9px;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}

.book-title {
  font-size: 15px;
  font-weight: 900;
  color: white;
  line-height: 1.35;
  letter-spacing: -.01em;
  flex: 1;
  font-family: 'Nunito', sans-serif;
}

.book-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif;
}

.book-shadow {
  position: absolute;
  bottom: -28px;
  left: -10%;
  width: 110%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, transparent 70%);
  filter: blur(12px);
}

.book-pages {
  display: none; /* Removido: causava barra cinzenta visível no layout */
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: all .2s var(--ease);
}
.footer-social:hover { background: var(--green); color: white; }

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-link:hover { color: var(--gold-l); }

.legal-badge-footer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
}
.legal-badge-footer i { font-size: 18px; margin-top: 2px; flex-shrink: 0; }


/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 760px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 64px rgba(0,0,0,.15);
  border: 1px solid #E5E7EB;
  transition: transform .5s cubic-bezier(.34,1.3,.64,1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast-msg {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111827;
  color: white;
  padding: 13px 22px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all .35s var(--ease);
  z-index: 9998;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-msg.success i { color: #22C55E; }
.toast-msg.error   i { color: #EF4444; }


/* ═══════════════════════════════════════════
   FAQ — Cards Estilo ComparaJá · DS Sobral
═══════════════════════════════════════════ */

/* Section wrapper */
.faq-section {
  background: #F8F9FA;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Subtle decorative blobs */
.faq-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,86,64,.055) 0%, transparent 70%);
  pointer-events: none;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(132,117,78,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Inner container */
.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* 3-column grid on desktop, 2 on tablet, 1 on mobile */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .faq-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .faq-cards-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Individual card */
.faq-card {
  background: #ffffff;
  border-radius: var(--radius-lg); /* 24px */
  padding: 32px 28px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid #F0F0F0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: default;
}
/* Hover: lift + green left accent border */
.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,86,64,.13), 0 2px 8px rgba(0,0,0,.06);
  border-color: rgba(0,86,64,.22);
}
/* Green top accent line on hover */
.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.faq-card:hover::before { transform: scaleX(1); }

/* Circular icon container */
.faq-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,86,64,.30);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-card:hover .faq-card-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,86,64,.40);
}

/* Question heading */
.faq-card-q {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -.01em;
  font-family: 'Nunito', sans-serif;
}

/* Answer paragraph */
.faq-card-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.70;
  font-family: 'Nunito', sans-serif;
  flex: 1;
}
.faq-card-a strong {
  color: #374151;
  font-weight: 700;
}

/* Pill tag at bottom */
.faq-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-xs);
  color: var(--green);
  border: 1px solid rgba(0,86,64,.15);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  width: fit-content;
  margin-top: auto;
}
.faq-card-tag i { font-size: 11px; }

/* CTA buttons below grid */
.faq-cta-primary,
.faq-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
}
/* Primary — DS green solid */
.faq-cta-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,86,64,.35);
  border: 2px solid var(--green);
}
.faq-cta-primary:hover {
  background: var(--green-l);
  border-color: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,86,64,.45);
}
/* Ghost — outlined DS green */
.faq-cta-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid rgba(0,86,64,.35);
}
.faq-cta-ghost:hover {
  background: var(--green-xs);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .faq-section { padding: 72px 0 64px; }
  .faq-card { padding: 26px 22px 22px; gap: 12px; border-radius: 20px; }
  .faq-card-icon { width: 46px; height: 46px; font-size: 18px; }
  .faq-card-q { font-size: 15px; }
  .faq-cta-primary,
  .faq-cta-ghost { font-size: 14px; padding: 13px 22px; width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════════════════════════════
   BdP COMPLIANCE — Aviso 5/2024
   Barra legal topo + Secção Info Contratual + Exemplos Repres.
══════════════════════════════════════════════════════════════ */

/* ── BARRA LEGAL TOPO (Artigo 5.º — Identificação Inequívoca) ── */
.bdp-legal-topbar {
  background: #003d2e;
  border-bottom: 1px solid rgba(0,86,64,.5);
  padding: 7px 20px;
  position: relative;
  z-index: 60;
}
.bdp-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.bdp-topbar-firm {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}
.bdp-topbar-firm i {
  color: #6ee7b7;
  flex-shrink: 0;
  font-size: 12px;
}
.bdp-topbar-firm strong {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.bdp-topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bdp-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #6ee7b7;
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.25);
  border-radius: 100px;
  padding: 3px 10px;
  transition: all .2s ease;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
}
.bdp-topbar-link:hover {
  background: rgba(110,231,183,.2);
  color: #fff;
}
@media (max-width: 640px) {
  .bdp-topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .bdp-topbar-firm { font-size: 10px; }
  .bdp-topbar-link { font-size: 10px; }
}

/* ── NAVBAR: link legal ── */
.nav-link-legal {
  color: #005640 !important;
  border: 1px solid rgba(0,86,64,.25) !important;
  background: rgba(0,86,64,.05) !important;
}
.nav-link-legal:hover {
  background: rgba(0,86,64,.12) !important;
}

/* ── MOBILE MENU: links legais ── */
.mobile-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  margin: 4px 0;
}
.mobile-legal-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s ease;
}
.mobile-legal-link:last-child { border-bottom: none; }
.mobile-legal-link:hover { color: #fff; }

/* ── HERO: disclaimer stats (Artigo 4.º — Destaque Similar) ── */
.hero-stats-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;      /* ~56% do tamanho das stats (18px) — cumpre >50% */
  color: #9CA3AF;
  line-height: 1.55;
  margin-top: 6px;
  margin-bottom: 0;
  max-width: 440px;
}
.hero-stats-disclaimer i {
  color: #84754E;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SECÇÃO INFO CONTRATUAL ── */
.info-contratual-section {
  background: #F8F9FA;
  border-top: 3px solid #003d2e;
  border-bottom: 1px solid #E5E7EB;
  padding: 64px 20px;
}
.info-contratual-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.info-contratual-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}
.info-contratual-icon {
  width: 52px;
  height: 52px;
  background: #003d2e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  font-size: 22px;
  flex-shrink: 0;
}
.info-contratual-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Nunito', Arial, sans-serif;
}
.info-contratual-sub {
  font-size: 13px;
  color: #6B7280;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.info-contratual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

/* Cards de informação legal */
.info-card-legal {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.info-card-legal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F3F4F6;
}
.info-card-legal-head i {
  width: 34px;
  height: 34px;
  background: #e6f2ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005640;
  font-size: 14px;
  flex-shrink: 0;
}
.info-card-legal-head h3 {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}
.info-card-legal p {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.6;
}
.info-card-legal strong {
  color: #111827;
  font-weight: 700;
}
.info-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 4px 0;
}
.info-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}
.info-card-list li i {
  color: #005640;
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.info-card-rgpd {
  font-size: 11px !important;
  color: #6B7280 !important;
  border-top: 1px solid #F3F4F6;
  padding-top: 8px;
  margin-top: 2px;
}
.info-card-rgpd a {
  color: #005640;
  text-decoration: underline;
}
.info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: #005640;
  background: #e6f2ee;
  border-radius: 100px;
  padding: 6px 13px;
  margin-top: auto;
  transition: all .2s ease;
  border: 1px solid rgba(0,86,64,.18);
}
.info-card-link:hover {
  background: #005640;
  color: white;
}

/* ── EXEMPLO REPRESENTATIVO (Artigos 11.º e 12.º) ── */
.exemplo-representativo {
  background: white;
  border: 1.5px solid #003d2e;
  border-radius: 14px;
  padding: 16px;
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
}
.exemplo-representativo--full {
  padding: 24px 28px;
  border-color: #003d2e;
  background: linear-gradient(135deg, #f0f8f5 0%, white 100%);
}
.exemplo-rep-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E7EB;
}
.exemplo-rep-header i {
  color: #005640;
  font-size: 14px;
}
.exemplo-rep-header strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #111827;
}
.exemplo-rep-tag {
  font-size: 10px;
  font-weight: 700;
  color: #005640;
  background: #e6f2ee;
  border: 1px solid rgba(0,86,64,.2);
  border-radius: 100px;
  padding: 2px 9px;
  margin-left: auto;
  white-space: nowrap;
}
.exemplo-rep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  margin-bottom: 10px;
}
.exemplo-rep-grid--full {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 24px;
}
.exemplo-rep-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 5px 0;
  border-bottom: 1px solid #F3F4F6;
}
.exemplo-rep-item--mtic {
  grid-column: 1 / -1;
  background: #e6f2ee;
  border-radius: 8px;
  padding: 8px 10px;
  border-bottom: none;
  margin-top: 4px;
}
.exemplo-rep-key {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.exemplo-rep-val {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
}
.exemplo-rep-item--mtic .exemplo-rep-key { color: #005640; }
.exemplo-rep-item--mtic .exemplo-rep-val { color: #003d2e; font-size: 14px; font-weight: 900; }
.exemplo-rep-note {
  font-size: 10.5px;
  color: #6B7280;
  line-height: 1.65;
  border-top: 1px solid #E5E7EB;
  padding-top: 10px;
  margin-top: 4px;
}

/* ── FOOTER: firma legal destacada ── */
.footer-firma-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 4px;
}
.footer-firma-legal i {
  color: #84754E;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── HERO: fix layout shift tipagem — abordagem definitiva ── */
/*
   Estratégia: o container tem altura fixa (1 linha).
   O ghost (invisível, fora do flow com height:0) define a LARGURA
   do container — usando a frase mais longa como referência.
   A palavra digitada e o cursor ficam em absolute sobre o ghost.
   Sem overflow:hidden para não cortar nada.
*/
.hero-headline-typing {
  display: inline-block;   /* respeita a largura do ghost */
  color: #005640;
  font-style: italic;
  position: relative;
  /* Altura fixa = 1 linha — evita o salto vertical quando muda frase */
  min-height: 1.2em;
  line-height: 1.2;
  /* Não usar overflow:hidden — cortava a palavra */
  vertical-align: top;
}
/* Ghost: reserva a largura da frase mais longa sem ocupar altura */
.typing-ghost {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  display: block;           /* ocupa largura no flow */
  white-space: nowrap;      /* sem quebra — reserva largura real */
  font-style: italic;
  font-weight: 900;
  line-height: 0;           /* altura zero — não empurra conteúdo */
  overflow: visible;
}
/* Palavra digitada — flutua sobre o ghost */
.typing-word-clean {
  position: absolute;
  top: 0;
  left: 0;
  color: #005640;
  font-style: italic;
  font-weight: 900;
  white-space: nowrap;      /* nunca quebra mid-typing */
  line-height: 1.2;
}
/* Cursor — posicionado pelo JS à direita da palavra */
.typing-cursor-clean {
  position: absolute;
  top: 0;
  display: inline;
  color: #005640;
  font-weight: 300;
  font-style: normal;
  animation: blink .7s step-end infinite;
  opacity: .7;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .info-contratual-section { padding: 48px 16px; }
  .info-contratual-grid { grid-template-columns: 1fr; }
  .exemplo-rep-grid { grid-template-columns: 1fr; }
  .exemplo-rep-grid--full { grid-template-columns: 1fr; }
  .bdp-topbar-links { display: none; }
  .footer-firma-legal { font-size: 11px; }
}


/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
/* NOTE: Do NOT add .hidden here — it conflicts with Tailwind responsive classes (md:flex etc.) */
/* Quiz-specific hidden panels are handled via .quiz-panel.hidden below */

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-card    { padding: 24px 18px 20px; border-radius: 20px; }
  .book-3d-wrapper { width: 220px; height: 290px; }
  .book-3d      { width: 190px; height: 260px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cta-xl       { font-size: 15px; padding: 16px 28px; }
}

@media (max-width: 768px) {
  .legal-badge-footer { min-width: 100%; }
}
