/* =================================================================
   FinderPro — Landing CSS (standalone, sem dependência de Tailwind build)
   Estilo corporativo claro: branco + navy + accent âmbar/azul
   ================================================================= */

:root {
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-surface: #f6f9fc;
  --c-surface-2: #eef2f7;
  --c-border: #e3e8ee;
  --c-border-strong: #c8d4e6;

  --c-text: #0a2540;
  --c-muted: #425466;
  --c-light: #697386;

  --c-primary: #0a2540;         /* navy deep */
  --c-primary-dark: #050e1f;
  --c-accent: #2563eb;          /* blue-600 */
  --c-accent-dark: #1d4ed8;
  --c-accent-light: #eff6ff;
  --c-gold: #f59e0b;            /* âmbar, accent destacado */
  --c-green: #10b981;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(10,37,64,0.04);
  --shadow: 0 4px 12px rgba(10,37,64,0.06), 0 1px 3px rgba(10,37,64,0.04);
  --shadow-lg: 0 24px 48px -16px rgba(10,37,64,0.14), 0 8px 16px -8px rgba(10,37,64,0.08);
  --shadow-xl: 0 40px 80px -20px rgba(10,37,64,0.22), 0 16px 24px -12px rgba(10,37,64,0.1);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, Monaco, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; border: none; cursor: pointer; }
code, pre, .mono { font-family: var(--font-mono); }

.container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 44px; width: 44px; object-fit: cover; border-radius: 11px; box-shadow: 0 2px 8px rgba(10,37,64,0.18); }
.nav-brand span { font-size: 20px; font-weight: 700; color: var(--c-primary); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--c-muted); transition: color 0.15s; }
.nav-link:hover { color: var(--c-text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-link-signin { display: none; }
}

/* =========== BOTÕES =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: var(--c-primary); color: #fff; border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-dark); transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(10, 37, 64, 0.5);
}

.btn-accent {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}
.btn-accent:hover { background: var(--c-accent-dark); }

.btn-ghost {
  background: transparent; color: var(--c-text); border: 1px solid var(--c-border);
}
.btn-ghost:hover { border-color: var(--c-primary); background: var(--c-surface); }

.btn-white {
  background: #fff; color: var(--c-primary); border: 1px solid var(--c-border);
}
.btn-white:hover { border-color: var(--c-primary); }

.btn-link {
  color: var(--c-muted); font-size: 14px; font-weight: 600; padding: 8px 12px;
  background: transparent;
}
.btn-link:hover { color: var(--c-text); }

/* =========== UTILIDADES =========== */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-accent-light); color: var(--c-accent);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid #dbeafe;
}
.pill-dark {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-green);
  display: inline-block;
}
.check {
  width: 20px; height: 20px; border-radius: 50%;
  background: #dbeafe; color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check svg { width: 12px; height: 12px; stroke-width: 3; }

.accent-text { color: var(--c-accent); }
.gold-text { color: var(--c-gold); }
.muted { color: var(--c-muted); }
.light { color: var(--c-light); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -100px, #eff6ff 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}
.hero-grid {
  display: grid; gap: 56px; align-items: start;
  grid-template-columns: 1.1fr 1fr;
  padding-top: 16px;
}
@media (max-width: 960px) {
  .hero { padding: 84px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 8px; }
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-primary);
  margin: 14px 0 18px;
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--c-muted);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 13px; color: var(--c-light);
}
.hero-trust > span { display: inline-flex; align-items: center; gap: 8px; }

