/* ── SISTEMA DE DESIGN EXECUTIVE ZONED (PADRÃO SERASA / ENTERPRISE SAAS) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta Corporativa de Alta Confiança e Segurança Digital */
  --bg-dark:     #080e1e; /* Fundo escuro premium (Hero e Seções B2B) */
  --bg-dark-2:   #050812; /* Fundo escuro profundo (Footer) */
  --bg-light:    #ffffff; /* Fundo branco puro (Zona de Verificação e Cards) */
  --bg-gray:     #f8fafc; /* Fundo cinza slate suave (Como funciona) */
  --bg-slate:    #f1f5f9; /* Fundo cinza azulado médio (Golpes) */
  
  --border:      #e2e8f0; /* Bordas finas e limpas */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-focus: #bae6fd;
  
  /* Cores de Ação e Destaques */
  --primary-blue:      #0052ff; /* O Azul Serasa, confiança e autoridade digital */
  --primary-blue-hover:#0041cc;
  --accent-cyan:       #0ea5e9; /* Ciano tecnológico */
  
  /* Cores de Alerta Sóbrias e Tecnológicas */
  --green:        #10b981; /* Verde Ciano Seguro */
  --green-bg:     #ecfdf5;
  --green-border: #a7f3d0;
  
  --red:          #ef4444; /* Vermelho Coral Antifraude */
  --red-bg:       #fef2f2;
  --red-border:   #fecaca;
  
  --gold:         #f59e0b; /* Laranja/Bronze de Atenção */
  --gold-bg:      #fffbeb;
  --gold-border:  #fef3c7;
  
  --text-dark:    #0f172a; /* Slate 900 para máxima legibilidade */
  --text-light:   #f8fafc; /* Texto claro para seções escuras */
  --muted:        #64748b; /* Slate 500 */
  --muted2:       #475569; /* Slate 600 */
  --muted-light:  #94a3b8;
  
  /* Tipografia Geométrica 100% Sans-Serif */
  --fh: 'Outfit', 'Inter', sans-serif;
  --fb: 'Outfit', 'Inter', sans-serif;
  --wa: #25d366;
  --wa-dark: #075e54;
  
  /* Sombras Modernas e Limpas */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--d, 0s)), transform .6s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--d, 0s));
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV BAR WITH DYNAMIC SCROLL TRANSITION ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all .35s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 22px 24px;
  transition: padding .3s ease;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: 20px; font-weight: 700;
  letter-spacing: -.5px; color: #ffffff; /* Inicialmente claro no Hero Dark */
  transition: color .3s ease;
}
.logo-icon-svg {
  width: 22px; height: 26px;
  fill: var(--primary-blue);
}
.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text em {
  color: var(--accent-cyan); /* Ciano para maior contraste no fundo escuro */
  font-style: normal;
  font-weight: 500;
  transition: color .3s ease;
}

.nav-links {
  display: flex; gap: 28px; margin-left: auto; margin-right: 28px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.8);
  transition: color .2s ease;
}
.nav-links a:hover {
  color: var(--accent-cyan);
}

.btn-nav {
  padding: 10px 20px; border-radius: 6px;
  background: var(--primary-blue); color: #fff;
  font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  flex-shrink: 0;
  border: 1px solid var(--primary-blue);
}
.btn-nav:hover {
  background: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: all .25s;
}

/* Transição para Scroll (Fundo Claro sobre seções claras) */
.nav.scrolled {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav.scrolled .nav-inner {
  padding: 14px 24px;
}
.nav.scrolled .logo {
  color: var(--text-dark);
}
.nav.scrolled .logo-text em {
  color: var(--primary-blue);
}
.nav.scrolled .nav-links a {
  color: var(--muted2);
}
.nav.scrolled .nav-links a:hover {
  color: var(--primary-blue);
}
.nav.scrolled .hamburger span {
  background: var(--text-dark);
}

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}
.mobile-menu a {
  padding: 15px 24px; font-size: 15px; font-weight: 500;
  color: var(--text-dark); border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.mobile-menu a:hover {
  color: var(--primary-blue);
  background: var(--bg-gray);
}
.mobile-menu.open { display: flex; }

/* ── HERO SECTION (DARK EXECUTIVE TECH) ────────────────────────────────────── */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(0, 82, 255, 0.15) 0%, transparent 60%);
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 95%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 30px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px; color: var(--accent-cyan); font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 10px var(--green); }
}

