/* ═══════════════════════════════════════════════════════════════════════
   NexJuris — Shell público (landing / planos / cadastro / checkout)
   Design system extraído de templates/landing.html para reuso entre páginas
   públicas. Mantém paridade visual com a landing (dark/amber, Inter + Space
   Grotesk). Páginas públicas renderizam sempre em dark mode.
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s ease, color 0.5s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Tokens — NexJuris Brand ──────────────────────────────────────────── */
:root {
  --nj-indigo: #1E1B4B;
  --nj-indigo-light: #312E81;
  --nj-indigo-dark: #0F0E2A;
  --nj-indigo-muted: #3730A3;
  --nj-amber: #F59E0B;
  --nj-amber-hover: #FBBF24;
  --nj-amber-dark: #D97706;
  --nj-teal: #0D9488;
  --nj-teal-light: #14B8A6;

  --bg-primary: #06081A;
  --bg-secondary: #0B0E1E;
  --bg-card: #0D1129;
  --bg-card-hover: #111631;
  --border: #1A1F3E;
  --border-light: #252B4D;
  --text-primary: #EEF0F6;
  --text-secondary: #8A93B8;
  --text-muted: #5A6188;

  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  --amber-600: #D97706;
  --amber-700: #B45309;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --amber-glow-strong: rgba(245, 158, 11, 0.3);
  --indigo-400: #818CF8;
  --indigo-500: #6366F1;
  --indigo-glow: rgba(99, 102, 241, 0.15);
  --teal-400: #2DD4BF;
  --teal-500: #14B8A6;
  --green-400: #4ADE80;
  --blue-400: #60A5FA;
  --red-400: #F87171;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1320px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
}