/* Blobs decorativos */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.55; pointer-events: none;
}
.blob-1 { width: 380px; height: 380px; background: #dbeafe; top: 8%; right: -80px; }
.blob-2 { width: 420px; height: 420px; background: #fef3c7; bottom: -120px; left: -100px; opacity: 0.4; }

/* =========== CODE WINDOW =========== */
.code-window {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.code-head {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  background: #fafbfc;
  border-bottom: 1px solid var(--c-border);
}
.code-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-head-label {
  margin-left: 10px; font-family: var(--font-mono);
  font-size: 12px; color: var(--c-light);
}

.code-body { padding: 22px; }
.code-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-light); margin-bottom: 6px;
}
.code-request {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--c-text); margin-bottom: 14px;
}
.code-request .method { color: #059669; font-weight: 600; }
.code-request .path-param { color: var(--c-accent); }

pre.code-json {
  background: #f6f9fc; border: 1px solid var(--c-border);
  border-radius: 10px; padding: 16px;
  font-family: var(--font-mono); font-size: 13px;
  line-height: 1.55;
  margin: 0; overflow-x: auto;
}
.code-json .k { color: #c026d3; }
.code-json .s { color: #059669; }
.code-json .p { color: #697386; }

.code-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 16px;
}
.code-stat {
  text-align: center;
  background: #f6f9fc; border: 1px solid var(--c-border);
  border-radius: 8px; padding: 10px 4px;
}
.code-stat-value {
  font-size: 17px; font-weight: 800; color: var(--c-primary); line-height: 1;
}
.code-stat-value small { font-size: 11px; font-weight: 700; }
.code-stat-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-light); margin-top: 4px;
}

/* =========== STATS BAR =========== */
.stats-bar {
  background: var(--c-white); border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-big {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-big small { font-size: 0.55em; font-weight: 700; }
.stat-small { font-size: 14px; color: var(--c-light); margin-top: 6px; }

/* =========== SECTIONS =========== */
.section { padding: 100px 0; }
.section-alt { background: var(--c-surface); }
.section-dark { background: var(--c-primary); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .pill { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  margin: 0 0 16px;
}
.section-head p {
  font-size: 18px; color: var(--c-muted); line-height: 1.55; margin: 0;
}

/* =========== FEATURES =========== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent-light); color: var(--c-accent);
  margin-bottom: 22px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 19px; font-weight: 700; margin: 0 0 10px;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14px; color: var(--c-muted); line-height: 1.6; margin: 0;
}
.feature-featured {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-color: var(--c-primary);
  border-width: 2px;
}
.feature-featured .feature-icon { background: var(--c-primary); color: #fff; }
.feature-badge {
  display: inline-block; margin-top: 14px;
  background: var(--c-primary); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}

/* =========== STEPS =========== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 32px; } }
.step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--c-accent-light); color: var(--c-accent);
  font-size: 22px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 20px; font-weight: 700; margin: 0 0 10px;
  color: var(--c-primary);
}
.step p {
  font-size: 14px; color: var(--c-muted); line-height: 1.6; margin: 0;
}

/* =========== PRICING =========== */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
@media (max-width: 960px) { .pricing { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.price-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.price-card:hover {
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border: 2px solid var(--c-primary);
  box-shadow: var(--shadow-lg);
  position: relative; transform: scale(1.02);
}
.price-card.featured::before {
  content: "Mais popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.price-tier {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-light); margin: 0 0 12px;
}
.price-tier.hot { color: var(--c-accent); }
.price-value {
  font-size: 44px; font-weight: 800;
  color: var(--c-primary); line-height: 1;
  margin: 0;
}
.price-value small {
  font-size: 16px; font-weight: 400; color: var(--c-light);
  letter-spacing: 0;
}
.price-caption { font-size: 13px; color: var(--c-light); margin: 6px 0 28px; }
.price-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex-grow: 1;
}
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--c-muted); line-height: 1.5;
}
.price-card .btn { width: 100%; }

/* =========== LGPD BANNER DARK =========== */
.lgpd-banner {
  background: var(--c-primary); color: #fff;
  padding: 80px 0; position: relative; overflow: hidden;
}
.lgpd-banner .blob-3 {
  position: absolute; width: 500px; height: 500px;
  background: #1d4ed8; border-radius: 50%; filter: blur(120px);
  opacity: 0.25; top: -200px; right: -150px; pointer-events: none;
}
.lgpd-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
@media (max-width: 860px) { .lgpd-grid { grid-template-columns: 1fr; gap: 40px; } }
.lgpd-banner h2 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800;
  line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.lgpd-banner h2 .hi { color: #93c5fd; }
.lgpd-banner p { color: #cbd5e1; font-size: 17px; line-height: 1.6; margin: 0 0 22px; }

.lgpd-art-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lgpd-art-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 12px; font-size: 13px; font-weight: 500;
}

.lgpd-points {
  display: flex; flex-direction: column; gap: 12px;
}
.lgpd-point {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
}
.lgpd-point-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lgpd-point-ico svg { width: 20px; height: 20px; color: #fff; }
.lgpd-point-title { font-weight: 600; font-size: 14px; margin: 0; }
.lgpd-point-desc { font-size: 12.5px; color: #94a3b8; margin: 2px 0 0; }

/* =========== FINAL CTA =========== */
.final-cta { padding: 100px 0; text-align: center; }
.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--c-primary); margin: 0 auto 18px;
  max-width: 760px;
}
.final-cta p {
  font-size: 18px; color: var(--c-muted); line-height: 1.55;
  margin: 0 auto 32px; max-width: 540px;
}
.final-cta .hero-actions { justify-content: center; }

/* =========== FOOTER =========== */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p {
  font-size: 14px; color: var(--c-muted); line-height: 1.6;
  margin: 16px 0 0; max-width: 340px;
}
.footer h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-primary); margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li {
  font-size: 14px; color: var(--c-muted);
  padding: 4px 0;
}
.footer ul li a { transition: color 0.15s; }
.footer ul li a:hover { color: var(--c-text); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--c-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--c-light);
}

/* =========== ANIMAÇÕES =========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade,
.fade-1,
.fade-2 {
  opacity: 1;
  transform: none;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-1 { animation-delay: 0.05s; }
.fade-2 { animation-delay: 0.15s; }
@media (prefers-reduced-motion: reduce) {
  .fade, .fade-1, .fade-2 { animation: none; }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.pulse { animation: pulseRing 2s infinite; }

/* =========== AUTH SPLIT (login/cadastro premium) =========== */
.auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

/* ---------- PAINEL BRAND (esquerdo) ---------- */
.auth-brand {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050e1f 0%, #0a2540 50%, #1e3a5f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 48px 56px;
}
.auth-brand-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(37, 99, 235, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(245, 158, 11, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 80%);
  pointer-events: none;
}
.auth-brand-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.auth-brand-orb-1 {
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  animation: brandOrbFloat 14s ease-in-out infinite;
}
.auth-brand-orb-2 {
  width: 280px; height: 280px;
  bottom: -40px; left: -40px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  animation: brandOrbFloat 18s ease-in-out infinite reverse;
}
@keyframes brandOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -18px); }
}