.hero-title {
  font-family: var(--fh); font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero-title em {
  font-style: normal; color: var(--accent-cyan);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18.5px); color: var(--muted-light);
  line-height: 1.7; margin-bottom: 36px; max-width: 620px;
  font-weight: 300;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: var(--primary-blue); color: #fff;
  font-size: 14.5px; font-weight: 600; font-family: var(--fb);
  transition: all .2s ease;
  border: 1px solid var(--primary-blue);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.3);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff; font-size: 14.5px; font-weight: 600; font-family: var(--fb);
  transition: all .2s ease;
}
.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1.5px);
}
.btn-whatsapp svg {
  fill: var(--wa);
  width: 18px; height: 18px;
}

.hero-stats {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column;
}
.stat-num {
  font-family: var(--fh); font-size: 34px; font-weight: 800;
  color: #ffffff; line-height: 1; letter-spacing: -0.5px;
}
.stat-unit { font-size: 20px; font-weight: 700; color: var(--accent-cyan); }
.stat-lbl { font-size: 12.5px; color: var(--muted-light); font-weight: 500; margin-top: 4px; }
.stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan));
  animation: scroll-line 2.5s ease-in-out infinite;
}

/* ── TRUST SEALS SECTION ────────────────────────────────────────────────────── */
.section-trust-seals {
  background: var(--bg-slate);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.seals-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.seal-title {
  font-size: 13px; color: var(--muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.seal-items {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.seal-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px;
}
.seal-item svg {
  width: 18px; height: 18px;
  stroke: var(--primary-blue); fill: none;
  flex-shrink: 0;
}

/* ── COMO FUNCIONA (SLATE LIGHT GRAY ZONE) ────────────────────────────────── */
.section-how {
  padding: 100px 0;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex; align-items: stretch; gap: 20px; flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 250px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 8px; padding: 36px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}
.step-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--fh); font-size: 48px; font-weight: 800;
  color: rgba(0, 82, 255, 0.08); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.step-icon-svg {
  width: 32px; height: 32px;
  fill: var(--primary-blue);
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--fh); font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.3;
}
.step-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; }
.step-arrow {
  font-size: 18px; color: var(--primary-blue); flex-shrink: 0;
  align-self: center; opacity: 0.5;
}

/* ── VERIFICADOR (CLINICAL ULTRA-CLEAN WHITE ZONE) ─────────────────────────── */
.section-verify {
  padding: 100px 0;
  background: var(--bg-light); /* Branco Puro */
}
.section-verify .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-verify .section-label {
  text-align: center;
}

