/* ═══════════════════════════════════════════════════════════
   Central Digital do Motorista – Proteção CNH
   Design System Premium v2.0 — build 20260611-b
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Cores primárias */
  --azul-900:   #0f2040;
  --azul-800:   #1a3360;
  --azul-700:   #1e3f7a;
  --azul-600:   #2452a8;
  --azul-500:   #2563eb;
  --azul-400:   #3b82f6;
  --azul-300:   #93c5fd;
  --azul-100:   #dbeafe;
  --azul-50:    #eff6ff;

  /* Verde – apenas CTA */
  --verde-600:  #16a34a;
  --verde-700:  #15803d;
  --verde-500:  #22c55e;

  /* Neutros */
  --cinza-950:  #050810;
  --cinza-900:  #0a0f1e;
  --cinza-800:  #111827;
  --cinza-700:  #1f2937;
  --cinza-600:  #374151;
  --cinza-500:  #6b7280;
  --cinza-400:  #9ca3af;
  --cinza-300:  #d1d5db;
  --cinza-200:  #e5e7eb;
  --cinza-100:  #f3f4f6;
  --cinza-50:   #f9fafb;
  --branco:     #ffffff;

  /* Semânticas */
  --amarelo:    #f59e0b;
  --vermelho:   #ef4444;
  --roxo:       #7c3aed;

  /* Hero dark */
  --hero-bg:    #070b18;
  --hero-mid:   #0d1424;
  --glow-blue:  rgba(37,99,235,.45);
  --glow-soft:  rgba(59,130,246,.18);

  /* Tokens de interface */
  --bg:         #ffffff;
  --bg-alt:     #f9fafb;
  --border:     #e5e7eb;
  --border-dark:#1f2937;
  --text:       #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Sombras refinadas */
  --shadow-xs:  0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 4px 28px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 80px rgba(0,0,0,.15);
  --shadow-2xl: 0 40px 120px rgba(0,0,0,.22);
  --shadow-blue:0 8px 40px rgba(37,99,235,.22);
  --shadow-green:0 8px 32px rgba(22,163,74,.28);
  --shadow-glass:0 8px 40px rgba(0,0,0,.35);

  /* Tipografia */
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Bordas */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full:999px;

  /* Transições */
  --trans-fast: all .15s ease;
  --trans:      all .22s cubic-bezier(.4,0,.2,1);
  --trans-slow: all .4s cubic-bezier(.4,0,.2,1);
  --trans-spring: all .5s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }

/* ── Animações globais ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 1; } to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse-ring {
  0%   { transform: scale(.95); box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(.3deg); }
  66%      { transform: translateY(-5px) rotate(-.2deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes glow-pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}
@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes notification-in {
  from { opacity: 0; transform: translateY(-10px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}

/* Animações de entrada desativadas — sem efeito de baixo pra cima */
.anim-fade-up   { opacity: 1; transform: none; animation: none; }
.anim-fade-in   { opacity: 1; animation: none; }
.anim-delay-1, .anim-delay-2, .anim-delay-3, .anim-delay-4 { animation-delay: 0s; }

