/* ==========================================================================
   Judiciativos — Landing page premium (dark, enterprise, big-tech)
   Self-contained, responsivo (mobile / tablet / desktop). Sem deps externas.
   ========================================================================== */
:root {
    --bg: #070a11;
    --bg-elev: #0e1420;
    --bg-card: #121a2b;
    --border: #1e2942;
    --border-soft: #18213600;
    --text: #eef2fb;
    --text-2: #aeb9d4;
    --muted: #6b7896;
    --brand: #3b82f6;
    --brand-2: #22d3ee;
    --gold: #f5c451;
    --emerald: #34d399;
    --danger: #f87171;
    --radius: 18px;
    --maxw: 1180px;
    --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
    --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Ambient background glow */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-fx::before, .bg-fx::after {
    content: ""; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5;
}
.bg-fx::before { width: 620px; height: 620px; top: -220px; left: -120px; background: radial-gradient(circle, #1e40af, transparent 70%); }
.bg-fx::after { width: 560px; height: 560px; top: 220px; right: -160px; background: radial-gradient(circle, #0e7490, transparent 70%); opacity: 0.35; }

/* ---------- Nav ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(160%) blur(14px);
    background: rgba(7, 10, 17, 0.72);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 18px; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #06121f; font-weight: 900; box-shadow: 0 6px 18px -6px var(--brand); }
.by-solit { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em;
    border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px; margin-left: 2px; }
/* Logo Solit (fundo claro para o símbolo azul destacar no tema dark) */
.solit-mini { display: inline-block; vertical-align: middle; background: #fff; border-radius: 6px; padding: 2px 3px; }
.solit-logo-wrap { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.solit-logo { background: linear-gradient(180deg,#ffffff,#eef3fb); border-radius: 14px; padding: 8px 12px;
    box-shadow: 0 12px 30px -14px rgba(59,130,246,0.5); border: 1px solid var(--border); }
.solit-word { font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(120deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-2); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 14px; padding: 11px 20px; border-radius: 11px;
    border: 1px solid transparent; cursor: pointer; transition: transform 0.15s, filter 0.15s, background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), #2563eb); color: #fff; box-shadow: 0 12px 30px -12px var(--brand); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 13px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px 10px; color: var(--text); cursor: pointer; }

/* ---------- Hero ---------- */
main { position: relative; z-index: 1; }
.hero { padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600;
    color: var(--brand-2); background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 6px 12px; border-radius: 999px; letter-spacing: 0.02em; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(52,211,153,0.2); }
h1.hero-title {
    font-size: clamp(34px, 5.6vw, 62px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 800;
    background: linear-gradient(180deg, #ffffff 30%, #b7c4e0); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .grad { background: linear-gradient(120deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 22px; font-size: clamp(15px, 1.7vw, 19px); color: var(--text-2); max-width: 560px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-trust b { color: var(--text); font-weight: 700; }

/* Product mockup (CSS/SVG, sem imagens externas) */
.mock {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow);
    padding: 18px; position: relative; overflow: hidden;
}
.mock::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 200px at 80% -10%, rgba(59,130,246,0.18), transparent 60%); pointer-events: none; }
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #29354f; }
.mock-bar span:first-child { background: #f87171; } .mock-bar span:nth-child(2){ background:#fbbf24;} .mock-bar span:nth-child(3){ background:#34d399;}
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mkpi { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 13px; padding: 14px; }
.mkpi .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.mkpi .val { font-size: clamp(18px, 2.6vw, 26px); font-weight: 800; margin-top: 6px; letter-spacing: -0.02em; }
.mkpi.gold .val { color: var(--gold); } .mkpi.em .val { color: var(--emerald); }
.mock-chart { margin-top: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 13px; padding: 14px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--brand-2), var(--brand)); opacity: 0.9; animation: grow 1s ease both; }
@keyframes grow { from { height: 0; } }
.mock-row { margin-top: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-2); padding: 9px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 11px; }
.pill { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.pill-em { color: #06231a; background: var(--emerald); } .pill-gold { color:#2a1f04; background: var(--gold); }

/* ---------- Logos / trust strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 60px); flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.strip-inner span { opacity: 0.8; }

/* ---------- Sections ---------- */
section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.sec-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.sec-tag { font-size: 12.5px; font-weight: 700; color: var(--brand-2); text-transform: uppercase; letter-spacing: 0.12em; }
.sec-head h2 { font-size: clamp(26px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.03em; margin-top: 12px; font-weight: 800; }
.sec-head p { margin-top: 16px; color: var(--text-2); font-size: clamp(15px, 1.6vw, 18px); }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.feature:hover { transform: translateY(-4px); border-color: #2b3c63; box-shadow: var(--shadow); }
.feat-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 22px;
    background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); margin-bottom: 16px; }
.feature h3 { font-size: 17px; letter-spacing: -0.01em; }
.feature p { margin-top: 8px; color: var(--text-2); font-size: 14.5px; }

/* Steps / how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: relative; }
.step .num { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #06121f; margin-bottom: 14px; }
.step h3 { font-size: 16px; } .step p { margin-top: 6px; color: var(--text-2); font-size: 14px; }

/* Metrics band */
.metrics { background: linear-gradient(180deg, #0b1120, #0a0f1c); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.metric .big { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric .cap { color: var(--text-2); font-size: 14px; margin-top: 6px; }

/* Security */
.sec-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check .ok { width: 24px; height: 24px; flex-shrink: 0; border-radius: 7px; display: grid; place-items: center;
    background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.35); color: var(--emerald); font-weight: 900; font-size: 13px; }
.check b { font-weight: 700; } .check p { color: var(--text-2); font-size: 14px; }

/* CTA */
.cta-card {
    background: radial-gradient(700px 300px at 50% -20%, rgba(59,130,246,0.25), transparent 60%), linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--border); border-radius: 26px; padding: clamp(40px, 6vw, 72px) 24px; text-align: center; box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(26px, 4vw, 44px); letter-spacing: -0.03em; font-weight: 800; }
.cta-card p { margin-top: 14px; color: var(--text-2); font-size: clamp(15px, 1.6vw, 18px); max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 44px 0 34px; color: var(--muted); }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-note { font-size: 13px; max-width: 520px; }
.foot-links { display: flex; gap: 22px; font-size: 13px; }
.foot-links a { color: var(--text-2); } .foot-links a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .mock { order: -1; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .sec-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav.open .nav-links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
        background: var(--bg-elev); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 14px; }
    .features { grid-template-columns: 1fr; }
    .hero-actions .btn, .cta-actions .btn { flex: 1; }
    .foot-grid { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 1500px) { :root { --maxw: 1240px; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }

.brand-logo-svg { height: 30px; width: auto; vertical-align: middle; margin-right: 8px; filter: drop-shadow(0 2px 6px rgba(47,158,87,0.35)); }