[data-theme="light"] {
  --bg-primary: #F8F9FC;
  --bg-secondary: #EEF0F5;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F3F4F8;
  --border: #DDE0E8;
  --border-light: #E8EAF0;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --amber-glow: rgba(245, 158, 11, 0.08);
  --amber-glow-strong: rgba(245, 158, 11, 0.15);
  --indigo-glow: rgba(99, 102, 241, 0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
}

/* ─── Utilities ────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber-500); margin-bottom: 16px;
  background: rgba(245,158,11,0.06); padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.12);
}
.section-label::before {
  content: ''; width: 8px; height: 8px; background: var(--amber-500); border-radius: 50%;
  box-shadow: 0 0 8px var(--amber-glow-strong);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.03em;
}
.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.gradient-text { color: var(--amber-500); }
.gradient-text-indigo { color: var(--indigo-400); }
.text-center { text-align: center; }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px; border-radius: var(--radius);
  padding: 14px 32px; transition: var(--transition); position: relative; overflow: hidden;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #000; box-shadow: 0 4px 24px var(--amber-glow), 0 1px 3px rgba(0,0,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--amber-glow-strong), 0 2px 6px rgba(0,0,0,0.4); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
  pointer-events: none;
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light); backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--amber-500); color: var(--amber-400); background: var(--amber-glow); transform: translateY(-2px); }
.btn-indigo {
  background: linear-gradient(135deg, var(--indigo-500), var(--nj-indigo-muted));
  color: #fff; box-shadow: 0 4px 24px var(--indigo-glow), 0 1px 3px rgba(0,0,0,0.3);
}
.btn-indigo:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(99,102,241,0.3), 0 2px 6px rgba(0,0,0,0.4); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ─── Background effects ───────────────────────────────────────────────── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}
.bg-glow {
  position: fixed; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(245,158,11,0.06) 40%, transparent 70%);
  z-index: 0; pointer-events: none; filter: blur(80px);
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}
.section-glow-line {
  height: 1px; max-width: 600px; margin: 0 auto 60px;
  background: linear-gradient(90deg, transparent, var(--amber-500), var(--indigo-500), transparent);
  opacity: 0.3;
}

/* ─── Navbar ───────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled {
  background: rgba(6, 8, 26, 0.88); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
[data-theme="light"] .navbar.scrolled { background: rgba(248, 249, 252, 0.88); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.navbar-logo {
  display: flex; align-items: center; gap: 10px; font-weight: 700;
  font-size: 22px; color: var(--text-primary); letter-spacing: -0.02em;
  font-family: 'Space Grotesk', sans-serif;
}
.navbar-logo .logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--nj-amber), var(--nj-amber-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  position: relative; overflow: hidden;
}
.navbar-logo .logo-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
  border-radius: 10px; pointer-events: none;
}
.navbar-logo .logo-icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.navbar-logo .brand-text span { color: var(--nj-amber); }
.navbar-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-secondary); padding: 8px 16px; border-radius: 8px; transition: var(--transition); }
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--amber-400); }
[data-theme="light"] .nav-link:hover { background: rgba(0,0,0,0.04); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.btn-sm { padding: 10px 24px; font-size: 13px; border-radius: 10px; }
.mobile-menu-btn { display: none; }
@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .mobile-menu-btn { display: flex; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; color: var(--text-secondary); border: 1px solid var(--border); }
  .mobile-menu-btn svg { width: 20px; height: 20px; }
}

/* ─── Mobile menu ──────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg-primary);
  display: flex; flex-direction: column; padding: 80px 24px 24px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 20px; font-weight: 600; color: var(--text-primary); padding: 16px 0; border-bottom: 1px solid var(--border); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); border-radius: 12px; border: 1px solid var(--border);
}

/* ─── Scroll progress ──────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, var(--indigo-500), var(--amber-500));
  width: 0; border-radius: 0 2px 2px 0; transition: width 0.1s linear;
}

/* ─── Reveal animations ────────────────────────────────────────────────── */
.reveal, .reveal-scale { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal { transform: translateY(40px); }
.reveal-scale { transform: scale(0.92); }
.reveal.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 0 30px; position: relative; z-index: 1; }
[data-theme="light"] .footer { background: #1a1d28; }
[data-theme="light"] .footer .footer-col-title { color: #eef0f6; }
[data-theme="light"] .footer .footer-link { color: #8a93a8; }
[data-theme="light"] .footer .footer-link:hover { color: var(--amber-400); }
[data-theme="light"] .footer .footer-desc { color: #8a93a8; }
[data-theme="light"] .footer .footer-logo { color: #eef0f6; }
[data-theme="light"] .footer .footer-bottom { color: #5a6178; border-top-color: rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--text-primary); margin-bottom: 16px; font-family: 'Space Grotesk', sans-serif; }
.footer-logo .logo-icon { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--nj-amber), var(--nj-amber-dark)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.footer-logo .logo-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15)); border-radius: 10px; pointer-events: none; }
.footer-logo .logo-icon svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.footer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.footer-col-title { font-weight: 600; font-size: 14px; color: var(--text-primary); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--text-secondary); padding: 4px 0; transition: var(--transition); }
.footer-link:hover { color: var(--amber-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); gap: 16px; flex-wrap: wrap; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════
   PLANOS — página de preços (/planos)
   ═══════════════════════════════════════════════════════════════════════ */
.publico-main { padding-top: 96px; position: relative; z-index: 1; }

.planos-hero { text-align: center; padding: 60px 0 20px; position: relative; z-index: 1; }
.planos-hero .section-label { margin-left: auto; margin-right: auto; }
.planos-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(34px, 5vw, 60px); color: var(--text-primary);
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 18px;
}
.planos-hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Toggle mensal / anual */
.ciclo-toggle {
  display: inline-flex; align-items: center; gap: 6px; margin: 36px auto 8px;
  padding: 6px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--border);
}
.ciclo-toggle button {
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  padding: 10px 22px; border-radius: 10px; transition: var(--transition); white-space: nowrap;
}
.ciclo-toggle button.active { background: linear-gradient(135deg, var(--amber-500), var(--amber-600)); color: #000; box-shadow: 0 4px 16px var(--amber-glow); }
.ciclo-badge { font-size: 12px; font-weight: 700; color: var(--green-400); background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); padding: 3px 10px; border-radius: 100px; margin-left: 4px; }

/* Grid de cards */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; align-items: stretch; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 26px; display: flex; flex-direction: column; position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-md); }
.pricing-card.destaque { border-color: var(--amber-500); box-shadow: 0 0 0 1px var(--amber-500), 0 12px 48px var(--amber-glow); }
.pricing-card.destaque::before {
  content: 'Mais popular'; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600)); color: #000;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.plan-tagline { font-size: 13px; color: var(--text-muted); min-height: 36px; line-height: 1.5; margin-bottom: 18px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .currency { font-size: 18px; font-weight: 600; color: var(--text-secondary); }