.auth-brand-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
}
.auth-brand-logo {
  display: inline-flex;
  align-items: center;
}
.auth-brand-logo img {
  /* Logo FinderPro completo (colorido, fundo escuro próprio) no painel navy.
     Sem filtro de inversão — preserva as cores da marca. */
  width: 140px;
  height: auto;
  max-width: 50%;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  opacity: 1;
  transition: transform 0.2s ease;
}
.auth-brand-logo:hover img { transform: translateY(-2px); }

.auth-brand-hero {
  max-width: 460px;
  margin-top: 60px;
}
.auth-brand-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: #fff;
}
.auth-brand-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-brand-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 440px;
}
.auth-brand-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-brand-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.auth-brand-features .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}
.auth-brand-features strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.auth-brand-features p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.auth-brand-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 40px;
}
.auth-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.auth-brand-version {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ---------- PAINEL MAIN (form direito) ---------- */
.auth-main {
  display: flex;
  flex-direction: column;
  padding: 40px 48px 24px;
  position: relative;
}
.auth-main-top { margin-bottom: 20px; }
.auth-mobile-logo {
  display: none;
  align-items: center;
}
.auth-mobile-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(10,37,64,0.18);
}

.auth-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.auth-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.auth-form-head h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--c-primary);
  margin: 0 0 6px;
}
.auth-form-head .sub {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0 0 28px;
}

.field { display: block; margin-bottom: 18px; }
.field > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.field-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
  text-transform: none;
  letter-spacing: 0;
}
.field-link:hover { text-decoration: underline; }