.verify-wrap {
  display: grid; grid-template-columns: 1fr 340px; gap: 28px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.verify-card {
  background: #ffffff;
  border: 1.5px solid var(--border); /* Borda um pouco mais marcada */
  border-radius: 12px; padding: 40px;
  box-shadow: var(--shadow-lg); /* Sombra marcante para dar relevo tridimensional */
}

.verify-tabs {
  display: flex; gap: 6px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.vtab {
  padding: 10px 18px; border-radius: 6px 6px 0 0; border: 1px solid transparent;
  background: transparent; color: var(--muted);
  font-family: var(--fb); font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
  margin-bottom: -1px;
  display: flex; align-items: center; gap: 8px;
}
.vtab svg {
  width: 14px; height: 14px;
  fill: currentColor;
}
.vtab:hover {
  color: var(--primary-blue);
}
.vtab.active {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-bottom-color: #ffffff;
  color: var(--primary-blue);
}

.vtab-panel { display: none; }
.vtab-panel.active { display: block; }

.vtab-panel label {
  display: block; font-size: 13px; color: var(--muted2); margin-bottom: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.input-row { display: flex; gap: 12px; }
.input-row input {
  flex: 1; padding: 15px 20px; /* Inputs maiores e mais confortáveis */
  background: #ffffff; border: 1.5px solid #cbd5e1;
  border-radius: 8px; color: var(--text-dark);
  font-family: var(--fb); font-size: 16px; /* Letra maior para fácil visualização */
  outline: none; transition: all .2s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}
.input-row input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.12);
}
.btn-verify {
  padding: 15px 30px; border-radius: 8px; border: none;
  background: var(--primary-blue); color: #fff;
  font-family: var(--fb); font-size: 14.5px; font-weight: 700;
  cursor: pointer; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px;
  transition: all .2s ease;
}
.btn-verify:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.2);
  transform: translateY(-0.5px);
}
.btn-verify:active { transform: scale(.98); }
.input-hint { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* LAUDOS DE VERIFICAÇÃO */
.verify-result {
  margin-top: 28px;
}
.res-box {
  border-radius: 8px; padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  animation: fadeUp .3s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.res-box::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
}

.res-safe { background: var(--green-bg); border-color: var(--green-border); color: #065f46; }
.res-safe::after { background: var(--green); }
.res-safe .res-title { color: #065f46; }
.res-safe strong { color: #047857; }

.res-danger { background: var(--red-bg); border-color: var(--red-border); color: #991b1b; }
.res-danger::after { background: var(--red); }
.res-danger .res-title { color: #991b1b; }
.res-danger strong { color: #b91c1c; }

.res-warn { background: var(--gold-bg); border-color: var(--gold-border); color: #92400e; }
.res-warn::after { background: var(--gold); }
.res-warn .res-title { color: #92400e; }

.res-ico-svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
}

.res-title {
  font-family: var(--fh);
  font-weight: 700; font-size: 16.5px; margin-bottom: 6px;
}
.res-body {
  font-size: 13.5px; color: var(--text-dark); line-height: 1.6;
}

.verify-limit { margin-top: 28px; }
.limit-bar { height: 4px; background: #e2e8f0; border-radius: 2px; overflow: hidden; margin-bottom: 8px; }
.limit-fill { height: 100%; width: 100%; background: var(--primary-blue); border-radius: 2px; transition: width .4s ease; }
.limit-text { font-size: 12px; color: var(--muted); font-weight: 500; }

.verify-alt {
  background: rgba(0, 82, 255, 0.02); border: 1px solid rgba(0, 82, 255, 0.08);
  border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.alt-icon-svg { width: 32px; height: 32px; fill: var(--primary-blue); }
.alt-body strong { font-size: 16px; font-family: var(--fh); font-weight: 700; display: block; margin-bottom: 6px; color: var(--text-dark); }
.alt-body p { font-size: 13.5px; color: var(--muted2); line-height: 1.6; margin-bottom: 16px; }
.btn-wa-alt {
  display: inline-flex; align-items: center;
  padding: 10px 18px; border-radius: 6px;
  background: rgba(0, 82, 255, 0.06); border: 1px solid rgba(0, 82, 255, 0.15);
  color: var(--primary-blue); font-size: 13px; font-weight: 600;
  transition: all .2s ease;
}
.btn-wa-alt:hover { background: rgba(0, 82, 255, 0.12); transform: translateY(-1px); }

/* ── GOLPES COMUNS (SLATE INTERMEDIATE ZONE) ───────────────────────────────── */
.section-golpes {
  padding: 100px 0;
  background: var(--bg-slate); /* Cinza Slate quebra o branco */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.golpes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 36px;
}

.golpe-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 24px;
  transition: all .25s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.golpe-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.golpe-ico-svg { width: 28px; height: 28px; fill: var(--primary-blue); display: block; margin-bottom: 18px; }
.golpe-card h3 {
  font-family: var(--fh); font-size: 17px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px; line-height: 1.3;
}
.golpe-card p { font-size: 13px; color: var(--muted2); line-height: 1.6; margin-bottom: 16px; }
.golpe-tag {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase;
  background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border);
}

.regra-ouro {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: 6px; padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.ro-icon-svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.regra-ouro strong { display: block; font-size: 15px; font-weight: 700; color: #92400e; margin-bottom: 4px; font-family: var(--fh); }
.regra-ouro p { font-size: 13.5px; color: #92400e; line-height: 1.65; }

/* ── SEÇÃO DE VENDAS B2B UNIFICADA (DEEP CORPORATE SLATE - ESCURO LUXO) ────── */
.sales-b2b-zone {
  background: linear-gradient(180deg, #090e1a 0%, #060a12 100%);
  color: var(--text-light);
  border-bottom: 1px solid var(--border-dark);
}

/* Para Escritórios */
.section-adv {
  padding: 120px 0 80px;
  position: relative;
}
.section-adv::after {
  content: ''; position: absolute; bottom: 0; left: 5%; right: 5%; height: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.section-adv .section-title {
  color: #ffffff;
}
.adv-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
}
.adv-desc {
  font-size: 16.5px; color: var(--muted-light); line-height: 1.8;
  margin-bottom: 32px; font-weight: 300;
}
.adv-list { display: flex; flex-direction: column; gap: 14px; }
.adv-list li {
  display: flex; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.9); align-items: flex-start;
  line-height: 1.5;
}
.adv-list li svg { fill: var(--accent-cyan); width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; }

/* Mockup de Celular B2B */
.phone-mock { display: flex; justify-content: center; }
.phone-frame {
  width: 275px; background: #242c3d; border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12); padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  position: relative;
}
.phone-notch {
  width: 60px; height: 10px; background: #0b0f19;
  border-radius: 0 0 8px 8px; margin: -10px auto 10px;
}
.phone-screen { background: #efeae2; border-radius: 22px; overflow: hidden; border: 1px solid #1e293b; }
.wa-header {
  background: #075e54; padding: 12px 14px;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
}
.wa-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-blue); display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.wa-name { font-size: 12px; font-weight: 600; color: #fff; }
.wa-status { font-size: 9px; color: #34b7f1; }
.wa-messages {
  padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; min-height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239c92ac' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.wa-msg {
  max-width: 90%; padding: 8px 12px; border-radius: 10px;
  font-size: 12px; line-height: 1.5;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.wa-recv {
  background: #ffffff; color: #303030; border-top-left-radius: 0; align-self: flex-start;
}
.wa-sent {
  background: #dcf8c6; color: #303030; border-top-right-radius: 0; align-self: flex-end;
}
.wa-msg.hidden { display: none; }

.typing { display: flex; gap: 4px; align-items: center; padding: 10px 12px; background: #fff; border-radius: 10px; border-top-left-radius: 0; align-self: flex-start; }
.typing span { width: 5px; height: 5px; border-radius: 50%; background: #9ca3af; animation: blink 1.4s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

/* Planos de Assinatura (SaaS Enterprise) */
.section-planos {
  padding: 100px 0;
  position: relative;
}
.section-planos .section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}
.plans-sub {
  text-align: center; font-size: 16px; color: var(--muted-light);
  margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch; margin-bottom: 48px;
}
.plan-card {
  background: #ffffff; /* Pop-out branco contra fundo escuro */
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative; box-shadow: 0 15px 35px -5px rgba(0,0,0,0.3);
  color: var(--text-dark);
  transition: all .25s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -5px rgba(0,0,0,0.4);
}
.plan-card--featured {
  border: 3px solid var(--primary-blue);
  box-shadow: 0 20px 40px -5px rgba(0,0,0,0.4);
}
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary-blue); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 30px;
}
.plan-header {
  margin-bottom: 28px;
}
.plan-name {
  font-size: 19px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 34px; font-weight: 800; color: var(--text-dark);
  line-height: 1.1; display: flex; align-items: baseline;
}
.plan-price span { font-size: 22px; font-weight: 700; }
.plan-price small { font-size: 13.5px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.plan-desc {
  font-size: 13.5px; color: var(--muted2); margin-top: 10px; line-height: 1.45;
}
.plan-features {
  margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px;
  flex-grow: 1;
}
.plan-features li {
  display: flex; gap: 10px; font-size: 13.5px; color: var(--text-dark); align-items: center;
}
.plan-features li span {
  color: var(--primary-blue); font-size: 13px; font-weight: 700;
}
.plan-features li.disabled {
  color: var(--muted); opacity: 0.6; text-decoration: line-through;
}
.plan-features li.disabled span {
  color: var(--muted); font-weight: 400;
}
.btn-plan {
  display: block; text-align: center; padding: 13px 20px; border-radius: 6px;
  border: 1.5px solid var(--border); background: #ffffff;
  color: var(--primary-blue); font-size: 14px; font-weight: 700;
  transition: all .2s ease;
}
.btn-plan:hover {
  background: var(--bg-blue-light);
  border-color: var(--primary-blue);
}
.btn-plan--featured {
  background: var(--primary-blue); color: #fff;
  border-color: var(--primary-blue);
}
.btn-plan--featured:hover {
  background: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: #fff;
}
.plans-note {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  flex-wrap: wrap; font-size: 13px; color: var(--muted-light);
}

/* CTA BOX (DEEP GRADIENT) */
.section-cta { padding: 60px 0 120px; }
.cta-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; padding: 80px 64px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.1), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--fh); font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.8px;
  margin-bottom: 20px; position: relative;
  color: #ffffff;
}
.cta-sub { font-size: 17px; color: var(--muted-light); margin-bottom: 40px; position: relative; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── RODAPÉ CORPORATIVO (FOOTER) ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 0;
  background: var(--bg-dark-2);
  color: var(--text-light);
}
.footer-inner {
  display: flex; gap: 48px; justify-content: space-between; flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 13.5px; color: var(--muted-light); margin-top: 10px; line-height: 1.6; }
.footer-brand .logo { margin-bottom: 12px; color: #fff; }
.footer-brand .logo .logo-text { color: #fff; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { font-size: 13.5px; color: var(--muted-light); transition: color .2s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted-light);
  max-width: 1140px; margin: 0 auto;
}

/* ── RESPONSIVE ADAPTATIONS ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 8px 0; }
  .verify-wrap { grid-template-columns: 1fr; }
  .golpes-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; gap: 48px; }
  .plans-grid { grid-template-columns: 1fr; gap: 28px; }
  .phone-mock { display: none; }
  .cta-box { padding: 48px 24px; }
  .seals-inner { justify-content: center; text-align: center; }
  .seal-items { justify-content: center; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .golpes-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 28px; }
  .section-how, .section-verify, .section-golpes, .section-adv, .section-planos { padding: 80px 0; }
  .verify-card { padding: 24px; }
  .input-row { flex-direction: column; }
  .btn-verify { width: 100%; text-align: center; }
}

/* ── CADASTRO DE ESCRITÓRIOS (EXECUTIVE B2B PORTAL) ────────────────────────── */
.cadastro-hero {
  padding: 140px 0 100px;
  background: var(--bg-gray);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.cadastro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.cadastro-left {
  padding-right: 20px;
}
.cadastro-left p {
  font-size: 15.5px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cadastro-trust {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-icon-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--primary-blue);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item strong {
  font-size: 14.5px;
  color: var(--text-dark);
}
.trust-item div {
  font-size: 13.5px;
  color: var(--muted2);
  line-height: 1.5;
}

/* Form Card Container */
.cadastro-right {
  position: relative;
}
.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

/* Stepper progress */
.cad-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.cad-steps::before {
  content: ''; position: absolute; top: 18px; left: 0; right: 0; height: 2px;
  background: #cbd5e1; z-index: 0;
}
.cad-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  background: #ffffff;
  padding: 0 8px;
}
.cad-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cad-step-dot.active {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.15);
}
.cad-step-dot.done {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}
.cad-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cad-step-dot.active + .cad-step-label,
.cad-step-dot.done + .cad-step-label {
  color: var(--text-dark);
}

/* Fields & inputs */
.fld {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fld label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fld input, .fld select {
  padding: 12px 16px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  color: var(--text-dark);
  font-family: var(--fb);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}
.fld input:focus, .fld select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.12);
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  background: var(--primary-blue);
  color: #ffffff;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.btn-submit:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.2);
}
.btn-submit:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted2);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--bg-gray);
  color: var(--text-dark);
}

/* OAB Verification Feedback Box */
.oab-status {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  margin-top: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.oab-checking {
  background: var(--bg-blue-light);
  border-color: #bde0fe;
  color: #003049;
}
.oab-ok {
  background: var(--green-bg);
  border-color: var(--green-border);
  color: #065f46;
}
.oab-fail {
  background: var(--red-bg);
  border-color: var(--red-border);
  color: #991b1b;
}

/* Plano Selector list options */
.plano-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.plano-opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-dark);
}
.plano-opt:hover {
  border-color: var(--primary-blue);
  background: var(--bg-gray);
}
.plano-opt.selected {
  border-color: var(--primary-blue);
  background: var(--bg-blue-light);
}
.plano-opt input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-blue);
  cursor: pointer;
}
.plano-opt-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plano-opt-popular {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}
.plano-opt-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}
.plano-opt-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

/* Success Layout */
.cadastro-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}
.cadastro-success.visible {
  display: flex;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 2px solid var(--green-border);
  color: var(--green);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.success-title {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.success-body {
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .cadastro-hero {
    padding: 120px 0 65px;
  }
  .cadastro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cadastro-left {
    padding-right: 0;
  }
  .form-card {
    padding: 32px 24px;
  }
}
