:root{
  --bg:#0b1220;
  --bg2:#0f1b33;

  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.06);

  --line: rgba(255,255,255,.10);
  --line2: rgba(96,165,250,.28);

  --text:#eaf0ff;
  --muted:#b9c6da;
  --muted2:#9fb0c7;

  --blue:#2563EB;
  --blue2:#60A5FA;

  --radius:18px;
  --radius2:24px;

  /* sombras mais “premium”, menos pesadas */
  --shadow: 0 18px 60px rgba(0,0,0,.30);
  --shadow2: 0 10px 24px rgba(0,0,0,.20);
  --shadow3: 0 14px 38px rgba(37,99,235,.12);

  --max:1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(37,99,235,.28), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(96,165,250,.16), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #0f1b33 55%, #0a1020 100%);
  line-height:1.72;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:var(--max); margin:0 auto; padding:0 24px; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px;
  background: rgba(255,255,255,0.08);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

/* Typography */
h1,h2,h3{ font-family:Poppins, Inter, system-ui, sans-serif; margin:0; }
h1{ font-size: clamp(38px, 4vw, 54px); line-height:1.06; letter-spacing:-.02em; }
h2{ font-size: clamp(26px, 2.5vw, 36px); line-height:1.14; letter-spacing:-.015em; }
h3{ font-size:18px; line-height:1.25; }
p{ margin:0; color:var(--muted); font-size:16px; }
.lead{ font-size:18px; color:#cbd5e1; max-width:760px; }
.desc{ margin-top:12px; max-width:78ch; color:var(--muted); }

/* Kicker */
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
.kicker .dot{
  width:7px;height:7px;border-radius:999px;background:var(--blue);
  box-shadow:0 0 0 4px rgba(37,99,235,.18);
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(10,16,32,.60);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900;
}
.brand img{ width:30px; height:30px; border-radius:12px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.35)); }
.brand span{ font-family:Poppins, Inter, system-ui, sans-serif; font-weight:900; letter-spacing:-.015em; }

.navlinks{
  display:flex; gap:18px; align-items:center;
}
.navlinks a{
  color:#cbd5e1; font-weight:800; font-size:14px;
  padding:10px 10px; border-radius:12px;
  transition:all .22s ease;
}
.navlinks a:hover{
  background:rgba(255,255,255,.06); color:#fff; transform: translateY(-1px);
}
.navcta{ display:flex; gap:10px; align-items:center; margin-left: 6px; }

.navToggle{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.navToggle span{
  display:block; width:18px; height:2px;
  margin:4px auto; background:#e5e7eb; border-radius:999px;
}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn.primary{
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 70%);
  color:#fff;
  box-shadow: 0 14px 40px rgba(37,99,235,.24);
}
.btn.primary:hover{ box-shadow: 0 18px 56px rgba(37,99,235,.32); }

.btn.ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color:#e5e7eb;
}
.btn.ghost:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
  box-shadow: var(--shadow2);
}

.w100{ width:100%; }

/* HERO */
.hero{ padding:92px 0 44px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:42px;
  align-items:center;
}
.heroTop{ display:flex; flex-direction:column; gap:18px; }
.heroActions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.micro{
  margin-top:14px;
  display:flex; gap:12px; flex-wrap:wrap;
  color:#cbd5e1; font-size:13px;
}
.micro span{
  padding:7px 11px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}