.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--c-light);
  pointer-events: none;
  transition: color 0.15s;
}
.input-wrap:focus-within .input-icon { color: var(--c-accent); }
.input-action {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 6px;
  color: var(--c-light);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.input-action:hover { background: var(--c-surface-2); color: var(--c-text); }

.input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 10px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.input-with-icon { padding-left: 44px; }
.input-with-action { padding-right: 44px; }
.input:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.input:hover:not(:focus) { border-color: var(--c-border-strong); }
.input::placeholder { color: #97a3b4; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.18s, opacity 0.15s;
  box-shadow: 0 6px 20px -6px rgba(37, 99, 235, 0.5);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(37, 99, 235, 0.6);
}
.btn-submit:disabled { opacity: 0.78; cursor: not-allowed; }
.btn-submit .btn-arrow { transition: transform 0.2s; }
.btn-submit:hover:not(:disabled) .btn-arrow { transform: translateX(3px); }
.btn-submit .btn-spinner {
  display: none;
  animation: btnSpin 0.9s linear infinite;
  margin-left: 6px;
}
.btn-submit.loading .btn-label,
.btn-submit.loading .btn-arrow { opacity: 0.5; }
.btn-submit.loading .btn-spinner { display: inline-block; }
@keyframes btnSpin { to { transform: rotate(360deg); } }
@keyframes shakeX {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.btn-submit.shake { animation: shakeX 0.4s; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 20px;
  font-size: 12px;
  color: var(--c-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
  padding-top: 0;
  border-top: none;
}
.auth-footer a {
  color: var(--c-accent);
  font-weight: 700;
}
.auth-footer a:hover { text-decoration: underline; }

.auth-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 11px;
  color: var(--c-light);
  flex-wrap: wrap;
}
.auth-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.auth-trust svg { color: var(--c-green); }

/* ---------- RESPONSIVO <900px: stack vertical ---------- */
@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .auth-mobile-logo { display: flex; }
  .auth-main { padding: 32px 24px; }
}
@media (max-width: 540px) {
  .auth-main { padding: 24px 18px; }
  .auth-form-head h1 { font-size: 26px; }
}

/* ---------- Compat: auth-shell/card antigos continuam funcionando ---------- */
.auth-shell {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 900px 400px at 50% 0, #eff6ff 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.auth-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 36px;
  width: 100%;
  max-width: 440px;
}
.auth-card h1 {
  font-size: 26px; font-weight: 800; color: var(--c-primary);
  margin: 0 0 6px; letter-spacing: -0.02em;
}
.auth-card .sub { font-size: 14px; color: var(--c-muted); margin: 0 0 24px; }
.auth-logo { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.auth-logo img { height: 40px; width: auto; max-width: 200px; }

/* =========== SEARCH PAGE =========== */
.search-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background:
    radial-gradient(ellipse 1200px 500px at 50% 10%, #eff6ff 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.search-main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 40px;
}
.search-container {
  width: 100%; max-width: 720px;
  text-align: center;
}
.search-head h1 {
  font-size: clamp(32px, 5vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--c-primary); margin: 16px 0 12px;
}
.search-head p {
  font-size: 17px; color: var(--c-muted); line-height: 1.55;
  margin: 0 0 32px;
}
.search-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  text-align: left;
}
.search-input {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: 14px;
  padding: 6px 10px 6px 16px;
  transition: all 0.2s;
}
.search-input:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.search-input svg { color: var(--c-light); flex-shrink: 0; }
.search-input input {
  flex: 1; border: none; outline: none;
  background: transparent; color: var(--c-text);
  font-family: var(--font-mono); font-size: 17px;
  padding: 14px 4px;
}
.search-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--c-light);
  margin: 12px 0 0;
}
.search-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--c-border);
  font-size: 12px;
}
.search-meta > div { display: flex; align-items: flex-start; gap: 8px; }
.search-meta span { color: var(--c-muted); }
@media (max-width: 640px) { .search-meta { grid-template-columns: 1fr; } }

/* =========== FLASH TOASTS =========== */
.flash-stack {
  position: fixed; top: 88px; right: 20px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100; max-width: 380px;
}
.flash {
  padding: 13px 16px; border-radius: 12px; font-size: 14px;
  border: 1px solid; box-shadow: var(--shadow);
  animation: fadeUp 0.3s ease both;
}
.flash.success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.flash.warning { background: #fffbeb; border-color: #fde68a; color: #854d0e; }
.flash.error, .flash.danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.flash.info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

/* =========== ALERT INLINE =========== */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fef2f2; border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 12px; padding: 14px 16px;
  margin-top: 20px; font-size: 14px;
}
.alert svg { flex-shrink: 0; margin-top: 2px; }
.alert strong { display: block; margin-bottom: 2px; }

/* =================================================================
   INTERATIVIDADE — adicionado em 2026-04-21
   typewriter, scroll-reveal, tabs, FAQ, comparison, slider, demo
   ================================================================= */

