:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --panel2:#0c1526;
  --text:#e7eefc;
  --muted:#a9b7d3;
  --line:rgba(255,255,255,.08);
  --accent:#4f8cff;
  --ok:#22c55e;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius:16px;
  --max:1100px;
  --font: system-ui,-apple-system,"Segoe UI",Roboto,Arial;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  background:radial-gradient(1200px 600px at 70% -10%, rgba(79,140,255,.25), transparent 60%),
             radial-gradient(900px 500px at 10% 20%, rgba(34,197,94,.12), transparent 60%),
             var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}
.skip{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:16px;top:16px;width:auto;height:auto;background:#111;padding:10px;border-radius:10px;z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; gap:14px; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center; min-width:260px}
.logo{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(79,140,255,.9), rgba(34,197,94,.55));
  box-shadow: var(--shadow);
  font-weight:800;
}
.brandText strong{display:block; font-size:13px}
.brandText span{display:block; font-size:12px; color:var(--muted)}

.menu{display:flex; gap:16px; flex:1; justify-content:center}
.menu a{opacity:.9; text-decoration:none; font-size:14px}
.menu a:hover{opacity:1}

.navActions{display:flex; gap:10px; align-items:center}
.lang{
  text-decoration:none;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--muted);
}
.burger{display:none;border:1px solid var(--line);background:transparent;color:var(--text);padding:8px 10px;border-radius:12px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
}
.btnPrimary{background:var(--accent); color:#081122}
.btnGhost{border-color:var(--line); background:rgba(255,255,255,.02); color:var(--text)}
.btnWhatsapp{background:rgba(34,197,94,.95); color:#05210f}
.btn:hover{filter:brightness(1.05)}

.hero{padding:34px 0 22px}
.heroGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch}
.badge{
  display:inline-flex; padding:6px 10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
h1{margin:12px 0 10px; font-size:38px; line-height:1.15}
.lead{color:var(--muted); font-size:16px; margin:0 0 16px}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 18px}

.pills{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:12px;
}
.pill strong{display:block; font-size:14px}
.pill span{display:block; color:var(--muted); font-size:13px}

.heroCard{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.heroCard h2{margin:0 0 10px; font-size:18px}
.checks{margin:0; padding:0 18px 0 0}
.checks li{margin:8px 0; color:var(--muted)}
.note{margin:12px 0 0; color:var(--muted); font-size:13px}

.section{padding:28px 0}
.section.alt{background:rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{margin:0 0 8px; font-size:26px}
.sub{margin:0 0 14px; color:var(--muted)}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:14px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.step{border:1px solid var(--line); background:rgba(255,255,255,.03); border-radius:var(--radius); padding:14px}
.num{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(79,140,255,.2);
  border:1px solid rgba(79,140,255,.35);
  margin-bottom:8px;
  font-weight:800;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

.aboutGrid{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.infoBox{border:1px solid var(--line); background:rgba(255,255,255,.03); border-radius:var(--radius); padding:14px}
.infoBox h3{margin:0 0 6px}
.infoBox p{margin:0; color:var(--muted)}

.contactStrip{
  margin-top:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
}

.contactGrid{display:grid; grid-template-columns: 1.15fr .85fr; gap:12px}
.form{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:14px;
}
label{display:block; font-size:13px; color:var(--muted); margin:8px 0}
input,select,textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(79,140,255,.6)}
.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.finePrint{margin-top:10px; font-size:12px; color:var(--muted)}
.side{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:14px;
}
.side h3{margin:0 0 8px}
.sideList{margin:0; padding:0 18px 0 0; color:var(--muted)}
.sideList li{margin:8px 0}
.disclaimer{
  margin-top:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  background:rgba(0,0,0,.18);
  font-size:13px;
}

.legal{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:14px;
  color:var(--muted);
}
.legal h3{color:var(--text); margin:14px 0 6px}
.legal h3:first-child{margin-top:0}

.footer{padding:22px 0; border-top:1px solid var(--line)}
.footerGrid{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footerLinks{display:flex; gap:12px; align-items:center}
.footerLinks a{text-decoration:none; color:var(--muted)}
.footerLinks a:hover{color:var(--text)}
.tiny{color:var(--muted); font-size:12px; margin:6px 0 0}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .aboutGrid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-flex}
}