.plan-price .amount { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em; }
.plan-price .period { font-size: 14px; color: var(--text-muted); }
.plan-price-sob { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.plan-annual-note { font-size: 12.5px; color: var(--text-muted); min-height: 20px; margin-bottom: 22px; }
.plan-annual-note strong { color: var(--green-400); font-weight: 600; }
.pricing-card .btn { margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }
.plan-feature .check { flex-shrink: 0; width: 18px; height: 18px; color: var(--amber-500); margin-top: 1px; }
.plan-feature strong { color: var(--text-primary); font-weight: 600; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Tabela comparativa */
.compare-wrap { margin-top: 90px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th { color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; }
.compare-table thead th.destaque-col { color: var(--amber-400); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--text-secondary); font-weight: 500; }
.compare-table tbody tr:hover { background: var(--bg-card); }
.compare-table .val-strong { color: var(--text-primary); font-weight: 600; }

/* Aviso de cancelamento / política */
.politica-nota {
  margin: 70px auto 0; max-width: 760px; text-align: center;
  font-size: 13.5px; color: var(--text-muted); line-height: 1.7;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 28px;
}
.politica-nota a { color: var(--amber-400); }

/* ═══════════════════════════════════════════════════════════════════════
   FORMULÁRIOS PÚBLICOS — cadastro / contato / status de checkout
   ═══════════════════════════════════════════════════════════════════════ */
.form-shell { min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; padding: 120px 24px 60px; position: relative; z-index: 1; }
.form-card { width: 100%; max-width: 520px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-card.narrow { max-width: 460px; }
.form-card .eyebrow { font-size: 13px; font-weight: 600; color: var(--amber-500); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.form-card h1 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--text-primary); line-height: 1.2; margin-bottom: 8px; }
.form-card .lead { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }
.plano-resumo { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 26px; }
.plano-resumo .pr-nome { font-weight: 700; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; }
.plano-resumo .pr-valor { color: var(--amber-400); font-weight: 700; }
.plano-resumo .pr-ciclo { font-size: 12px; color: var(--text-muted); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; color: var(--text-primary); font-family: inherit; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px var(--amber-glow); }
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.field-error { color: var(--red-400); font-size: 12.5px; margin-top: 6px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 8px 0 24px; }
.consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--amber-500); }
.consent a { color: var(--amber-400); }

/* OAB dinâmico (cadastro) — linhas número + UF */
.oab-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.oab-row .oab-numero { flex: 1; }
.oab-row .oab-uf { width: 86px; flex-shrink: 0; }
.oab-remove {
  flex-shrink: 0; width: 40px; height: 44px; border-radius: 10px;
  border: 1px solid var(--border-light); color: var(--text-muted);
  font-size: 20px; line-height: 1; transition: var(--transition);
}
.oab-remove:hover { color: var(--red-400); border-color: var(--red-400); }
.oab-add { font-size: 13px; font-weight: 600; color: var(--amber-400); padding: 6px 0; transition: var(--transition); }
.oab-add:hover { color: var(--amber-500); }

.form-foot { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 20px; }
.form-foot a { color: var(--amber-400); }

/* Mensagens / alerts */
.alert { border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 20px; line-height: 1.5; }
.alert-error { background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.25); color: #fca5a5; }
.alert-info { background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.25); color: var(--indigo-400); }
.alert-success { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25); color: var(--green-400); }

/* Status de checkout (sucesso / cancelado) */
.status-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 60px; position: relative; z-index: 1; }
.status-card { width: 100%; max-width: 540px; text-align: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: var(--shadow-md); }
.status-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.status-icon.ok { background: rgba(74,222,128,0.12); color: var(--green-400); }
.status-icon.warn { background: rgba(245,158,11,0.12); color: var(--amber-400); }
.status-icon svg { width: 36px; height: 36px; }
.status-card h1 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.status-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border-light); border-top-color: var(--amber-500); border-radius: 50%; margin: 0 auto 24px; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Floating WhatsApp (paridade com a landing) */
.floating-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px var(--amber-glow-strong); transition: var(--transition); color: #000;
}
.floating-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 40px var(--amber-glow-strong); }
.floating-btn svg { width: 24px; height: 24px; }
