:root{
  --bg:#0b1220;
  --surface:#ffffff;
  --surface2:rgba(255,255,255,.78);
  --ink:#0f172a;
  --muted:#475569;
  --brand:#0ea5e9;
  --brand2:#2563eb;
  --ring:rgba(37,99,235,.18);
  --border:rgba(15,23,42,.12);
  --shadow: 0 18px 50px rgba(2,6,23,.16);
  --shadow2: 0 10px 30px rgba(2,6,23,.10);
}

*{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(--ink);
  line-height:1.65;
  background:
    radial-gradient(900px 550px at 10% -10%, rgba(14,165,233,.22) 0%, rgba(14,165,233,0) 60%),
    radial-gradient(900px 550px at 95% 0%, rgba(37,99,235,.18) 0%, rgba(37,99,235,0) 60%),
    #f8fafc;
}

a{color:var(--brand2); text-decoration:none}
a:hover{opacity:.92}

.container{max-width:1180px; margin:0 auto; padding:0 22px}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(248,250,252,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}

.navbar{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand img{height:34px; width:auto}
.brand small{display:block; color:var(--muted); font-weight:650; line-height:1.2}

nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
nav a{
  color:#0f172a;
  font-weight:750;
  font-size:.95rem;
  padding:10px 12px;
  border-radius:12px;
}
nav a.active, nav a:hover{background: rgba(14,165,233,.10); color:#0b1220}

/* Hero */
.hero{padding:60px 0 18px}
.heroWrap{
  --hero-image: none;
  border:1px solid var(--border);
  border-radius:26px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(2,6,23,.72), rgba(2,6,23,.30)),
    var(--hero-image) center/cover no-repeat;
}
.heroInner{padding:52px 28px; display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:stretch}
@media (max-width: 980px){ .heroInner{grid-template-columns:1fr; padding:42px 22px} }

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
.badge{
  font-size:.84rem;
  font-weight:750;
  color: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(2,6,23,.28);
  padding:7px 12px;
  border-radius:999px;
  backdrop-filter: blur(8px);
}

h1{margin:0 0 12px; font-size:2.6rem; line-height:1.08; letter-spacing:-.02em; color:#fff}
@media (max-width:520px){ h1{font-size:2.1rem} }
.lead{margin:0 0 14px; font-size:1.08rem; color:rgba(255,255,255,.92); max-width:70ch}
.note{margin:0; color:rgba(255,255,255,.78); font-weight:650}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{display:inline-block; padding:12px 16px; border-radius:14px; font-weight:850; border:1px solid rgba(255,255,255,.22)}
.btn.primary{background: linear-gradient(135deg, rgba(14,165,233,.96), rgba(37,99,235,.92)); color:white; border-color: rgba(37,99,235,.35)}
.btn.secondary{background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.28)}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}

.aside{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius:18px;
  padding:18px;
  backdrop-filter: blur(12px);
  color:#fff;
}

.kpis{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:12px}
.kpis div{background: rgba(2,6,23,.26); border:1px solid rgba(255,255,255,.16); border-radius:14px; padding:12px}
.kpis strong{display:block; font-size:1.05rem}
.kpis span{display:block; color:rgba(255,255,255,.78); font-weight:650; margin-top:2px}

/* Sections */
section{padding:46px 0}
.sectionTitle h2{margin:0 0 10px; font-size:1.9rem; letter-spacing:-.01em}
.sectionTitle p{margin:0; color:var(--muted); max-width:78ch; font-weight:550}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:18px}
@media (max-width: 980px){ .grid{grid-template-columns:1fr 1fr} }
@media (max-width: 640px){ .grid{grid-template-columns:1fr} }

.card{
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 22px rgba(2,6,23,.06);
}
.card:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted)}
.card ul{margin:0; padding-left:18px; color:#111827}

.cardMedia{display:flex; gap:14px; align-items:center}
.cardMedia img{width:90px; height:70px; object-fit:cover; border-radius:14px; border:1px solid var(--border)}

.split{display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; margin-top:18px}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }

.panel{
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 22px rgba(2,6,23,.06);
}

/* Forms */
form{display:grid; gap:10px}
label{font-weight:750}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.95);
  font: inherit;
}
textarea{min-height:120px; resize:vertical}
.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
@media (max-width: 720px){ .formRow{grid-template-columns:1fr} }

/* Footer */
footer{
  padding:38px 0;
  border-top:1px solid var(--border);
  background: rgba(248,250,252,.78);
}
.footerGrid{display:grid; grid-template-columns: 1.1fr .9fr .9fr; gap:16px}
@media (max-width: 980px){ .footerGrid{grid-template-columns:1fr} }
.footerGrid p{margin:0; color:var(--muted)}
.footerGrid a{color:#0f172a; font-weight:700}
.footerGrid a:hover{color:var(--brand2)}

.legal{margin-top:14px; font-size:.92rem; color:var(--muted)}
.legalLinks{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}

/* Cookie banner */
.cookieBanner{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 980px; margin: 0 auto;
  background: rgba(255,255,255,.96);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow2);
  padding:14px;
  display:none;
  z-index:100;
}
.cookieBanner .row{display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.cookieBanner p{margin:0; color:var(--muted); max-width:80ch}
.cookieBanner .actions{display:flex; gap:10px}
.cookieBanner button{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(37,99,235,.22);
  background: rgba(255,255,255,.9);
  font-weight:850;
  cursor:pointer;
}
.cookieBanner button.primary{background: linear-gradient(135deg, rgba(14,165,233,.96), rgba(37,99,235,.92)); color:#fff}

/* Utility */
.hr{height:1px; background: var(--border); margin:14px 0}

.reclama img{height:38px; width:auto}