/* ---------- Hero mouse-follow light ---------- */
.hero-light {
  position: relative;
  overflow: hidden;
}
.hero-light::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(
    circle 520px at var(--hx-mx, 50%) var(--hx-my, 40%),
    rgba(37, 99, 235, 0.14) 0%,
    transparent 55%
  );
  pointer-events: none;
  transition: background 0.12s;
  z-index: 0;
}
.hero-light > * { position: relative; z-index: 1; }

/* ---------- Typewriter rotativo ---------- */
.type-wrap {
  display: inline-block;
  position: relative;
  color: var(--c-accent);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.type-wrap::after {
  content: "";
  display: inline-block;
  width: 2px; height: 0.9em;
  background: var(--c-accent);
  margin-left: 2px;
  vertical-align: -0.1em;
  animation: typeCaret 0.9s steps(2) infinite;
}
@keyframes typeCaret {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ---------- Hero live demo card ---------- */
.demo-card {
  background: #0a2540;
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow:
    0 40px 80px -24px rgba(10, 37, 64, 0.42),
    0 12px 24px -8px rgba(10, 37, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6edf7;
  font-family: var(--font-mono);
  position: relative;
}
.demo-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}
.demo-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.demo-dot.r { background: #ff5f56; }
.demo-dot.y { background: #ffbd2e; }
.demo-dot.g { background: #27c93f; }
.demo-head-title {
  margin-left: 6px;
  font-size: 12px;
  color: #8aa2c0;
  font-family: var(--font-mono);
}
.demo-head-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.demo-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #8aa2c0; margin: 0 0 6px;
  font-family: var(--font-sans);
}
.demo-input-row {
  display: flex; gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 4px 4px 4px 14px;
  align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.demo-input-row:focus-within {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}
.demo-input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 10px 4px;
}
.demo-input::placeholder { color: #8aa2c0; }
.demo-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
}
.demo-btn:hover:not(:disabled) { background: #1d4ed8; }
.demo-btn:active:not(:disabled) { transform: scale(0.97); }
.demo-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.demo-btn.loading::after {
  content: "";
  width: 12px; height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo-btn.shake { animation: shakeX 0.4s; }

.demo-samples {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.demo-sample {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #bcd0ea;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.15s;
}
.demo-sample:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
  color: #fff;
}

.demo-output {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #cde0ff;
  margin: 14px 0 0;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 240px;
  overflow-y: auto;
  font-family: var(--font-mono);
  transition: border-color 0.3s;
}
.demo-output.is-fresh {
  animation: demoFlash 0.5s ease;
}
@keyframes demoFlash {
  0% { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25); }
  100% { border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.demo-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
  font-size: 11px;
  color: #8aa2c0;
  font-family: var(--font-mono);
}
.demo-footer .lat { color: #6ee7b7; font-weight: 700; }

/* ---------- Scroll-reveal ---------- */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-up.delay-1 { transition-delay: 0.08s; }
.reveal-up.delay-2 { transition-delay: 0.16s; }
.reveal-up.delay-3 { transition-delay: 0.24s; }
.reveal-up.delay-4 { transition-delay: 0.32s; }
.reveal-up.delay-5 { transition-delay: 0.4s; }
.reveal-up.delay-6 { transition-delay: 0.48s; }

/* ---------- Trust logos bar ---------- */
.trust-bar {
  padding: 28px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-light);
}
.trust-logos {
  display: flex; flex-wrap: wrap; gap: 20px 40px;
  justify-content: center; align-items: center;
}
.trust-logo {
  height: 28px; width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.18s, filter 0.18s;
  font-weight: 700; color: var(--c-muted);
  font-size: 18px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-logo:hover { opacity: 1; filter: grayscale(0); color: var(--c-primary); }

/* ---------- Pillars tabs (Consulta / Enriquecimento / Atualização / Monitoramento / API) ---------- */
.pillars-tabs {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 6px;
  max-width: 880px;
  margin: 0 auto 32px;
  justify-content: center;
}
.pillar-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--c-muted);
  background: transparent;
  border: none; border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.pillar-tab:hover { color: var(--c-primary); background: rgba(37, 99, 235, 0.06); }
.pillar-tab.is-active {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 2px 6px rgba(10, 37, 64, 0.08), 0 0 0 1px var(--c-border);
}
.pillar-tab svg { width: 16px; height: 16px; }

.pillar-panel {
  display: none;
  animation: pillarIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.pillar-panel.is-active { display: grid; }
@keyframes pillarIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.pillar-panel {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .pillar-panel.is-active { grid-template-columns: 1fr; gap: 24px; }
}
.pillar-content h3 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--c-primary);
}
.pillar-content .lead {
  font-size: 17px; color: var(--c-muted);
  margin: 0 0 20px; line-height: 1.6;
}
.pillar-bullets {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; gap: 10px;
}
.pillar-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--c-muted);
}
.pillar-bullets li::before {
  content: "";
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%232563eb' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.pillar-visual {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.pillar-visual::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  transform: translate(40%, -40%);
  pointer-events: none;
}
.pillar-mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  margin-bottom: 8px;
  font-size: 13px;
}
.pillar-mock-row .lbl { font-weight: 600; color: var(--c-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.pillar-mock-row .val { margin-left: auto; font-weight: 700; color: var(--c-primary); font-family: var(--font-mono); font-size: 13px; }
.pillar-mock-row .badge-ok { background: #ecfdf5; color: #065f46; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.pillar-mock-row .badge-warn { background: #fffbeb; color: #92400e; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; }

/* ---------- Comparison table ---------- */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.compare-table thead th {
  background: var(--c-surface);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--c-muted);
  position: sticky; top: 0;
}
.compare-table thead th.col-finderpro {
  background: #eff6ff;
  color: var(--c-accent);
}
.compare-table th.row-feat {
  font-weight: 600; color: var(--c-primary);
  width: 42%;
}
.compare-table .ck-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #ecfdf5; color: #059669;
  border-radius: 50%;
}
.compare-table .ck-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #f1f5f9; color: #94a3b8;
  border-radius: 50%;
}
.compare-table .ck-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #fffbeb; color: #d97706;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}
.compare-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.03);
}
.compare-table td.col-finderpro {
  background: rgba(239, 246, 255, 0.5);
  font-weight: 700;
  color: var(--c-primary);
}