/* MOCK */
.mock{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 320px at 30% 20%, rgba(37,99,235,.28), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 20px;
}
.mockTop{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.pill{
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:#dbeafe;
  font-size:12px;
  font-weight:800;
}
.mockGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.kpi{
  padding:12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}
.kpiTitle{ font-size:12px; color: rgba(255,255,255,.65); font-weight:800; }
.kpiValue{ font-size:20px; font-weight:900; color:#fff; margin-top:4px; }
.bar{
  height:10px;
  margin-top:10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.bar i{
  display:block;
  height:100%;
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  border-radius:999px;
}
.mockNote{
  margin-top:12px;
  font-size:13px;
  color: rgba(255,255,255,.70);
}

/* SECTIONS */
.section{ padding:96px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.sectionHead{ margin-bottom: 20px; }
.sectionHead h2{ margin-bottom: 10px; }
.sectionHead p{ margin-top: 0; }

/* GRIDS */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
  align-items:stretch;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

/* CARDS — AJUSTE ANTI “TIJOLO” */
.card{
  background: rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);

  /* menos “tijolo” */
  padding: 14px 16px;

  box-shadow: var(--shadow2);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.34);
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow3), var(--shadow2);
}

/* slim: cards de feature (mais finos ainda) */
.card.slim{
  padding: 12px 14px;
  border-radius: 18px;
}

/* destaque */
.card.highlight{
  border-color: rgba(37,99,235,.35);
  background:
    radial-gradient(520px 320px at 25% 20%, rgba(37,99,235,.18), transparent 55%),
    rgba(255,255,255,.035);
}

/* Lists */
.listCheck{ margin-top:12px; display:grid; gap:10px; }
.listCheck li{
  padding-left: 26px;
  position:relative;
  color:#d7e0ee;
}
.listCheck li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: rgba(96,165,250,.95);
  font-weight: 900;
}

.listX{ margin-top:12px; display:grid; gap:10px; }
.listX li{
  padding-left: 26px;
  position:relative;
  color:#d7e0ee;
}
.listX li::before{
  content:"✕";
  position:absolute; left:0; top:0;
  color: rgba(248,113,113,.95);
  font-weight: 900;
}

.note{
  margin-top:14px;
  font-size:13px;
  color: rgba(255,255,255,.72);
}

.actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.actions.center{ justify-content:center; }

.center{ text-align:center; }
.microCenter{
  margin-top:16px;
  text-align:center;
  font-size:13px;
  color: rgba(255,255,255,.62);
}

/* PLANS */
.plans{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}
.plan{ position:relative; }
.plan .sub{ margin-top:6px; color: rgba(255,255,255,.68); }
.ribbon{
  position:absolute; top:14px; right:14px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(37,99,235,.16);
  border:1px solid rgba(37,99,235,.40);
  color:#dbeafe;
}
.featured{
  border-color: rgba(37,99,235,.40);
  box-shadow: 0 22px 70px rgba(37,99,235,.18);
}

/* FOOTER */
.footer{
  padding:54px 0;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.footerTitle{ margin:0 0 8px; }
.footerText{ margin:0; color: rgba(255,255,255,.65); }
.footlinks{ display:grid; gap:10px; }
.footlinks a{
  color:#cbd5e1; font-weight:800; font-size:13px;
}
.footlinks a:hover{ color:#fff; }
.footerBottom{
  margin-top:16px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

/* ===== FORMULÁRIOS ===== */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue2);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* Wizard específico */
.wizard-card.hidden {
  display: none;
}

.wizard-options {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--muted);
}

.opt input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.wizard-progress {
  margin-top: 32px;
}

.wizard-progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.wizard-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  width: 0%;
  transition: width 0.3s;
}

.wizard-progress-meta {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Ajustes para cards de resultado */
.wizard-result {
  text-align: center;
}

.wizard-result p {
  margin: 16px 0;
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns:1fr; gap:22px; }
  .grid3{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .plans{ grid-template-columns:1fr; }
  .footerGrid{ grid-template-columns:1fr; }
  .navlinks{ display:none; }
  .navToggle{ display:inline-flex; align-items:center; justify-content:center; }
  .navlinks.isOpen{
    display:flex;
    position: fixed;
    top:78px; left:0; right:0;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(10,16,32,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .navcta{ flex-direction: column; align-items: stretch; gap: 8px; margin-left:0; }
  .navlinks a{ padding:12px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn,.card{ transition:none; }
}