/* ── Utilitários ──────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 640px;  margin: 0 auto; padding: 0 1.5rem; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.hidden       { display: none !important; }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Botões Premium ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.875rem; border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 600; cursor: pointer; border: none;
  transition: var(--trans); text-align: center; white-space: nowrap;
  position: relative; overflow: hidden; letter-spacing: -.01em;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,0));
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--verde-600) 0%, #15803d 100%);
  color: #fff; box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--azul-500) 0%, var(--azul-600) 100%);
  color: #fff; box-shadow: var(--shadow-blue);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent; color: var(--azul-600);
  border: 1.5px solid var(--azul-600);
}
.btn-outline-dark:hover { background: var(--azul-600); color: #fff; }

.btn-wpp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.3);
}
.btn-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.4);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-xs { padding: .35rem .85rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* Aliases legados */
.btn-verde  { background: linear-gradient(135deg,var(--verde-600),#15803d); color:#fff; box-shadow:var(--shadow-green); }
.btn-verde:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(22,163,74,.35); }
.btn-azul   { background: linear-gradient(135deg,var(--azul-500),var(--azul-600)); color:#fff; box-shadow:var(--shadow-blue); }
.btn-azul:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(37,99,235,.35); }
.btn-outline { background:transparent; color:var(--azul-600); border:1.5px solid var(--azul-600); box-shadow:none; }
.btn-outline:hover { background:var(--azul-600); color:#fff; }

/* ── Navbar Premium ──────────────────────────────────── */
.navbar {
  background: rgba(7,11,24,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(59,130,246,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  position: sticky; top: 0; z-index: 200;
}

/* Estado: rolou a página — mesmo visual, sem transição */
.navbar.scrolled {
  background: rgba(7,11,24,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(59,130,246,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* Estado: página com fundo claro (páginas legais, termos etc.) */
.navbar.light-page {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(37,99,235,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.navbar.light-page .navbar-logo .logo-text { color: var(--cinza-900) !important; }
.navbar.light-page .navbar-logo .logo-sep  { color: var(--cinza-400) !important; }
.navbar.light-page .navbar-logo .logo-tag  { color: var(--azul-600) !important; }
.navbar.light-page .navbar-nav a           { color: var(--cinza-600) !important; }
.navbar.light-page .navbar-nav a:hover,
.navbar.light-page .navbar-nav a.active    { color: var(--azul-700) !important; background: rgba(37,99,235,.07) !important; }
/* light-page com scroll: intensifica levemente o fundo */
.navbar.light-page.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.05rem; font-weight: 800; color: var(--azul-800);
  letter-spacing: -.02em;
}
.navbar-logo .logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--azul-700), var(--azul-500));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.navbar-logo .logo-text { color: #fff; }
.navbar-logo .logo-sep  { color: rgba(147,197,253,.5); font-weight: 400; margin: 0 .1rem; }
.navbar-logo .logo-tag  { color: #93c5fd; }
.navbar.scrolled .navbar-logo .logo-text { color: #fff; }
.navbar.scrolled .navbar-logo .logo-tag  { color: #93c5fd; }

.navbar-nav { display: flex; align-items: center; gap: .25rem; }
.navbar-nav a {
  color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 500;
  padding: .5rem .85rem; border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: #fff; background: rgba(255,255,255,.08);
}
.navbar-cta {
  background: linear-gradient(135deg, var(--azul-600), var(--azul-700));
  color: #fff !important;
  padding: .55rem 1.2rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.navbar-cta:hover {
  background: linear-gradient(135deg, var(--azul-700), var(--azul-800)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,99,235,.35) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
/* hamburger em light-page fica escuro */
.navbar.light-page .hamburger span { background: var(--cinza-700); }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: var(--trans); }

.mobile-menu {
  display: none; background: rgba(7,11,24,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59,130,246,.12);
  padding: .75rem 1.5rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.mobile-menu a {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.7); padding: .8rem 0;
  font-size: .95rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }
/* Mobile menu em páginas light */
.navbar.light-page + .mobile-menu,
.navbar.light-page .mobile-menu {
  background: rgba(255,255,255,.99);
  border-top: 1px solid rgba(37,99,235,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.navbar.light-page + .mobile-menu a {
  color: var(--cinza-700);
  border-bottom-color: rgba(0,0,0,.06);
}

/* ── Seções – base ──────────────────────────────────── */
section { padding: 6rem 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--azul-50); color: var(--azul-600);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .35rem 1.1rem;
  border-radius: var(--radius-full); margin-bottom: 1.5rem;
  border: 1px solid var(--azul-100);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--cinza-900);
  letter-spacing: -.04em; line-height: 1.15;
  margin-bottom: 1.1rem;
}
.section-title em { color: var(--azul-500); font-style: normal; }
.section-sub {
  font-size: 1.075rem; color: var(--cinza-500);
  line-height: 1.75; max-width: 540px; font-weight: 400;
}

/* Aliases legados */
.section-tag { display: inline-flex; align-items: center; gap: .4rem; background: var(--azul-50); color: var(--azul-600); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem 1rem; border-radius: var(--radius-full); margin-bottom: 1.25rem; border: 1px solid var(--azul-100); }

/* ── HERO PREMIUM v5 – CINEMATIC DARK ───────────────── */
.hero {
  background: var(--hero-bg);
  padding: 7.5rem 0 6rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Grade de pontos dark */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(59,130,246,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 85% 75% at 60% 30%, black 20%, transparent 75%);
  z-index: 0;
}
/* Glow orbs */
.hero::after {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 780px; height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-blue) 0%, var(--glow-soft) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: glow-pulse 8s ease-in-out infinite;
}
/* Segundo orb — lado esquerdo baixo */
.hero .hero-orb2 {
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,163,74,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(59,130,246,.28);
  border-radius: var(--radius-full); padding: .4rem 1.1rem;
  font-size: .78rem; font-weight: 600; color: var(--azul-300);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse-ring 2s ease infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px #4ade80;
}

/* Título principal */
.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.05em; color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 strong { color: #fff; font-weight: 800; }

/* Subtítulo */
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.55);
  line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem;
  font-weight: 400;
}

/* CTAs */
.hero-actions { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

/* Prova social hero */
.hero-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.45); font-weight: 500;
}
.hero-proof-item i { color: #4ade80; font-size: .85rem; }

/* ── Visual direito: Dashboard glassmorphism ── */
.hero-visual { position: relative; }
.hero-dashboard {
  background: rgba(13,20,36,.75);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(59,130,246,.18);
  box-shadow:
    var(--shadow-glass),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Linha de glow no topo do dashboard */
.hero-dashboard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.6), rgba(167,139,250,.4), transparent);
  animation: border-flow 4s linear infinite;
}
.hero-db-header {
  background: rgba(7,11,24,.6);
  padding: .875rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}
.hero-db-dots { display: flex; gap: .35rem; }
.hero-db-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.hero-db-dots span:nth-child(1) { background: #ff5f57; }
.hero-db-dots span:nth-child(2) { background: #febc2e; }
.hero-db-dots span:nth-child(3) { background: #28c840; }
.hero-db-title {
  font-size: .72rem; color: rgba(255,255,255,.3);
  font-weight: 500; letter-spacing: .06em; font-family: var(--font-mono);
}
/* AI badge no header */
.hero-db-ai-badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(167,139,250,.15); border: 1px solid rgba(167,139,250,.25);
  border-radius: var(--radius-full); padding: .2rem .65rem;
  font-size: .65rem; font-weight: 700; color: #c4b5fd;
  letter-spacing: .04em;
}

.hero-db-body { padding: 1.25rem; }
.hero-db-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: .6rem; margin-bottom: 1rem;
}
.hero-db-stat {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: .875rem .75rem;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.hero-db-stat:hover { background: rgba(59,130,246,.08); }
.hero-db-stat-num {
  font-size: 1.35rem; font-weight: 800;
  color: #fff; letter-spacing: -.04em;
}
.hero-db-stat-num.green { color: #4ade80; }
.hero-db-stat-num.blue  { color: #60a5fa; }
.hero-db-stat-label {
  font-size: .68rem; color: rgba(255,255,255,.35);
  margin-top: .2rem; font-weight: 500; text-transform: uppercase; letter-spacing: .04em;
}

.hero-db-processes { display: flex; flex-direction: column; gap: .45rem; }
.hero-db-process {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  padding: .65rem .875rem;
  border: 1px solid rgba(255,255,255,.05);
  transition: background .2s, border-color .2s;
}
.hero-db-process:hover { background: rgba(59,130,246,.06); border-color: rgba(59,130,246,.12); }
.hero-db-process-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
}
.icon-blue  { background: rgba(37,99,235,.2);  color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
.icon-green { background: rgba(22,163,74,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.15); }
.icon-amber { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.15); }
.hero-db-process-info { flex: 1; min-width: 0; }
.hero-db-process-name { font-size: .77rem; font-weight: 600; color: rgba(255,255,255,.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-db-process-meta { font-size: .68rem; color: rgba(255,255,255,.3); margin-top: .1rem; }
.hero-db-process-badge {
  font-size: .65rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: var(--radius-full); white-space: nowrap;
}
.badge-analysis { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(251,191,36,.15); }
.badge-ready    { background: rgba(22,163,74,.15);  color: #4ade80; border: 1px solid rgba(74,222,128,.15); }
.badge-filed    { background: rgba(37,99,235,.15);  color: #60a5fa; border: 1px solid rgba(96,165,250,.15); }

/* Cards flutuantes – glassmorphism */
.hero-float-card {
  position: absolute;
  background: rgba(13,20,36,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  padding: .875rem 1.125rem;
  border: 1px solid rgba(59,130,246,.18);
  display: flex; align-items: center; gap: .625rem;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.9);
  animation: notification-in .5s cubic-bezier(.34,1.56,.64,1) both;
  z-index: 5;
}
.float-card-1 { bottom: 1.75rem; left: -2.25rem; animation-delay: .8s; }
.float-card-2 { top: 1.75rem; right: -1.75rem; animation-delay: 1.1s; }
.float-icon-wrap {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.float-icon-green { background: rgba(22,163,74,.2); color: #4ade80; }
.float-icon-blue  { background: rgba(37,99,235,.2); color: #60a5fa; }
.float-card-sub {
  font-size: .68rem; color: rgba(255,255,255,.4);
  font-weight: 400; margin-top: .1rem;
}

/* ── Trust Bar – dark glass ──────────────────────────── */
.trust-bar {
  background: rgba(7,11,24,.92);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 1rem 0;
  backdrop-filter: blur(12px);
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 2.75rem; flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.38);
  letter-spacing: .02em;
}
.trust-bar-item i { color: #60a5fa; font-size: .85rem; }

/* ── Dores – Problema section ──────────────────────── */
.problema-section { background: #fff; padding: 6rem 0; }
.problema-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.problema-card {
  background: var(--cinza-50);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: var(--trans);
  cursor: default;
}
.problema-card:hover {
  background: #fff;
  border-color: var(--azul-200, #bfdbfe);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.problema-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--azul-50); border: 1px solid var(--azul-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-500); font-size: 1rem; flex-shrink: 0;
}
.problema-text h4 {
  font-size: .9rem; font-weight: 700;
  color: var(--cinza-900); margin-bottom: .3rem;
}
.problema-text p { font-size: .82rem; color: var(--cinza-500); line-height: 1.5; }

/* Alias legado */
.dores-section { background: #fff; padding: 6rem 0; }
.dores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.dor-card { background: var(--cinza-50); border: 1px solid var(--cinza-200); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: var(--trans); }
.dor-card:hover { background: #fff; border-color: #bfdbfe; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dor-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--azul-50); border: 1px solid var(--azul-100); display: flex; align-items: center; justify-content: center; color: var(--azul-500); font-size: 1rem; flex-shrink: 0; }
.dor-texto h4 { font-size: .9rem; font-weight: 700; color: var(--cinza-900); margin-bottom: .3rem; }
.dor-texto p { font-size: .82rem; color: var(--cinza-500); line-height: 1.5; }

/* ── Serviços Premium ────────────────────────────────── */
.servicos-section { background: var(--cinza-50); padding: 5rem 0 6rem; }
.servico-card {
  background: #fff; border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg); padding: 1.875rem;
  transition: var(--trans-spring); cursor: default; position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--azul-500), var(--azul-300), #a78bfa);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.servico-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.12);
}
.servico-card:hover::before { transform: scaleX(1); }
.servico-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--azul-50), #dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem; color: var(--azul-600);
  border: 1px solid var(--azul-100);
  transition: var(--trans-spring);
}
.servico-card:hover .servico-icon { transform: scale(1.1) rotate(-4deg); }
.servico-card h3 { font-size: .975rem; font-weight: 700; color: var(--cinza-900); margin-bottom: .45rem; }
.servico-card p  { font-size: .84rem; color: var(--cinza-500); line-height: 1.6; }
.servico-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 600; color: var(--azul-500);
  margin-top: .875rem; transition: gap .2s;
}
.servico-card:hover .servico-link { gap: .6rem; }

/* ── Como Funciona Premium ───────────────────────────── */
.como-section { background: #fff; padding: 6rem 0 7rem; }
.como-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.como-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--azul-100), var(--azul-300), var(--azul-100));
  z-index: 0;
}
.como-step { padding: 0 1.25rem; text-align: center; position: relative; z-index: 1; }
.como-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-700) 0%, var(--azul-500) 100%);
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--azul-50), var(--shadow-blue);
  position: relative;
}
.como-step-num::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--azul-200);
  animation: spin 20s linear infinite;
}
.como-step h4 { font-size: 1rem; font-weight: 700; color: var(--cinza-900); margin-bottom: .5rem; }
.como-step p  { font-size: .845rem; color: var(--cinza-500); line-height: 1.55; }
.como-step-icon { font-size: 1.5rem; margin-bottom: .5rem; display: block; }

/* Alias legados */
.etapas::before { display: none; }
.etapas { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.etapa { padding: 0 1.25rem; text-align: center; position: relative; z-index: 1; }
.etapa-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--azul-700),var(--azul-500)); color: #fff; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 0 0 6px var(--azul-50), var(--shadow-blue); }
.etapa h4 { font-size: 1rem; font-weight: 700; color: var(--cinza-900); margin-bottom: .5rem; }
.etapa p  { font-size: .845rem; color: var(--cinza-500); line-height: 1.55; }

/* ── Diferenciais (mantido para alias CSS) ───────────── */
.diferenciais-section { display: none; }
.diferenciais-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.diferencial-card { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--radius-lg); padding: 2rem; transition: var(--trans); }
.diferencial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.diferencial-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.25rem; }
.d-blue   { background: var(--azul-50);  color: var(--azul-500); }
.d-green  { background: #dcfce7; color: var(--verde-600); }
.d-purple { background: #f5f3ff; color: var(--roxo); }
.d-amber  { background: #fffbeb; color: #b45309; }
.diferencial-card h3 { font-size: 1rem; font-weight: 700; color: var(--cinza-900); margin-bottom: .5rem; }
.diferencial-card p  { font-size: .875rem; color: var(--cinza-500); line-height: 1.6; }

/* ── Plataforma / mockup área cliente ────────────────── */
.plataforma-section {
  background: var(--cinza-900);
  padding: 7rem 0; position: relative; overflow: hidden;
}
.plataforma-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(37,99,235,.15) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.plataforma-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative;
}
.plataforma-text h2 { color: #fff; font-size: clamp(1.75rem,3vw,2.4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1.25rem; }
.plataforma-text h2 em { color: #93c5fd; font-style: normal; }
.plataforma-text p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.plataforma-features { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2.25rem; }
.plataforma-feature {
  display: flex; align-items: center; gap: .875rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: .875rem 1.125rem;
}
.plataforma-feature-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; font-size: .9rem; flex-shrink: 0;
}
.plataforma-feature-text h5 { font-size: .875rem; font-weight: 600; color: #fff; }
.plataforma-feature-text p  { font-size: .78rem; color: rgba(255,255,255,.55); }

/* Mockup do painel */
.app-mockup {
  background: var(--cinza-50); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.app-mockup-bar {
  background: var(--cinza-900); padding: .875rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.app-mockup-dots { display: flex; gap: .35rem; }
.app-mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.app-mockup-dots span:nth-child(1) { background: #ff5f57; }
.app-mockup-dots span:nth-child(2) { background: #febc2e; }
.app-mockup-dots span:nth-child(3) { background: #28c840; }
.app-mockup-url { flex: 1; background: var(--cinza-800); border-radius: 6px; padding: .3rem .875rem; font-size: .72rem; color: var(--cinza-400); font-family: var(--font-mono); }
.app-mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.app-process-item {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--cinza-200); padding: 1rem;
}
.app-process-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.app-process-title { font-size: .85rem; font-weight: 700; color: var(--cinza-900); }
.app-process-proto { font-size: .72rem; color: var(--cinza-400); margin-top: .15rem; }
.app-progress-wrap { margin-bottom: .5rem; }
.app-progress-meta { display: flex; justify-content: space-between; font-size: .72rem; color: var(--cinza-500); margin-bottom: .35rem; }
.app-progress-bar  { height: 5px; background: var(--cinza-100); border-radius: 999px; overflow: hidden; }
.app-progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--azul-500), var(--azul-400)); }

/* ── Prova Social / Depoimentos Premium ──────────────── */
.depoimentos-section { background: var(--cinza-50); padding: 5rem 0 6rem; }
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; margin-bottom: 4rem;
}
.stat-band-item {
  text-align: center; padding: 1.875rem 1.25rem;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-200);
  transition: var(--trans-spring);
}
.stat-band-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.15);
}
.stat-band-num {
  font-size: 2.5rem; font-weight: 800; color: var(--azul-600);
  letter-spacing: -.05em; line-height: 1;
}
.stat-band-label { font-size: .8rem; color: var(--cinza-500); margin-top: .5rem; font-weight: 500; }
.depoimento-card {
  background: #fff; border: 1px solid var(--cinza-200);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: var(--trans-spring); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.depoimento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--azul-400), #a78bfa);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.depoimento-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.12);
}
.depoimento-card:hover::before { transform: scaleX(1); }
.depoimento-quote { font-size: 2.75rem; color: #dbeafe; line-height: 1; margin-bottom: .5rem; font-family: Georgia, serif; }
.depoimento-stars { color: var(--amarelo); font-size: .9rem; margin-bottom: .875rem; letter-spacing: .08em; }
.depoimento-texto { font-size: .9rem; color: var(--cinza-700); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; font-style: italic; }
.depoimento-autor { display: flex; align-items: center; gap: .875rem; }
.depoimento-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-500), var(--azul-700));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .9rem; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.depoimento-nome  { font-weight: 700; font-size: .875rem; color: var(--cinza-900); }
.depoimento-cargo { font-size: .75rem; color: var(--cinza-400); margin-top: .1rem; }

/* ── Planos Premium ──────────────────────────────────── */
.planos-section { background: #fff; padding: 5rem 0 7rem; }
.planos-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.plano-card {
  background: #fff; border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-xl); padding: 2.25rem;
  position: relative; transition: var(--trans-spring);
  display: flex; flex-direction: column;
}
.plano-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(37,99,235,.15); }
.plano-card.destaque {
  border-color: var(--azul-500);
  background: linear-gradient(160deg, var(--azul-50) 0%, #fff 60%);
  box-shadow: var(--shadow-blue), 0 0 0 1px rgba(37,99,235,.08);
}
.plano-tag-destaque {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--azul-500), var(--azul-700));
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: .3rem 1.1rem; border-radius: var(--radius-full); white-space: nowrap;
}
.plano-header { margin-bottom: 1.5rem; }
.plano-icone  { font-size: 2rem; margin-bottom: .75rem; }
.plano-nome   { font-size: 1.05rem; font-weight: 800; color: var(--cinza-900); margin-bottom: .3rem; letter-spacing: -.02em; }
.plano-desc   { font-size: .84rem; color: var(--cinza-500); line-height: 1.5; }
.plano-preco  {
  font-size: 2.5rem; font-weight: 800; color: var(--azul-700);
  letter-spacing: -.04em; line-height: 1; margin: 1.25rem 0 .3rem;
}
.plano-preco small { font-size: .9rem; font-weight: 400; color: var(--cinza-400); }
.plano-divider { height: 1px; background: var(--cinza-100); margin: 1.25rem 0; }
.plano-itens { list-style: none; flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.plano-itens li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .845rem; color: var(--cinza-700);
}
.plano-itens li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0;
}

/* ── FAQ Premium ─────────────────────────────────────── */
.faq-section { background: var(--cinza-50); padding: 6rem 0; }
.faq-item {
  background: #fff; border: 1px solid var(--cinza-200);
  border-radius: var(--radius); margin-bottom: .625rem; overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-pergunta {
  padding: 1.25rem 1.5rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--trans-fast); font-size: .95rem; color: var(--cinza-800);
  user-select: none;
}
.faq-pergunta:hover { color: var(--azul-600); }
.faq-pergunta.open { color: var(--azul-600); background: var(--azul-50); }
.faq-seta {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cinza-100); display: flex; align-items: center;
  justify-content: center; font-size: .7rem; flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-pergunta.open .faq-seta { transform: rotate(180deg); background: var(--azul-100, #dbeafe); color: var(--azul-600); }
.faq-resposta {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: .9rem; color: var(--cinza-600); line-height: 1.7;
}
.faq-resposta.open { max-height: 300px; padding: 1rem 1.5rem 1.25rem; }

/* ── Formulário Triagem Premium ──────────────────────── */
.triagem-section {
  background: linear-gradient(160deg, var(--azul-900) 0%, var(--azul-700) 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
}
.triagem-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.triagem-box {
  background: #fff; border-radius: var(--radius-xl);
  padding: 3rem; box-shadow: 0 30px 80px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
}
.triagem-header { margin-bottom: 2rem; }
.triagem-header h2 { font-size: 1.65rem; font-weight: 800; color: var(--cinza-900); letter-spacing: -.03em; margin-bottom: .5rem; }
.triagem-header p  { font-size: .9rem; color: var(--cinza-500); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--cinza-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--cinza-900);
  background: var(--cinza-50); transition: var(--trans-fast);
  outline: none; font-family: var(--font);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 16px; padding-right: 2.5rem; }

/* Upload elegante */
.upload-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .875rem; }
.upload-area {
  border: 1.5px dashed var(--cinza-300);
  border-radius: var(--radius); padding: 1.25rem .875rem;
  text-align: center; color: var(--cinza-400); font-size: .8rem;
  cursor: pointer; transition: var(--trans-fast); background: var(--cinza-50);
  display: block;
}
.upload-area:hover { border-color: var(--azul-400); background: var(--azul-50); color: var(--azul-500); }
.upload-area input { display: none; }
.upload-area-icon { font-size: 1.5rem; margin-bottom: .4rem; display: block; }
.upload-label { display: block; font-weight: 500; margin-top: .2rem; font-size: .78rem; line-height: 1.4; }

/* Aviso jurídico */
.aviso-juridico {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: .8rem; color: #78350f; margin-top: 1.5rem; line-height: 1.6;
}
.sucesso-msg {
  background: #f0fdf4; border: 2px solid var(--verde-600);
  border-radius: var(--radius-lg); padding: 2.5rem; text-align: center;
}
.sucesso-msg h3 { color: var(--verde-600); font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }

/* ── CTA Banner – cinematic dark ─────────────────────── */
.cta-banner {
  background: var(--hero-bg);
  color: #fff; padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, var(--glow-blue) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(167,139,250,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(59,130,246,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.cta-banner h2 {
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 800;
  margin-bottom: 1rem; letter-spacing: -.04em; position: relative; z-index: 1;
}
.cta-banner p  {
  font-size: 1.1rem; color: rgba(255,255,255,.55);
  margin-bottom: 2.5rem; position: relative; z-index: 1; max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer Premium ──────────────────────────────────── */
.footer { background: var(--cinza-900); color: rgba(255,255,255,.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .875rem; display: flex; align-items: center; gap: .6rem; }
.footer-logo .logo-icon { width: 30px; height: 30px; border-radius: 7px; background: linear-gradient(135deg,var(--azul-700),var(--azul-500)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: .875rem; margin-top: 1.5rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .9rem; transition: var(--trans-fast); border: 1px solid rgba(255,255,255,.08); }
.footer-social a:hover { background: rgba(255,255,255,.15); color: #fff; }
.footer-titulo { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .625rem; }
.footer ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer ul li.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 1.75rem; }
.footer-aviso {
  font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6;
  background: rgba(255,255,255,.04); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.75rem;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: .5rem; color: rgba(255,255,255,.3); }

/* ── Área do Cliente / Admin (mantidas) ─────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cinza-50); padding: 2rem; }
.auth-box { background: #fff; border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); border: 1px solid var(--cinza-200); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo h1 { font-size: 1.2rem; font-weight: 800; color: var(--azul-800); margin-top: .5rem; }
.auth-logo p  { font-size: .85rem; color: var(--cinza-400); margin-top: .2rem; }

.dashboard   { display: flex; min-height: 100vh; }
.sidebar     { width: 260px; background: var(--cinza-900); color: #fff; padding: 1.5rem 0; flex-shrink: 0; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 50; }
.sidebar-logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1rem; font-size: .975rem; font-weight: 800; display: flex; align-items: center; gap: .6rem; }
.sidebar-logo span { color: #93c5fd; }
.sidebar-menu { list-style: none; }
.sidebar-menu li a { display: flex; align-items: center; gap: .75rem; padding: .7rem 1.5rem; font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--trans-fast); }
.sidebar-menu li a:hover, .sidebar-menu li a.active { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-menu li a i { width: 16px; text-align: center; }
.sidebar-section { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.3); padding: 1rem 1.5rem .3rem; text-transform: uppercase; letter-spacing: .08em; }
.main-content { margin-left: 260px; flex: 1; padding: 2rem; background: var(--cinza-50); min-height: 100vh; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--cinza-200); }
.topbar h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.user-info { display: flex; align-items: center; gap: .75rem; font-size: .875rem; }
.user-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--azul-500),var(--azul-700)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; }

.stat-card { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.stat-num   { font-size: 2.25rem; font-weight: 800; color: var(--azul-600); letter-spacing: -.04em; }
.stat-label { font-size: .82rem; color: var(--cinza-500); margin-top: .2rem; font-weight: 500; }
.stat-icon  { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .875rem; }
.stat-azul    { background: var(--azul-50);  color: var(--azul-500); }
.stat-verde   { background: #dcfce7; color: var(--verde-600); }
.stat-amarelo { background: #fffbeb; color: var(--amarelo); }
.stat-vermelho{ background: #fee2e2; color: var(--vermelho); }

.card { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--cinza-100); }
.card-title  { font-size: .975rem; font-weight: 700; }

/* Tabelas */
.table-wrap { overflow-x: auto; }
table  { width: 100%; border-collapse: collapse; font-size: .86rem; }
th     { background: var(--cinza-50); padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--cinza-500); border-bottom: 1px solid var(--cinza-200); white-space: nowrap; }
td     { padding: .875rem 1rem; border-bottom: 1px solid var(--cinza-100); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td  { background: var(--cinza-50); }

/* Status badges */
.status-badge { display: inline-flex; align-items: center; gap: .3rem; padding: .275rem .75rem; border-radius: var(--radius-full); font-size: .75rem; font-weight: 600; white-space: nowrap; }
/* Status de processo — fase interna */
.status-recebido              { background: #dbeafe; color: #1d4ed8; }
.status-em_analise            { background: #fef3c7; color: #b45309; }
.status-aguardando_documentos { background: #fee2e2; color: #b91c1c; }
.status-defesa_pronta         { background: #dcfce7; color: #15803d; }
/* Protocolado */
.status-protocolado           { background: #e0e7ff; color: #4338ca; }
.status-protocolado_orgao     { background: #c7d2fe; color: #3730a3; }
/* Acompanhamento no órgão */
.status-recebido_orgao        { background: #e0f2fe; color: #0369a1; }
.status-em_analise_orgao      { background: #fef9c3; color: #854d0e; }
.status-em_julgamento         { background: #fde8d8; color: #9a3412; }
.status-aguardando_julgamento { background: #fce7f3; color: #9d174d; }
/* Resultado */
.status-deferido              { background: #bbf7d0; color: #14532d; }
.status-indeferido            { background: #fee2e2; color: #7f1d1d; }
.status-parcialmente_deferido { background: #d1fae5; color: #065f46; }
.status-encaminhado_judicial  { background: #f3e8ff; color: #581c87; }
.status-concluido             { background: #d1fae5; color: #065f46; }
/* Outros */
.status-aguardando            { background: #fef3c7; color: #b45309; }
.status-contatado             { background: #dbeafe; color: #1d4ed8; }
.status-convertido            { background: #dcfce7; color: #15803d; }
.status-pago                  { background: #dcfce7; color: #15803d; }
.status-pendente              { background: #fee2e2; color: #b91c1c; }

/* Timeline */
.processo-timeline { list-style: none; position: relative; padding-left: 2rem; }
.processo-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--cinza-200); }
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.7rem; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--cinza-300); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--cinza-200); }
.timeline-item.done::before   { background: var(--verde-600); box-shadow: 0 0 0 2px #dcfce7; }
.timeline-item.active::before { background: var(--azul-500); box-shadow: 0 0 0 2px var(--azul-100, #dbeafe); animation: pulse-ring 2s infinite; }
.timeline-data { font-size: .75rem; color: var(--cinza-400); margin-top: .2rem; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal-box { background: #fff; border-radius: var(--radius-xl); padding: 2rem; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-xl); }
.modal-close { position: absolute; top: 1rem; right: 1rem; border: none; background: var(--cinza-100); border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; color: var(--cinza-600); transition: var(--trans-fast); }
.modal-close:hover { background: var(--cinza-200); }

/* Toast */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
.toast { background: var(--cinza-900); color: #fff; padding: .875rem 1.25rem; border-radius: var(--radius); font-size: .875rem; box-shadow: var(--shadow-lg); animation: slideIn .3s ease; max-width: 320px; display: flex; align-items: center; gap: .625rem; border: 1px solid rgba(255,255,255,.08); }
.toast.success { background: #15803d; }
.toast.error   { background: var(--vermelho); }

/* WhatsApp float */
/* Botão WhatsApp flutuante — único, limpo, sem conflito com FAB */
.wpp-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 999;
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg,#25D366,#1ebe57);
  color: #fff; padding: .75rem 1.375rem;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--trans);
  text-decoration: none;
}
.wpp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: #fff; }
.wpp-float-label { font-weight: 600; font-size: .875rem; }
@media (max-width: 480px) {
  /* Em telas muito pequenas, mostrar só o ícone */
  .wpp-float { padding: .85rem; border-radius: 50%; }
  .wpp-float-label { display: none; }
}

/* Spinner */
.spinner { border: 2.5px solid var(--cinza-200); border-top-color: var(--azul-500); border-radius: 50%; width: 24px; height: 24px; animation: spin .7s linear infinite; }

/* Grids legados */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }

/* ── Responsivo ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner    { gap: 3rem; }
  .planos-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual   { order: -1; max-width: 520px; margin: 0 auto; }
  .hero-col-left { text-align: center; }
  .hero-col-left .hero-badge { margin: 0 auto 1.5rem; }
  .hero-col-left .hero-sub   { margin-left: auto; margin-right: auto; }
  .hero-col-left .hero-proof { justify-content: center; }
  .hero-col-left .hero-actions { justify-content: center; }
  .float-card-1  { left: -1rem; }
  .float-card-2  { right: -1rem; }
  .plataforma-inner { grid-template-columns: 1fr; }
  .como-grid, .etapas { grid-template-columns: 1fr 1fr; }
  .como-grid::before { display: none; }
  .dores-grid, .problema-grid { grid-template-columns: 1fr 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .stats-band    { grid-template-columns: 1fr 1fr; }
  .grid-3        { grid-template-columns: 1fr 1fr; }
  section        { padding: 4rem 0; }
}
@media (max-width: 640px) {
  section        { padding: 3rem 0; }
  .hero          { padding: 4.5rem 0 3.5rem; }
  .hero h1       { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-visual   { display: none; }
  .navbar-nav    { display: none; }
  .hamburger     { display: flex; }
  .dores-grid, .problema-grid,
  .grid-2, .grid-3, .grid-4,
  .diferenciais-grid, .como-grid, .etapas,
  .footer-grid, .planos-grid, .stats-band { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .upload-grid   { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof    { gap: 1rem; justify-content: center; }
  .sidebar       { transform: translateX(-100%); transition: transform .3s; }
  .sidebar.open  { transform: translateX(0); }
  .main-content  { margin-left: 0; }
  .topbar        { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .triagem-box   { padding: 1.75rem 1.25rem; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .stats-band    { gap: .75rem; }
  .planos-grid   { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
  .hero-col-left { text-align: center; }
  .hero-col-left .hero-actions { justify-content: center; }
}

/* ── Páginas SEO internas ──────────────────────────── */
.seo-hero {
  background: linear-gradient(160deg, var(--azul-900) 0%, var(--azul-700) 100%);
  color: #fff; padding: 4rem 0 3.5rem;
}
.seo-hero h1 { font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: .875rem; }
.seo-hero h1 em { color: #93c5fd; font-style: normal; }
.seo-hero p  { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px; line-height: 1.7; }
.seo-content { background: #fff; padding: 5rem 0; }
.seo-sidebar {
  background: var(--cinza-50); border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: sticky; top: 80px;
}
.seo-sidebar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.info-box {
  background: var(--azul-50); border: 1px solid var(--azul-100);
  border-radius: var(--radius); padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.info-box h4 { font-size: .875rem; font-weight: 700; color: var(--azul-700); margin-bottom: .5rem; }
.info-box p  { font-size: .84rem; color: var(--azul-600); line-height: 1.6; }
.prazo-urgente { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.5rem; }
.prazo-urgente h4 { font-size: .875rem; font-weight: 700; color: #b91c1c; margin-bottom: .4rem; }
.prazo-urgente p  { font-size: .84rem; color: #991b1b; line-height: 1.6; }

/* Highlight accent */
.highlight-text { background: linear-gradient(135deg, var(--azul-600), var(--azul-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight-green { background: linear-gradient(135deg, var(--verde-600), var(--verde-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════════════
   WIZARD PREMIUM – Formulário Multi-Etapas v3
   ══════════════════════════════════════════════════════════ */

/* Seção container do wizard */
.wizard-section {
  background: linear-gradient(160deg, #0f2040 0%, #1a3878 60%, #1e4fa0 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.wizard-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,.12) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(16,185,129,.08) 0%, transparent 40%);
  pointer-events: none;
}
.wizard-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Header da seção */
.wizard-section-header {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.wizard-section-header .section-eyebrow {
  background: rgba(255,255,255,.1);
  color: #93c5fd;
  border-color: rgba(255,255,255,.15);
}
.wizard-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: #fff;
}
.wizard-section-header h2 em { color: #93c5fd; font-style: normal; }
.wizard-section-header p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Card principal do wizard */
.wizard-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Cabeçalho do card com steps */
.wizard-head {
  background: linear-gradient(135deg, var(--azul-900) 0%, var(--azul-700) 100%);
  padding: 2rem 2.5rem 0;
}
.wizard-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
}
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255,255,255,.15);
  z-index: 0;
}
.wizard-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  position: relative;
  z-index: 1;
}
.wizard-step-line {
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 0;
  transition: background .4s ease;
}
.wizard-step:last-child .wizard-step-line { display: none; }
.wizard-step.done .wizard-step-line { background: var(--verde-600); }
.wizard-step.active .wizard-step-line { background: rgba(255,255,255,.15); }

.wizard-step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.wizard-step.active .wizard-step-circle {
  background: #fff;
  border-color: #fff;
  color: var(--azul-700);
  box-shadow: 0 0 0 6px rgba(255,255,255,.15);
  transform: scale(1.1);
}
.wizard-step.done .wizard-step-circle {
  background: var(--verde-600);
  border-color: var(--verde-600);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(22,163,74,.3);
}
.wizard-step-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.3;
  transition: color .3s;
  white-space: nowrap;
}
.wizard-step.active .wizard-step-label { color: rgba(255,255,255,.9); }
.wizard-step.done  .wizard-step-label { color: rgba(255,255,255,.65); }

/* Barra de progresso contínua */
.wizard-progress-wrap {
  padding: 0 2.5rem 1.5rem;
}
.wizard-progress-track {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--verde-600), #4ade80);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* Corpo do wizard */
.wizard-body {
  padding: 2.5rem 2.5rem 2rem;
}

/* Etapa individual */
.wizard-pane {
  display: none;
  animation: wizardFadeIn .35s ease both;
}
.wizard-pane.active { display: block; }
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wizardFadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-16px); }
}

/* Título da etapa */
.wizard-pane-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cinza-900);
  letter-spacing: -.03em;
  margin-bottom: .35rem;
}
.wizard-pane-sub {
  font-size: .875rem;
  color: var(--cinza-500);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Grid de campos dentro do wizard */
.wiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.wiz-grid .full { grid-column: 1 / -1; }

/* Campo de formulário premium */
.wiz-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.wiz-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cinza-700);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.wiz-label i { color: var(--azul-400); font-size: .75rem; }
.wiz-label .req { color: var(--vermelho); font-size: .7rem; margin-left: .15rem; }

.wiz-input {
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--cinza-200);
  border-radius: 10px;
  font-size: .9375rem;
  color: var(--cinza-900);
  background: var(--cinza-50);
  transition: all .2s ease;
  outline: none;
  font-family: var(--font);
  -webkit-appearance: none;
  width: 100%;
}
.wiz-input:focus {
  border-color: var(--azul-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.08);
}
.wiz-input.valid {
  border-color: var(--verde-600);
  background: #f0fdf4;
}
.wiz-input.error {
  border-color: var(--vermelho);
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}
.wiz-input::placeholder { color: var(--cinza-400); }
select.wiz-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  background-size: 16px;
  padding-right: 2.75rem;
  cursor: pointer;
}
textarea.wiz-input {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Chips de seleção rápida */
.wiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .35rem;
}
.wiz-chip {
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--cinza-200);
  background: #fff;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cinza-600);
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
}
.wiz-chip:hover { border-color: var(--azul-400); color: var(--azul-600); background: var(--azul-50); }
.wiz-chip.selected {
  border-color: var(--azul-500);
  background: var(--azul-500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

/* Upload premium */
.wiz-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.wiz-upload-slot {
  position: relative;
  cursor: pointer;
}
.wiz-upload-slot input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; width: 100%; height: 100%;
}
.wiz-upload-box {
  border: 2px dashed var(--cinza-300);
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
  background: var(--cinza-50);
  transition: all .25s ease;
  pointer-events: none;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.wiz-upload-slot:hover .wiz-upload-box {
  border-color: var(--azul-400);
  background: var(--azul-50);
}
.wiz-upload-slot.uploaded .wiz-upload-box {
  border-color: var(--verde-600);
  background: #f0fdf4;
  border-style: solid;
}
.wiz-upload-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cinza-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--cinza-400);
  transition: all .25s ease;
  margin: 0 auto;
}
.wiz-upload-slot:hover .wiz-upload-icon { background: var(--azul-100); color: var(--azul-500); }
.wiz-upload-slot.uploaded .wiz-upload-icon { background: #dcfce7; color: var(--verde-600); }
.wiz-upload-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--cinza-600);
  line-height: 1.35;
}
.wiz-upload-slot.uploaded .wiz-upload-name { color: var(--verde-600); }
.wiz-upload-size {
  font-size: .7rem;
  color: var(--cinza-400);
  margin-top: .1rem;
}

/* Nota de upload */
.wiz-upload-note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--cinza-500);
  background: var(--cinza-50);
  border: 1px solid var(--cinza-200);
  border-radius: 8px;
  padding: .75rem 1rem;
}
.wiz-upload-note i { color: var(--azul-400); flex-shrink: 0; }

/* Tela de revisão / confirmação */
.wiz-review {
  background: var(--cinza-50);
  border: 1px solid var(--cinza-200);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.wiz-review-head {
  background: linear-gradient(135deg, var(--azul-50), #fff);
  border-bottom: 1px solid var(--cinza-200);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.wiz-review-head-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--azul-100); color: var(--azul-600);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.wiz-review-head-title {
  font-size: .875rem; font-weight: 700; color: var(--cinza-800);
}
.wiz-review-body {
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
}
.wiz-review-item {}
.wiz-review-item-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cinza-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .2rem;
}
.wiz-review-item-value {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cinza-800);
}
.wiz-review-item.full { grid-column: 1 / -1; }

/* Botões de navegação do wizard */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--cinza-100);
  background: var(--cinza-50);
  gap: 1rem;
}
.wizard-nav-left { display: flex; align-items: center; gap: .75rem; }
.wizard-nav-right { display: flex; align-items: center; gap: .75rem; }

.btn-wiz-prev {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.375rem;
  border-radius: 10px;
  font-size: .875rem; font-weight: 600;
  color: var(--cinza-600);
  background: #fff;
  border: 1.5px solid var(--cinza-200);
  cursor: pointer; transition: all .2s ease;
  font-family: var(--font);
}
.btn-wiz-prev:hover { background: var(--cinza-50); border-color: var(--cinza-300); color: var(--cinza-800); }
.btn-wiz-prev:disabled { opacity: .4; pointer-events: none; }

.btn-wiz-next {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 10px;
  font-size: .9375rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--azul-600) 0%, var(--azul-700) 100%);
  border: none; cursor: pointer; transition: all .25s ease;
  font-family: var(--font);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
  letter-spacing: -.01em;
}
.btn-wiz-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.4);
  background: linear-gradient(135deg, var(--azul-500) 0%, var(--azul-600) 100%);
}

.btn-wiz-submit {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2.25rem;
  border-radius: 10px;
  font-size: .9375rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--verde-600) 0%, var(--verde-700) 100%);
  border: none; cursor: pointer; transition: all .25s ease;
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
  letter-spacing: -.01em;
}
.btn-wiz-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(22,163,74,.45);
}
.btn-wiz-submit:disabled {
  opacity: .7; pointer-events: none;
}

/* Passo atual indicator na nav */
.wizard-nav-step-info {
  font-size: .78rem;
  color: var(--cinza-400);
  font-weight: 500;
}

/* Mensagem de sucesso */
.wizard-success {
  padding: 2rem 2rem;
  text-align: center;
  display: none;
}
.wizard-success.show { display: block; animation: wizardFadeIn .5s ease both; }

/* Estados internos da tela de resultado — display controlado exclusivamente via JS */
#wiz-ia-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
#wiz-ia-loading.ativo { display: flex; }

#wiz-ia-resultado { display: none; width: 100%; text-align: left; }
#wiz-ia-resultado.ativo { display: block; }

#wiz-ia-fallback { display: none; text-align: center; }
#wiz-ia-fallback.ativo { display: block; }

#wiz-ia-alerta-box { display: none; }
#wiz-ia-alerta-box.ativo { display: flex; }
.wizard-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 3px solid var(--verde-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  animation: scaleIn .5s cubic-bezier(.34,1.56,.64,1) both;
}
.wizard-success h3 {
  font-size: 1.5rem; font-weight: 800;
  color: var(--cinza-900); letter-spacing: -.03em;
  margin-bottom: .625rem;
}
.wizard-success p {
  font-size: .9375rem; color: var(--cinza-500); line-height: 1.65;
  max-width: 420px; margin: 0 auto 2rem;
}
.wizard-protocol {
  display: inline-flex; align-items: center; gap: .625rem;
  background: var(--azul-50); border: 1px solid var(--azul-100);
  border-radius: var(--radius-sm);
  padding: .625rem 1.25rem;
  font-size: .85rem; font-weight: 700; color: var(--azul-700);
  margin-bottom: 2rem;
}

/* Aviso legal dentro do wizard */
.wiz-aviso {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .78rem; color: #78350f; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.wiz-aviso i { color: #d97706; flex-shrink: 0; margin-top: .1rem; }

/* ── FAB – Botão flutuante triagem ───────────────────── */
.fab-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 400;
  display: inline-flex; align-items: center; gap: .625rem;
  background: linear-gradient(135deg, var(--verde-600) 0%, #15803d 100%);
  color: #fff;
  border-radius: var(--radius-full);
  padding: .875rem 1.5rem;
  font-size: .875rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(22,163,74,.4), 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none;
  /* Começa invisível e deslocado */
  opacity: 0;
  transform: translateY(16px) scale(.95);
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.4,0,.2,1),
              transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .2s ease,
              padding .25s ease;
  white-space: nowrap;
}
/* Estado visível — controlado por JS */
.fab-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-cta:hover {
  box-shadow: 0 12px 40px rgba(22,163,74,.5), 0 4px 12px rgba(0,0,0,.2);
  transform: translateY(-3px) scale(1.03);
}
.fab-cta:active {
  transform: translateY(0) scale(.98);
}
/* Pulsação suave no ícone */
.fab-cta-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.fab-cta-label { letter-spacing: -.01em; }

/* Em mobile: só ícone (label some), sobe acima da barra mobile */
@media (max-width: 640px) {
  .fab-cta {
    bottom: 5.5rem; right: 1rem;
    padding: .875rem;
    border-radius: 50%;
    width: 52px; height: 52px;
    justify-content: center;
  }
  .fab-cta-label { display: none; }
  .fab-cta-icon { width: auto; height: auto; background: none; font-size: 1.1rem; }
}

/* ── CTA FIXO MOBILE ─────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  border-top: 1px solid var(--cinza-200);
  padding: .875rem 1.25rem calc(.875rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
.mobile-cta-bar-inner {
  display: flex; align-items: center; gap: .75rem;
  max-width: 500px; margin: 0 auto;
}
.mobile-cta-bar .btn { flex: 1; padding: .875rem 1rem; font-size: .9rem; }

/* ── HERO V3 – melhorias tech/fintech ─────────────────── */
/* Badge animada no hero */
.hero-live-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--radius-full);
  padding: .35rem 1rem;
  font-size: .78rem; font-weight: 700;
  color: var(--verde-600);
  margin-bottom: .875rem;
}
.hero-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--verde-600);
  animation: pulse-ring 2s ease infinite;
  flex-shrink: 0;
}

/* Linha de logos tech no hero */
.hero-tech-strip {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap; margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--cinza-200);
}
.hero-tech-label {
  font-size: .72rem; font-weight: 700;
  color: var(--cinza-400); text-transform: uppercase;
  letter-spacing: .06em; white-space: nowrap;
}
.hero-tech-items {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.hero-tech-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--cinza-500);
  background: var(--cinza-50); border: 1px solid var(--cinza-200);
  padding: .35rem .875rem; border-radius: var(--radius-full);
}
.hero-tech-item i { color: var(--azul-400); font-size: .75rem; }

/* Metric mini no dashboard */
.hero-db-metric {
  display: flex; align-items: center; gap: .375rem;
  font-size: .72rem; font-weight: 600;
  padding: .25rem .625rem;
  border-radius: 999px;
  margin-top: .375rem;
}
.hero-db-metric.up { background: #dcfce7; color: var(--verde-600); }
.hero-db-metric.warn { background: #fef3c7; color: #b45309; }
.hero-db-metric i { font-size: .65rem; }

/* Activity feed no dashboard hero */
.hero-db-activity {
  border-top: 1px solid var(--cinza-100);
  margin-top: .875rem;
  padding-top: .875rem;
}
.hero-db-activity-title {
  font-size: .7rem; font-weight: 700; color: var(--cinza-400);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .625rem;
}
.hero-db-activity-item {
  display: flex; align-items: center; gap: .625rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--cinza-50);
}
.hero-db-activity-item:last-child { border-bottom: none; }
.hero-db-activity-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.hero-db-activity-text {
  font-size: .71rem; color: var(--cinza-600); font-weight: 500; flex: 1;
}
.hero-db-activity-time {
  font-size: .68rem; color: var(--cinza-400); white-space: nowrap;
}

/* Chip de urgência no hero */
.hero-urgency-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff7ed; border: 1px solid #fed7aa;
  color: #c2410c; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .875rem; margin-bottom: 1rem;
}

/* ── Responsivo do wizard ─────────────────────────────── */
@media (max-width: 640px) {
  .wizard-head { padding: 1.5rem 1.25rem 0; }
  .wizard-progress-wrap { padding: 0 1.25rem 1.25rem; }
  .wizard-body { padding: 1.75rem 1.25rem 1.25rem; }
  .wizard-nav  { padding: 1.25rem; flex-direction: column; }
  .wizard-nav-left, .wizard-nav-right { width: 100%; }
  .btn-wiz-next, .btn-wiz-submit, .btn-wiz-prev { width: 100%; justify-content: center; }
  .wiz-grid    { grid-template-columns: 1fr; }
  .wiz-upload-grid { grid-template-columns: 1fr; }
  .wiz-review-body { grid-template-columns: 1fr; }
  .wizard-steps { gap: 0; }
  .wizard-step-label { display: none; }
  .wizard-success { padding: 2.5rem 1.25rem; }
  .mobile-cta-bar { display: block; }
  body.has-wizard { padding-bottom: 80px; }
}
@media (max-width: 900px) {
  .wiz-upload-grid { grid-template-columns: 1fr 1fr; }
  .wizard-card { border-radius: 16px; }
}
@media (max-width: 480px) {
  .wizard-step-circle { width: 32px; height: 32px; font-size: .75rem; }
}

/* ═══════════════════════════════════════════════════════════
   SaaS PREMIUM v4.0 – Novas seções e evoluções
═══════════════════════════════════════════════════════════ */

/* ── Planos v4 – 4 planos reformulados ───────────────────── */
/* ── Grid de planos ──────────────────────────────────────── */
.planos-v4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start; /* cada card cresce pelo próprio conteúdo, flex: 1 na lista nivela o botão */
}

/* ── Card base ───────────────────────────────────────────── */
.plano-v4-card {
  background: #fff;
  border: 1.5px solid var(--cinza-200);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.plano-v4-card:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 8px 32px rgba(37,99,235,.1);
  transform: translateY(-3px);
}

/* ── Card destaque (Motorista Profissional) ──────────────── */
.plano-v4-card.destaque {
  background: linear-gradient(160deg, #1e3a8a 0%, #1d4ed8 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(37,99,235,.35);
  color: #fff;
}
.plano-v4-card.destaque:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(37,99,235,.45);
  border-color: transparent;
}

/* ── Card frota ──────────────────────────────────────────── */
.plano-v4-card.frota {
  background: var(--cinza-50);
  border-color: var(--cinza-200);
  border-style: dashed;
}
.plano-v4-card.frota:hover {
  border-color: rgba(37,99,235,.3);
  border-style: dashed;
  background: #fff;
}

/* ── Badge ───────────────────────────────────────────────── */
.plano-v4-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .65rem;
  font-weight: 800;
  padding: .25rem .75rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plano-v4-badge.badge-popular {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.plano-v4-card:not(.destaque) .plano-v4-badge {
  background: var(--azul-50);
  color: var(--azul-700);
  border: 1px solid var(--azul-100);
}

/* ── Ícone ───────────────────────────────────────────────── */
.plano-v4-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
/* ícone nos cards normais */
.plano-v4-card:not(.destaque):not(.frota) .plano-v4-icon {
  background: var(--azul-50);
  border: 1px solid var(--azul-100);
  color: var(--azul-600);
}
.plano-v4-card:not(.destaque):not(.frota) .plano-v4-icon i { color: var(--azul-600) !important; }
/* ícone no destaque */
.plano-v4-card.destaque .plano-v4-icon {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
}
.plano-v4-card.destaque .plano-v4-icon i { color: #fff !important; }
/* ícone no frota */
.plano-v4-card.frota .plano-v4-icon {
  background: var(--azul-50);
  border: 1px solid var(--azul-100);
}
.plano-v4-card.frota .plano-v4-icon i { color: var(--azul-600) !important; }

/* ── Nome ────────────────────────────────────────────────── */
.plano-v4-name {
  font-size: .95rem; font-weight: 800;
  color: var(--cinza-900); letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.plano-v4-card.destaque .plano-v4-name { color: #fff; }
.plano-v4-card.frota .plano-v4-name   { color: var(--cinza-700); }

/* ── Descrição ───────────────────────────────────────────── */
.plano-v4-desc {
  font-size: .8rem; line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--cinza-500);
  min-height: 4.2rem; /* altura fixa para alinhar preços na mesma linha */
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.plano-v4-card.destaque .plano-v4-desc { color: rgba(255,255,255,.65); }
.plano-v4-card.frota .plano-v4-desc   { color: var(--cinza-500); }

/* ── Preço ───────────────────────────────────────────────── */
.plano-v4-preco {
  font-size: 1.9rem; font-weight: 900;
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: .2rem;
  color: var(--cinza-900);
  white-space: nowrap; /* impede quebra de linha no preço */
}
.plano-v4-card.destaque .plano-v4-preco { color: #fff; }
.plano-v4-card.frota .plano-v4-preco {
  color: var(--azul-700);
  font-size: 1.45rem; /* frota tem texto mais longo, reduz levemente */
  white-space: nowrap;
}

/* ── Per ─────────────────────────────────────────────────── */
.plano-v4-per {
  font-size: .75rem; font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--cinza-400);
}
.plano-v4-card.destaque .plano-v4-per { color: rgba(255,255,255,.5); }
.plano-v4-card.frota .plano-v4-per   { color: var(--cinza-400); }

/* ── Divisor ─────────────────────────────────────────────── */
.plano-v4-divider {
  height: 1px;
  margin-bottom: 1.25rem;
  background: var(--cinza-100);
}
.plano-v4-card.destaque .plano-v4-divider { background: rgba(255,255,255,.15); }
.plano-v4-card.frota .plano-v4-divider   { background: var(--cinza-200); }

/* ── Lista de itens ──────────────────────────────────────── */
.plano-v4-items {
  list-style: none;
  display: flex; flex-direction: column; gap: .6rem;
  flex: 1; margin-bottom: 1.75rem;
}
.plano-v4-items li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; line-height: 1.45;
  color: var(--cinza-600);
}
.plano-v4-items li::before {
  content: '';
  width: 15px; height: 15px; border-radius: 50%;
  flex-shrink: 0; margin-top: .15rem;
  background: var(--azul-50);
  border: 1px solid var(--azul-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232563eb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.plano-v4-card.destaque .plano-v4-items li { color: rgba(255,255,255,.85); }
.plano-v4-card.destaque .plano-v4-items li::before {
  background-color: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plano-v4-card.frota .plano-v4-items li { color: var(--cinza-600); }

/* botão do card Frota */
.btn-frota {
  background: transparent;
  border: 1.5px solid var(--cinza-300);
  color: var(--cinza-700);
  padding: .875rem 1rem;
  border-radius: 10px;
  font-size: .855rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  text-align: center;
  letter-spacing: -.01em;
}
.btn-frota:hover {
  background: var(--cinza-100);
  border-color: var(--cinza-400);
  color: var(--cinza-800);
}

/* ── CTA — todos iguais, só muda cor ────────────────────── */
.plano-v4-cta {
  display: flex; align-items: center; justify-content: center;
  padding: .875rem 1rem;
  border-radius: 10px;
  font-size: .855rem; font-weight: 700;
  cursor: pointer; transition: all .2s ease;
  text-decoration: none; border: 1.5px solid transparent;
  letter-spacing: -.01em;
}
/* normal e frota: outline azul */
.plano-v4-cta.outline,
.plano-v4-cta.green,
.plano-v4-cta.ghost-white {
  background: transparent;
  border-color: var(--azul-200);
  color: var(--azul-700);
}
.plano-v4-cta.outline:hover,
.plano-v4-cta.green:hover,
.plano-v4-cta.ghost-white:hover {
  background: var(--azul-50);
  border-color: var(--azul-400);
  color: var(--azul-700);
}
/* destaque: branco sólido */
.plano-v4-cta.primary {
  background: #fff;
  border-color: #fff;
  color: var(--azul-700);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.plano-v4-cta.primary:hover {
  background: var(--azul-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

@media (max-width: 1100px) { .planos-v4-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .planos-v4-grid { grid-template-columns: 1fr; } }

/* ── Serviços Avulsos ────────────────────────────────────── */
.avulsos-section { background: var(--cinza-50); padding: 5.5rem 0; }
.avulsos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.avulso-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.avulso-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul-400), var(--azul-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.avulso-card:hover { border-color: var(--azul-100); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.avulso-card:hover::after { transform: scaleX(1); }
.avulso-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--azul-50); border: 1px solid var(--azul-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-500); font-size: .95rem;
  margin-bottom: .875rem; transition: var(--trans);
}
.avulso-card:hover .avulso-icon { background: var(--azul-500); border-color: var(--azul-500); color: #fff; }
.avulso-name { font-size: .9rem; font-weight: 800; color: var(--cinza-900); margin-bottom: .25rem; }
.avulso-desc { font-size: .78rem; color: var(--cinza-500); line-height: 1.5; flex: 1; margin-bottom: .875rem; }
.avulso-orcamento {
  font-size: .78rem; font-weight: 600;
  color: var(--cinza-400);
  display: inline-flex; align-items: center; gap: .4rem;
  margin-bottom: .875rem;
  font-style: italic;
}
.avulso-link {
  font-size: .8rem; font-weight: 700; color: var(--azul-500);
  text-decoration: none; display: flex; align-items: center; gap: .35rem;
  transition: var(--trans);
}
.avulso-link:hover { color: var(--azul-700); gap: .55rem; }
@media (max-width: 1100px) { .avulsos-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px)  { .avulsos-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .avulsos-grid { grid-template-columns: 1fr; } }

/* ── Monitoramento Inteligente ───────────────────────────── */
.monitor-section { background: var(--branco); padding: 5.5rem 0; }
.monitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.monitor-features { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.75rem; }
.monitor-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cinza-50);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius);
  transition: var(--trans);
}
.monitor-feature:hover { border-color: var(--azul-200); background: var(--azul-50); transform: translateX(4px); }
.monitor-feature-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .9rem;
}
.monitor-feature-icon.blue  { background: var(--azul-50); color: var(--azul-500); border: 1px solid var(--azul-100); }
.monitor-feature-icon.green { background: #dcfce7; color: var(--verde-600); border: 1px solid #bbf7d0; }
.monitor-feature-icon.amber { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.monitor-feature-icon.purple{ background: #ede9fe; color: #7c3aed; border: 1px solid #ddd6fe; }
.monitor-feature-icon.red   { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }
.monitor-feature-title { font-size: .875rem; font-weight: 700; color: var(--cinza-900); }
.monitor-feature-desc  { font-size: .78rem; color: var(--cinza-500); margin-top: .15rem; line-height: 1.45; }

/* Mockup de monitoramento */
.monitor-mockup {
  background: var(--branco);
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.monitor-mockup-bar {
  background: var(--cinza-900);
  padding: .625rem 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.monitor-mockup-dots { display: flex; gap: .35rem; }
.monitor-mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.monitor-mockup-dots span:nth-child(1) { background: #ef4444; }
.monitor-mockup-dots span:nth-child(2) { background: #f59e0b; }
.monitor-mockup-dots span:nth-child(3) { background: #22c55e; }
.monitor-mockup-url {
  font-size: .72rem; color: var(--cinza-400);
  background: var(--cinza-800); padding: .2rem .75rem;
  border-radius: 6px; flex: 1; text-align: center;
}
.monitor-mockup-body { padding: 1.25rem; }
.monitor-stat-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: .75rem; margin-bottom: 1rem;
}
.monitor-stat {
  background: var(--cinza-50); border: 1px solid var(--cinza-100);
  border-radius: var(--radius); padding: .875rem;
  text-align: center;
}
.monitor-stat-num {
  font-size: 1.4rem; font-weight: 900;
  color: var(--cinza-900); letter-spacing: -.03em;
}
.monitor-stat-num.green { color: var(--verde-600); }
.monitor-stat-num.amber { color: #d97706; }
.monitor-stat-label { font-size: .7rem; color: var(--cinza-400); margin-top: .2rem; }
.monitor-alert {
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: .5rem;
  font-size: .78rem; font-weight: 600;
  border: 1px solid transparent;
}
.monitor-alert.red   { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.monitor-alert.amber { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.monitor-alert.green { background: #f0fdf4; border-color: #bbf7d0; color: #14532d; }
.monitor-alert.blue  { background: var(--azul-50); border-color: var(--azul-100); color: var(--azul-800); }
.monitor-alert-icon { font-size: .85rem; flex-shrink: 0; }
.monitor-alert-time { margin-left: auto; font-size: .68rem; font-weight: 500; opacity: .6; white-space: nowrap; }

@media (max-width: 900px) {
  .monitor-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Seção LGPD & Segurança ──────────────────────────────── */
.lgpd-section {
  background: linear-gradient(160deg, var(--cinza-900) 0%, var(--cinza-800) 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.lgpd-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(37,99,235,.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(22,163,74,.08) 0%, transparent 50%);
  pointer-events: none;
}
.lgpd-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.lgpd-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; color: #fff;
  letter-spacing: -.04em; line-height: 1.2;
  margin-bottom: 1rem;
}
.lgpd-title em { color: #60a5fa; font-style: normal; }
.lgpd-sub { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7; margin-bottom: 2rem; }
.lgpd-badges { display: flex; flex-wrap: wrap; gap: .625rem; }
.lgpd-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600;
  padding: .35rem .875rem; border-radius: var(--radius-full);
}
.lgpd-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .875rem;
}
.lgpd-feature {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--trans);
}
.lgpd-feature:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.lgpd-feature-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin-bottom: .75rem;
}
.lgpd-feature-title { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.lgpd-feature-desc  { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.5; }

@media (max-width: 900px) {
  .lgpd-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lgpd-features { grid-template-columns: 1fr; }
}

/* ── Aviso Jurídico Premium ──────────────────────────────── */
.aviso-juridico-section {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f0fe 100%);
  border-top: 2px solid rgba(37,99,235,.15);
  border-bottom: 2px solid rgba(37,99,235,.15);
  padding: 4.5rem 0;
  position: relative;
}
.aviso-juridico-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.aviso-juridico-box {
  background: #fff;
  border: 1.5px solid rgba(37,99,235,.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(37,99,235,.07), 0 1px 4px rgba(0,0,0,.04);
  position: relative;
}
.aviso-juridico-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cinza-100);
}
.aviso-juridico-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--azul-50); border: 1px solid var(--azul-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-500); font-size: 1.2rem; flex-shrink: 0;
}
.aviso-juridico-header-title {
  font-size: 1rem; font-weight: 800; color: var(--cinza-900);
  letter-spacing: -.02em;
}
.aviso-juridico-header-sub { font-size: .8rem; color: var(--cinza-400); margin-top: .15rem; }
.aviso-juridico-body { display: flex; flex-direction: column; gap: 1rem; }
.aviso-juridico-item {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1rem 1.25rem;
  background: var(--cinza-50);
  border-radius: var(--radius);
  border: 1px solid var(--cinza-100);
}
.aviso-juridico-item-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--azul-50); border: 1px solid var(--azul-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-500); font-size: .8rem; flex-shrink: 0;
}
.aviso-juridico-item p { font-size: .82rem; color: var(--cinza-600); line-height: 1.65; }
.aviso-juridico-item strong { color: var(--cinza-800); }

/* ── Avatar depoimentos (SVG legado + foto real + iniciais) ── */
.depoimento-avatar-svg,
.depoimento-avatar-foto {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  border: 2px solid rgba(255,255,255,.7);
  object-fit: cover;
  display: block;
}
.depoimento-avatar-svg svg {
  width: 100%; height: 100%; display: block;
}
/* Avatar com iniciais — substitui fotos de IA */
.depoimento-avatar-inicial {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff;
  letter-spacing: .02em;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.15);
  user-select: none;
}

/* ── Prova Social v4 ─────────────────────────────────────── */
.stats-v4-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--branco);
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3.5rem;
}
.stat-v4-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--cinza-100);
  transition: var(--trans);
}
.stat-v4-item:last-child { border-right: none; }
.stat-v4-item:hover { background: var(--azul-50); }
.stat-v4-num {
  font-size: 1.9rem; font-weight: 900;
  color: var(--azul-600); letter-spacing: -.04em;
  line-height: 1;
}
.stat-v4-label { font-size: .75rem; color: var(--cinza-500); margin-top: .35rem; font-weight: 500; }
.stat-v4-sub   { font-size: .7rem;  color: var(--cinza-400); margin-top: .15rem; }
@media (max-width: 900px) {
  .stats-v4-band { grid-template-columns: repeat(3,1fr); }
  .stat-v4-item { border-bottom: 1px solid var(--cinza-100); }
}
@media (max-width: 640px)  { .stats-v4-band { grid-template-columns: 1fr 1fr; } }

/* ── Hero v4 refinamentos ────────────────────────────────── */
.hero-cta-group {
  display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.hero-meta-row {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; margin-top: .5rem;
}
.hero-meta-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500;
}
.hero-meta-item i { color: #4ade80; font-size: .75rem; }

/* ── Seção Ecossistema / Plataforma v4 ───────────────────── */
.ecossistema-section { background: var(--cinza-50); padding: 5.5rem 0; }
.ecossistema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ecossistema-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--trans);
}
.ecossistema-card:hover { border-color: var(--azul-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ecossistema-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 1rem;
}
.eco-blue   { background: var(--azul-50);  border: 1px solid var(--azul-100);  color: var(--azul-500); }
.eco-green  { background: #dcfce7; border: 1px solid #bbf7d0; color: var(--verde-600); }
.eco-amber  { background: #fef3c7; border: 1px solid #fde68a; color: #d97706; }
.eco-purple { background: #ede9fe; border: 1px solid #ddd6fe; color: #7c3aed; }
.eco-red    { background: #fee2e2; border: 1px solid #fecaca; color: #dc2626; }
.eco-teal   { background: #ccfbf1; border: 1px solid #99f6e4; color: #0d9488; }
.ecossistema-card h4 { font-size: .9rem; font-weight: 800; color: var(--cinza-900); margin-bottom: .35rem; }
.ecossistema-card p  { font-size: .78rem; color: var(--cinza-500); line-height: 1.55; }
.ecossistema-card .eco-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 700;
  background: var(--cinza-50); color: var(--cinza-500);
  border: 1px solid var(--cinza-200);
  padding: .2rem .6rem; border-radius: var(--radius-full);
  margin-top: .875rem;
}
@media (max-width: 900px) { .ecossistema-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ecossistema-grid { grid-template-columns: 1fr; } }

/* ── Pricing toggle / comparação ────────────────────────── */
.planos-v4-note {
  background: var(--cinza-50);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--cinza-600);
}
.planos-v4-note i { color: var(--azul-400); font-size: 1.1rem; flex-shrink: 0; }

/* ── Notificação badge flutuante ─────────────────────────── */
.notif-float {
  position: absolute;
  top: -12px; right: -12px;
  background: #ef4444;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: .65rem; font-weight: 800;
  padding: .2rem .5rem;
  border: 2px solid var(--branco);
  animation: pulse-ring 2s ease infinite;
  pointer-events: none;
}

/* ── Footer v4 ───────────────────────────────────────────── */
.footer-v4-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
}
.footer-v4-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-v4-links a {
  font-size: .78rem; color: rgba(255,255,255,.4);
  text-decoration: none; transition: var(--trans);
}
.footer-v4-links a:hover { color: rgba(255,255,255,.75); }
.footer-lgpd-seal {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .75rem; border-radius: var(--radius-full);
}

/* ── Micro-animações premium ─────────────────────────────── */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
.anim-slide-right { animation: none; opacity: 1; transform: none; }
.anim-slide-up    { animation: none; opacity: 1; transform: none; }
.anim-scale-in    { animation: none; opacity: 1; transform: none; }
.anim-delay-1, .anim-delay-2, .anim-delay-3, .anim-delay-4, .anim-delay-5 { animation-delay: 0s; }

/* Scroll reveal — animações desativadas, elementos sempre visíveis */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1, .reveal.delay-2, .reveal.delay-3, .reveal.delay-4 { transition-delay: 0s; }

/* ── Tabs de planos (mensal/anual) ───────────────────────── */
.planos-toggle {
  display: inline-flex;
  background: var(--cinza-100);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 2.5rem;
  gap: 2px;
}
.planos-toggle-btn {
  padding: .45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 700;
  cursor: pointer; border: none; background: transparent;
  color: var(--cinza-500); transition: var(--trans);
}
.planos-toggle-btn.active {
  background: var(--branco);
  color: var(--azul-600);
  box-shadow: var(--shadow-xs);
}

/* ── Seção "Como Funciona" v4 ────────────────────────────── */
.como-v4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.como-v4-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul-200), var(--azul-200), transparent);
  pointer-events: none;
}
.como-v4-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.como-v4-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--branco); border: 2px solid var(--azul-200);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 900; color: var(--azul-500);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--cinza-50);
  transition: var(--trans);
}
.como-v4-step:hover .como-v4-num {
  background: var(--azul-500); border-color: var(--azul-500); color: #fff;
  box-shadow: 0 0 0 6px var(--azul-50), var(--shadow-blue);
}
.como-v4-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--azul-50); border: 1px solid var(--azul-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-500); font-size: 1.1rem;
  margin-bottom: .875rem; transition: var(--trans);
}
.como-v4-step:hover .como-v4-icon-wrap { background: var(--azul-500); border-color: transparent; color: #fff; }
.como-v4-step h4 { font-size: .9rem; font-weight: 800; color: var(--cinza-900); margin-bottom: .35rem; }
.como-v4-step p  { font-size: .78rem; color: var(--cinza-500); line-height: 1.55; }
@media (max-width: 900px) {
  .como-v4-grid { grid-template-columns: 1fr 1fr; }
  .como-v4-grid::before { display: none; }
}
@media (max-width: 640px) { .como-v4-grid { grid-template-columns: 1fr; } }

/* ── Páginas SEO v4 ──────────────────────────────────────── */
.seo-v4-section { padding: 5rem 0; }
.seo-v4-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem; align-items: start;
}
.seo-v4-sidebar {
  background: var(--cinza-50);
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky; top: 100px;
}
.seo-v4-sidebar-title { font-size: .875rem; font-weight: 800; color: var(--cinza-900); margin-bottom: 1rem; }
.seo-v4-cta-box {
  background: linear-gradient(135deg, var(--azul-600), var(--azul-800));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #fff; text-align: center; margin-bottom: 1rem;
}
.seo-v4-cta-box h4 { font-size: .95rem; font-weight: 800; margin-bottom: .5rem; }
.seo-v4-cta-box p  { font-size: .78rem; opacity: .8; margin-bottom: 1rem; }
@media (max-width: 900px) {
  .seo-v4-content { grid-template-columns: 1fr; }
  .seo-v4-sidebar { position: static; }
}

/* ── Navbar mobile melhorada ─────────────────────────────── */
.navbar-cta-mobile {
  display: none;
  padding: .75rem 1.25rem;
  background: var(--azul-500); color: #fff !important;
  border-radius: var(--radius); font-weight: 700; font-size: .875rem;
  text-align: center; margin: .75rem 1.25rem;
  transition: var(--trans);
}
.navbar-cta-mobile:hover { background: var(--azul-600) !important; }
@media (max-width: 768px) { .navbar-cta-mobile { display: block; } }

/* ── Tabela comparativa de planos ────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--branco);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--cinza-200);
  margin-top: 2rem;
}
.compare-table th {
  background: var(--cinza-50);
  padding: .875rem 1rem;
  font-size: .78rem; font-weight: 700; color: var(--cinza-700);
  text-align: center; border-bottom: 1px solid var(--cinza-200);
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: .75rem 1rem;
  font-size: .8rem; color: var(--cinza-700);
  border-bottom: 1px solid var(--cinza-100);
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--cinza-800); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cinza-50); }
.compare-check { color: var(--verde-600); font-size: 1rem; }
.compare-dash  { color: var(--cinza-300); }

/* ── Política de Privacidade / Termos ───────────────────── */
.legal-section { padding: 5rem 0; background: var(--branco); }
.legal-content {
  max-width: 780px; margin: 0 auto;
}
.legal-content h2 { font-size: 1.25rem; font-weight: 800; color: var(--cinza-900); margin: 2rem 0 .75rem; }
.legal-content h3 { font-size: 1rem;    font-weight: 700; color: var(--cinza-800); margin: 1.5rem 0 .5rem; }
.legal-content p  { font-size: .875rem; color: var(--cinza-600); line-height: 1.75; margin-bottom: .875rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: .875rem; }
.legal-content ul li { font-size: .875rem; color: var(--cinza-600); line-height: 1.65; margin-bottom: .35rem; }
.legal-updated {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--cinza-400);
  background: var(--cinza-50); border: 1px solid var(--cinza-200);
  padding: .3rem .875rem; border-radius: var(--radius-full);
  margin-bottom: 2rem;
}
.legal-content h1 {
  font-size: 2rem; font-weight: 900; color: var(--cinza-900);
  letter-spacing: -.035em; margin-bottom: .5rem; line-height: 1.15;
}
.legal-content h2 i { margin-right: .5rem; color: var(--azul-500); font-size: .9em; }
.legal-content a { color: var(--azul-600); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--azul-700); }
.legal-intro-box {
  background: rgba(37,99,235,.05); border: 1.5px solid rgba(37,99,235,.18);
  border-radius: var(--radius-xl); padding: 1.5rem 1.75rem;
  font-size: .875rem; color: var(--cinza-700); line-height: 1.7;
  margin-bottom: 2rem;
}
.legal-intro-box strong { color: var(--cinza-900); }
.legal-nav-links {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--cinza-200);
}
.legal-nav-links a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem; background: var(--cinza-50);
  border: 1px solid var(--cinza-200); border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; color: var(--cinza-700) !important;
  text-decoration: none !important; transition: all .2s;
}
.legal-nav-links a:hover {
  background: var(--azul-50); border-color: var(--azul-200);
  color: var(--azul-600) !important; transform: translateY(-1px);
}

/* ── Badge "SaaS Premium" hero ───────────────────────────── */
.hero-saas-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.25);
  color: #93c5fd; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem 1rem; margin-bottom: .75rem;
}
.hero-saas-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pulse-ring 1.8s ease infinite;
}