/* ---------- Pricing slider ---------- */
.slider-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  max-width: 680px;
  margin: 0 auto;
}
.slider-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 12px;
}
.slider-head h3 { margin: 0; font-size: 20px; color: var(--c-primary); font-weight: 700; }
.slider-vol {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 700;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 6px 12px;
  border-radius: 8px;
}
.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--c-accent) 0%, var(--c-accent) 50%, var(--c-border) 50%, var(--c-border) 100%);
  border-radius: 3px;
  outline: none;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-accent);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.slider-input::-webkit-slider-thumb:hover { transform: scale(1.12); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5); }
.slider-input::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-accent);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.slider-result {
  margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 580px) { .slider-result { grid-template-columns: 1fr; } }
.slider-box {
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.slider-box-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.slider-box-value {
  font-size: 28px; font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.slider-box-sub {
  font-size: 13px; color: var(--c-muted);
  margin-top: 6px;
}
.slider-box-econ {
  color: #059669;
  font-weight: 700;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid; gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-item:hover { border-color: var(--c-border-strong); }
.faq-item.is-open {
  border-color: var(--c-accent);
  box-shadow: 0 8px 24px -12px rgba(37, 99, 235, 0.25);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 16px; font-weight: 600;
  color: var(--c-primary);
  text-align: left;
  font-family: inherit;
  gap: 14px;
}
.faq-q::after {
  content: "";
  width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23425466' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  max-height: 0; opacity: 0;
  padding: 0 22px;
  color: var(--c-muted);
  font-size: 15px; line-height: 1.6;
  transition: max-height 0.35s, opacity 0.25s, padding 0.25s;
  overflow: hidden;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  opacity: 1;
  padding: 0 22px 20px;
}
.faq-a p { margin: 0 0 8px; }
.faq-a code {
  background: var(--c-accent-light); color: var(--c-accent);
  padding: 2px 6px; border-radius: 4px; font-size: 13px;
}

/* ---------- Mini-stat animado ---------- */
.stat-big .count-val { display: inline-block; }

/* ---------- Segmentos (use cases) ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 32px auto 0;
}
.segment-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.18s;
  cursor: default;
}
.segment-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 20px 36px -18px rgba(37, 99, 235, 0.28);
}
.segment-card svg {
  width: 32px; height: 32px;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.segment-card h4 {
  margin: 0 0 6px;
  font-size: 15px; font-weight: 700;
  color: var(--c-primary);
}
.segment-card p {
  margin: 0;
  font-size: 13px; color: var(--c-muted);
  line-height: 1.5;
}