/* ══════════════════════════════════════════════════════════
   REQUEST C — ELEMENTOS DE CREDIBILIDADE / CONVERSÃO
   ══════════════════════════════════════════════════════════ */

/* ── Faixa de Resultados Reais ───────────────────────────── */
.resultados-strip {
  background: var(--cinza-950, #050810);
  border-top: 1px solid rgba(59,130,246,.12);
  border-bottom: 1px solid rgba(59,130,246,.12);
  padding: 2.25rem 0;
  overflow: hidden;
}
.resultados-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.resultados-strip-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(148,163,184,.5);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 2rem;
}
.resultados-strip-label i { color: var(--azul-400, #60a5fa); }
.resultado-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
  min-width: 0;
  padding: .25rem 0;
}
.resultado-num {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.resultado-desc {
  font-size: .72rem;
  color: rgba(148,163,184,.65);
  line-height: 1.4;
  max-width: 180px;
}
.resultado-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
  margin: 0 2rem;
  align-self: center;
}

/* ── Badge resultado no depoimento ──────────────────────── */
.depoimento-resultado {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.25);
  color: #4ade80;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .3rem .875rem;
  margin-bottom: .875rem;
}
.depoimento-resultado i { font-size: .65rem; }

/* ── Nota de timing "Como Funciona" ─────────────────────── */
.como-nota {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 2.5rem;
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--radius-xl);
  padding: 1rem 1.375rem;
  font-size: .85rem;
  color: var(--cinza-600);
  line-height: 1.6;
}
.como-nota i {
  color: var(--azul-400, #60a5fa);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.como-nota strong { color: var(--cinza-800); }

/* ── Bloco wizard-expectativa ───────────────────────────── */
.wizard-expectativa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.wizard-expect-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.125rem 1.25rem;
  backdrop-filter: blur(8px);
}
.wizard-expect-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37,99,235,.18);
  border: 1px solid rgba(59,130,246,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #93c5fd;
  font-size: .875rem;
}
.wizard-expect-title {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: .25rem;
  line-height: 1.3;
}
.wizard-expect-desc {
  font-size: .73rem;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
}

/* ── Aviso jurídico — variantes ok / nao / info ─────────── */
/* ícone base — override do tamanho e bordas originais */
.aviso-juridico-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: .1rem;
}
/* verde: o que a Central Digital faz */
.aviso-juridico-item-icon.ok {
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.28);
  color: #4ade80;
}
/* azul: limite judicial */
.aviso-juridico-item-icon.nao {
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(59,130,246,.28);
  color: #93c5fd;
}
/* âmbar: transparência de resultados */
.aviso-juridico-item-icon.info {
  background: rgba(217,119,6,.12);
  border: 1px solid rgba(245,158,11,.28);
  color: #fbbf24;
}

/* ── Responsivo — Request C ─────────────────────────────── */
@media (max-width: 900px) {
  .resultados-strip-inner {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .resultados-strip-label {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding-bottom: .875rem;
    margin-bottom: .25rem;
  }
  .resultado-item { flex: 0 0 calc(50% - .625rem); }
  .resultado-sep { display: none; }
  .wizard-expectativa { grid-template-columns: 1fr; gap: .75rem; }
}
@media (max-width: 640px) {
  .resultado-item { flex: 0 0 100%; }
  .resultados-strip { padding: 1.75rem 0; }
  .como-nota { flex-direction: column; gap: .5rem; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN — KPI GRID
   ════════════════════════════════════════════════════════════ */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.admin-kpi-card {
  background: #fff;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  transition: box-shadow .18s, border-color .18s, transform .15s;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.admin-kpi-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  border-color: var(--cinza-300);
}
a.admin-kpi-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,.11);
  border-color: var(--azul-300, #93c5fd);
  transform: translateY(-2px);
}
a.admin-kpi-card::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: var(--cinza-300);
  transition: color .15s, right .15s;
}
a.admin-kpi-card:hover::after {
  color: var(--azul-400, #60a5fa);
  right: .65rem;
}
.admin-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.admin-kpi-body { flex: 1; min-width: 0; }
.admin-kpi-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cinza-900);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-kpi-label {
  font-size: .72rem;
  color: var(--cinza-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .15rem;
}

/* KPI color variants */
.admin-kpi-icon.kpi-azul   { background: rgba(37,99,235,.1);  color: #2563eb; border: 1px solid rgba(37,99,235,.18);  }
.admin-kpi-icon.kpi-roxo   { background: rgba(124,58,237,.1); color: #7c3aed; border: 1px solid rgba(124,58,237,.18); }
.admin-kpi-icon.kpi-verde  { background: rgba(22,163,74,.1);  color: #16a34a; border: 1px solid rgba(22,163,74,.18);  }
.admin-kpi-icon.kpi-anil   { background: rgba(6,182,212,.1);  color: #0891b2; border: 1px solid rgba(6,182,212,.18);  }
.admin-kpi-icon.kpi-amber  { background: rgba(217,119,6,.1);  color: #d97706; border: 1px solid rgba(217,119,6,.18);  }
.admin-kpi-icon.kpi-red    { background: rgba(220,38,38,.1);  color: #dc2626; border: 1px solid rgba(220,38,38,.18);  }
.admin-kpi-icon.kpi-slate  { background: rgba(100,116,139,.1);color: #64748b; border: 1px solid rgba(100,116,139,.18);}

/* Responsive KPI grid */
@media (max-width: 1200px) { .admin-kpi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .admin-kpi-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   ADMIN — FILTER BAR
   ════════════════════════════════════════════════════════════ */
.admin-filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.admin-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .875rem;
  border-radius: 999px;
  border: 1.5px solid var(--cinza-200);
  background: #fff;
  color: var(--cinza-600);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  user-select: none;
}
.admin-filter-btn:hover {
  border-color: var(--azul-500);
  color: var(--azul-600);
  background: rgba(37,99,235,.05);
}
.admin-filter-btn.active {
  background: var(--azul-600);
  border-color: var(--azul-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.admin-filter-btn i { font-size: .7rem; }

/* ════════════════════════════════════════════════════════════
   ADMIN — BADGES: TIPO PESSOA / CONTRATO
   ════════════════════════════════════════════════════════════ */
.admin-badge-tipo {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.admin-badge-tipo.pf {
  background: rgba(37,99,235,.1);
  color: #1d4ed8;
  border: 1px solid rgba(37,99,235,.2);
}
.admin-badge-tipo.pj {
  background: rgba(124,58,237,.1);
  color: #6d28d9;
  border: 1px solid rgba(124,58,237,.2);
}
.admin-badge-tipo.avulso {
  background: rgba(217,119,6,.1);
  color: #b45309;
  border: 1px solid rgba(217,119,6,.2);
}

/* ════════════════════════════════════════════════════════════
   ADMIN — BADGES: PLANO / ASSINATURA
   ════════════════════════════════════════════════════════════ */
.admin-badge-plano {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.admin-badge-plano.ativo {
  background: rgba(22,163,74,.1);
  color: #15803d;
  border: 1px solid rgba(22,163,74,.22);
}
.admin-badge-plano.suspenso {
  background: rgba(217,119,6,.1);
  color: #b45309;
  border: 1px solid rgba(217,119,6,.22);
}
.admin-badge-plano.cancelado {
  background: rgba(220,38,38,.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,.18);
}
.admin-badge-plano.sem {
  background: var(--cinza-100);
  color: var(--cinza-400);
  border: 1px solid var(--cinza-200);
}

/* Assinatura badges (reutiliza paleta plano) */
.admin-badge-ass {
  display: inline-flex;
  align-items: center;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.admin-badge-ass.ativo    { background: rgba(22,163,74,.1);  color: #15803d; border: 1px solid rgba(22,163,74,.22);  }
.admin-badge-ass.suspenso { background: rgba(217,119,6,.1);  color: #b45309; border: 1px solid rgba(217,119,6,.22);  }
.admin-badge-ass.cancelado{ background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.18); }

/* ════════════════════════════════════════════════════════════
   ADMIN — BADGES: PAGAMENTO STATUS
   ════════════════════════════════════════════════════════════ */
.admin-badge-pag {
  display: inline-flex;
  align-items: center;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.admin-badge-pag.pago     { background: rgba(22,163,74,.1);  color: #15803d; border: 1px solid rgba(22,163,74,.22);  }
.admin-badge-pag.pendente { background: rgba(217,119,6,.1);  color: #b45309; border: 1px solid rgba(217,119,6,.22);  }
.admin-badge-pag.estornado{ background: rgba(100,116,139,.1);color: #475569; border: 1px solid rgba(100,116,139,.2); }

/* ════════════════════════════════════════════════════════════
   ADMIN — MODAL CLIENTE (4 abas)
   ════════════════════════════════════════════════════════════ */

/* Overlay */
#modal-cliente {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(7,11,24,.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeInOverlay .18s ease;
}
#modal-cliente.hidden { display: none; }

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Dialog box */
.modal-cli-dialog {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  animation: slideUpModal .22s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Header */
.modal-cli-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1.5px solid var(--cinza-100);
  flex-shrink: 0;
}
.modal-cli-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.modal-cli-title-block { flex: 1; min-width: 0; }
.modal-cli-title-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin: 0 0 .3rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-cli-badges {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.modal-cli-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--cinza-200);
  background: transparent;
  color: var(--cinza-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .15s;
  flex-shrink: 0;
}
.modal-cli-close:hover {
  background: var(--cinza-100);
  color: var(--cinza-800);
  border-color: var(--cinza-300);
}

/* Tab bar */
.modal-cli-tabs {
  display: flex;
  border-bottom: 2px solid var(--cinza-100);
  background: var(--cinza-50);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.modal-cli-tabs::-webkit-scrollbar { display: none; }

.modal-cli-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cinza-500);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
  user-select: none;
}
.modal-cli-tab:hover { color: var(--azul-600); }
.modal-cli-tab.active {
  color: var(--azul-600);
  border-bottom-color: var(--azul-600);
  background: #fff;
}
.modal-cli-tab i { font-size: .75rem; }

/* Panes */
.modal-cli-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-cli-pane {
  display: none;
  padding: 1.5rem;
  animation: fadePane .15s ease;
}
.modal-cli-pane.active { display: block; }

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

/* Form fields inside modal */
.modal-cli-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem 1.25rem;
}
.modal-cli-grid .full { grid-column: 1 / -1; }
.modal-cli-field { display: flex; flex-direction: column; gap: .3rem; }
.modal-cli-field label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cinza-500);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.modal-cli-field input,
.modal-cli-field select,
.modal-cli-field textarea {
  padding: .5rem .75rem;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--cinza-900);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.modal-cli-field input:focus,
.modal-cli-field select:focus,
.modal-cli-field textarea:focus {
  outline: none;
  border-color: var(--azul-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.modal-cli-field textarea { resize: vertical; min-height: 72px; }

/* Section title inside modal pane */
.modal-cli-section-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--cinza-400);
  margin: 1.25rem 0 .625rem;
  padding-bottom: .375rem;
  border-bottom: 1px solid var(--cinza-100);
}
.modal-cli-section-title:first-child { margin-top: 0; }

/* Footer */
.modal-cli-footer {
  padding: 1rem 1.5rem;
  border-top: 1.5px solid var(--cinza-100);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  flex-shrink: 0;
  background: var(--cinza-50);
}
.modal-cli-footer .btn-outline {
  padding: .5rem 1.125rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--cinza-200);
  background: #fff;
  color: var(--cinza-600);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.modal-cli-footer .btn-outline:hover {
  border-color: var(--cinza-300);
  background: var(--cinza-50);
}
.modal-cli-footer .btn-primary {
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  background: var(--azul-600);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
}
.modal-cli-footer .btn-primary:hover {
  background: var(--azul-700);
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

/* Inline info box inside modal */
.modal-cli-info-box {
  background: rgba(37,99,235,.05);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}
.modal-cli-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.modal-cli-info-row span:first-child { color: var(--cinza-500); font-weight: 500; }
.modal-cli-info-row span:last-child  { color: var(--cinza-900); font-weight: 700; }

/* Empty state inside pane */
.modal-cli-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--cinza-400);
}
.modal-cli-empty i { font-size: 2rem; margin-bottom: .75rem; display: block; }
.modal-cli-empty p { font-size: .85rem; margin: 0; }

/* Mini table inside modal pane */
.modal-cli-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--cinza-100); }
.modal-cli-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
}
.modal-cli-table-wrap th {
  background: var(--cinza-50);
  color: var(--cinza-500);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .6rem .875rem;
  text-align: left;
  border-bottom: 1px solid var(--cinza-100);
  white-space: nowrap;
}
.modal-cli-table-wrap td {
  padding: .65rem .875rem;
  color: var(--cinza-700);
  border-bottom: 1px solid var(--cinza-50);
  vertical-align: middle;
}
.modal-cli-table-wrap tr:last-child td { border-bottom: none; }
.modal-cli-table-wrap tr:hover td { background: rgba(37,99,235,.025); }

/* Responsive modal */
@media (max-width: 640px) {
  .modal-cli-dialog  { max-height: 95vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; align-self: flex-end; }
  .modal-cli-grid    { grid-template-columns: 1fr; }
  .modal-cli-tab     { padding: .65rem .875rem; font-size: .76rem; }
  #modal-cliente     { align-items: flex-end; padding: 0; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN — FINANCEIRO BREAKDOWN CARDS
   ════════════════════════════════════════════════════════════ */
.admin-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.admin-breakdown-card {
  background: #fff;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.admin-breakdown-card h4 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cinza-400);
  margin: 0 0 1rem;
}
.admin-breakdown-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--cinza-50);
}
.admin-breakdown-row:last-child { border-bottom: none; }
.admin-breakdown-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.admin-breakdown-label { flex: 1; font-size: .82rem; color: var(--cinza-600); font-weight: 500; }
.admin-breakdown-val   { font-size: .85rem; font-weight: 700; color: var(--cinza-900); }
.admin-breakdown-pct   { font-size: .72rem; color: var(--cinza-400); min-width: 38px; text-align: right; }

@media (max-width: 768px) { .admin-breakdown-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   ADMIN — ASSINATURAS action buttons
   ════════════════════════════════════════════════════════════ */
.btn-ass-action {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem .65rem;
  border-radius: var(--radius);
  border: 1.5px solid;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  background: transparent;
}
.btn-ass-action.suspender {
  color: #b45309;
  border-color: rgba(217,119,6,.3);
}
.btn-ass-action.suspender:hover {
  background: rgba(217,119,6,.08);
  border-color: rgba(217,119,6,.5);
}
.btn-ass-action.reativar {
  color: #15803d;
  border-color: rgba(22,163,74,.3);
}
.btn-ass-action.reativar:hover {
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.5);
}

/* ════════════════════════════════════════════════════════════
   ADMIN — TABLE improvements (shared)
   ════════════════════════════════════════════════════════════ */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cinza-200);
  background: #fff;
}
.admin-table-wrap table { min-width: 680px; }

/* ── Responsivo geral ────────────────────────────────────── */
@media (max-width: 640px) {
  .diferenciais-section > .container > div { grid-template-columns: 1fr !important; }
  .plataforma-inner { grid-template-columns: 1fr !important; }
  .stats-v4-band { grid-template-columns: 1fr 1fr; }
  .aviso-juridico-box { padding: 1.5rem; }
  .lgpd-features { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════
   MODAL PARCEIRO v3 — Design Premium Completo
   ════════════════════════════════════════════════════════════ */

/* Wrapper */
.par-modal-wrap {
  background: #fff;
  border-radius: 22px;
  width: 96vw;
  max-width: 740px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(15,40,110,.28),
    0 8px 24px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  max-height: 95vh;
}

/* ── Header ── */
.par-modal-header {
  background: linear-gradient(135deg, #0c1f5c 0%, #1e3fa3 45%, #2563eb 100%);
  padding: 1.35rem 1.5rem 1.1rem;
  position: relative;
  flex-shrink: 0;
}

.par-modal-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, transform .18s;
}
.par-modal-close:hover {
  background: rgba(255,255,255,.28);
  transform: rotate(90deg);
}

.par-modal-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.par-modal-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.par-modal-avatar i {
  color: #fff;
  font-size: 1.4rem;
}

.par-modal-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.par-modal-sub {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  margin: .2rem 0 0;
}

/* Faixa de perfil */
.par-perfil-strip {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.par-badge-perfil {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .8rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 22px;
  color: rgba(255,255,255,.72);
  font-size: .73rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.par-badge-perfil:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  color: #fff;
  transform: translateY(-1px);
}
.par-badge-perfil.par-badge-ativo {
  background: #fff;
  border-color: #fff;
  color: #1d40b0;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

/* ── Body ── */
.par-modal-body {
  padding: 1.25rem 1.5rem .75rem;
  background: #f8fafd;
  overflow-y: auto;
  flex: 1;
}

/* Grids */
.par-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
.par-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
  align-items: end;
}

/* Campo individual */
.par-field { display: flex; flex-direction: column; }

/* Labels */
.par-lbl {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: .3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.par-req { color: #e53e3e; margin-left: .15rem; }
.par-hint {
  color: #94a3b8;
  font-weight: 400;
  font-size: .67rem;
  margin-left: .3rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Wrapper de input com ícone */
.par-inp-wrap { position: relative; }
.par-inp-icon {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: .78rem;
  pointer-events: none;
}

/* Input base */
.par-inp {
  width: 100%;
  height: 40px;
  font-size: .84rem;
  padding: 0 .8rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #1e293b;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .15s, box-shadow .15s, background .15s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.par-inp:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(59,130,246,.14), 0 1px 4px rgba(0,0,0,.06);
}
.par-inp:hover:not(:focus) {
  border-color: #cbd5e1;
}
.par-inp-padl { padding-left: 2.2rem; }
.par-inp-padr { padding-right: 2.5rem; }

select.par-inp { cursor: pointer; padding-right: 1.8rem; 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 d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7rem center; }
textarea.par-inp { height: 40px; resize: none; padding-top: .55rem; }
.par-textarea { height: 40px !important; }

/* Botão olho da senha */
.par-eye-btn {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: .85rem;
  padding: 0;
  line-height: 1;
}
.par-eye-btn:hover { color: #64748b; }

/* Card comissão */
.par-comissao-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: .65rem .9rem .5rem;
  box-shadow: 0 2px 8px rgba(22,163,74,.08);
}
.par-comissao-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .35rem;
}
.par-comissao-lbl {
  font-size: .7rem;
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.par-comissao-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1;
  letter-spacing: -.02em;
}
.par-slider {
  width: 100%;
  accent-color: #16a34a;
  cursor: pointer;
  height: 4px;
  display: block;
}
.par-comissao-scale {
  display: flex;
  justify-content: space-between;
  margin-top: .25rem;
}
.par-comissao-scale span {
  font-size: .62rem;
  color: #6b7280;
}

/* Alerta de erro */
.par-alerta-erro {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: .55rem .9rem;
  font-size: .8rem;
  margin-top: .25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Footer ── */
.par-modal-footer {
  padding: .9rem 1.5rem;
  background: #fff;
  border-top: 1px solid #e9eef5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.par-footer-hint {
  font-size: .72rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.par-footer-hint .fas { font-size: .55rem; color: #e53e3e; }
.par-footer-btns { display: flex; gap: .6rem; }

.par-btn-cancel {
  padding: .55rem 1.2rem;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #64748b;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.par-btn-cancel:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.par-btn-save {
  padding: .55rem 1.4rem;
  background: linear-gradient(135deg, #1d40b0, #2563eb);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.par-btn-save:hover {
  background: linear-gradient(135deg, #1a38a3, #1d4ed8);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-1px);
}
.par-btn-save:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}

/* ════════════════════════════════════════════════════════════
   STATS V4 — Ícone + melhorias visuais
   ════════════════════════════════════════════════════════════ */
.stat-v4-icon {
  font-size: .9rem;
  color: var(--azul-400);
  margin-bottom: .5rem;
  opacity: .7;
}
.stat-v4-item:hover .stat-v4-icon { opacity: 1; }
.stat-v4-item:hover .stat-v4-num  { color: var(--azul-500); }

/* ════════════════════════════════════════════════════════════
   POR QUE A CENTRAL — Seção de diferenciais
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   POR QUE A CENTRAL — Redesign no padrão do site
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   POR QUE A CENTRAL? — Design horizontal compacto (v3)
   ════════════════════════════════════════════════════════════ */
.porquecentral-section {
  background: var(--cinza-50);
  padding: 5.5rem 0 6rem;
  border-top: 1px solid var(--cinza-200);
  border-bottom: 1px solid var(--cinza-200);
}

/* Grids */
.pqc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.pqc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

/* Card base — flex coluna, altura total uniforme */
.pqc-card-h {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: var(--trans);
  position: relative;
  overflow: visible; /* badge sai para fora */
}
.pqc-card-h:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

/* Card destaque */
.pqc-card-h.pqc-featured {
  border: 2px solid #185FA5;
}
.pqc-featured-badge {
  position: absolute;
  top: -12px;
  left: 1rem;
  background: #185FA5;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Cabeçalho: ícone + textos lado a lado */
.pqc-head {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  flex: 1; /* ocupa o espaço disponível */
}

/* Ícone flat */
.pqc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: var(--trans);
}
.pqc-card-h:hover .pqc-icon-wrap { transform: scale(1.08); }

/* Variantes de cor */
.pqc-blue   { background: #E6F1FB; color: #185FA5; }
.pqc-teal   { background: #E1F5EE; color: #0F6E56; }
.pqc-amber  { background: #FAEEDA; color: #854F0B; }
.pqc-purple { background: #EEEDFE; color: #534AB7; }

/* Textos */
.pqc-titulo {
  font-size: .875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 .3rem;
  letter-spacing: -.01em;
}
.pqc-desc {
  font-size: .775rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Rodapé do card */
.pqc-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: .75rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pqc-dot-green {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1D9E75;
  flex-shrink: 0;
}
.pqc-footer-text {
  font-size: .7rem;
  color: #94a3b8;
}
.pqc-stat {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.pqc-stat-label {
  font-size: .7rem;
  color: #94a3b8;
  align-self: flex-end;
  padding-bottom: .15rem;
}

/* Barra de prova social */
.pqc-proof-bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 2.25rem;
}
.pqc-proof-item {
  text-align: center;
  padding: .5rem 1rem;
}
.pqc-proof-item + .pqc-proof-item {
  border-left: 1px solid #e2e8f0;
}
.pqc-proof-num {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1;
}
.pqc-proof-label {
  font-size: .7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* CTA */
.porquecentral-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .pqc-grid-3 { grid-template-columns: 1fr 1fr; }
  .pqc-proof-bar { grid-template-columns: repeat(2, 1fr); }
  .pqc-proof-item + .pqc-proof-item { border-left: none; }
  .pqc-proof-item:nth-child(2) { border-left: 1px solid #e2e8f0; }
  .pqc-proof-item:nth-child(3),
  .pqc-proof-item:nth-child(4) { border-top: 1px solid #e2e8f0; }
  .pqc-proof-item:nth-child(4) { border-left: 1px solid #e2e8f0; }
}
@media (max-width: 640px) {
  .pqc-grid-2,
  .pqc-grid-3 { grid-template-columns: 1fr; }
  .pqc-proof-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   DEPOIMENTOS — Banner de resultado premium
   ════════════════════════════════════════════════════════════ */
.depoimento-card-premium {
  padding-top: 0 !important;
}
.depoimento-resultado-banner {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: linear-gradient(135deg, #052e16, #14532d);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: 0 -2rem 1.5rem;
  padding: .875rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.depoimento-resultado-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.drb-icon {
  width: 36px; height: 36px;
  background: rgba(74,222,128,.2);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80; font-size: .85rem; flex-shrink: 0;
}
.drb-texto {
  flex: 1; display: flex; flex-direction: column; gap: .15rem;
}
.drb-label {
  font-size: .6rem; font-weight: 800;
  color: rgba(74,222,128,.7); letter-spacing: .1em;
  text-transform: uppercase;
}
.drb-valor {
  font-size: .8rem; font-weight: 700; color: #fff; line-height: 1.3;
}
.drb-badge {
  background: rgba(74,222,128,.2);
  border: 1px solid rgba(74,222,128,.4);
  color: #4ade80;
  font-size: .65rem; font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .03em;
  flex-shrink: 0;
}

/* Variante verde escuro (padrão acima) — azul */
.drb-green { background: linear-gradient(135deg, #052e16, #14532d); }

.drb-blue {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}
.drb-blue .drb-icon {
  background: rgba(96,165,250,.2);
  border-color: rgba(96,165,250,.3);
  color: #60a5fa;
}
.drb-blue .drb-label  { color: rgba(96,165,250,.7); }
.drb-blue .drb-badge  {
  background: rgba(96,165,250,.2);
  border-color: rgba(96,165,250,.4);
  color: #60a5fa;
}

.drb-badge-green { /* já é o default */ }
.drb-badge-blue  {
  background: rgba(96,165,250,.2);
  border-color: rgba(96,165,250,.4);
  color: #60a5fa;
}
