:root{
  --bg:#070b16;
  --panel:#0b1220;
  --card:rgba(255,255,255,.04);
  --border:rgba(148,163,184,.18);
  --text:#e5e7eb;
  --muted:#94a3b8;
  --accent:#22c55e;
  --accent2:#60a5fa;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --r:22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 800px at 75% -10%, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(1000px 700px at 10% 0%, rgba(34,197,94,.18), transparent 55%),
    var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,92vw); margin:0 auto}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,22,.72);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 260px;
}
.brand img{height:40px; width:auto}
.brand .meta{display:flex; flex-direction:column}
.brand .meta strong{font-size:14px}
.brand .meta span{font-size:12px; color:var(--muted)}
.menu{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.menu a{
  padding:8px 10px;
  color:var(--muted);
  border-radius:12px;
}
.menu a:hover{background:rgba(148,163,184,.08); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-weight:650;
}
.btn:hover{transform: translateY(-1px); transition:.15s ease}
.btn.primary{background:linear-gradient(135deg, rgba(34,197,94,.95), rgba(34,197,94,.70)); border-color:rgba(34,197,94,.35); color:#06140b}
.btn.secondary{background:linear-gradient(135deg, rgba(96,165,250,.95), rgba(96,165,250,.62)); border-color:rgba(96,165,250,.35); color:#07101a}

.hero{padding:46px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:stretch}
@media (max-width: 960px){ .hero-grid{grid-template-columns:1fr} .brand{min-width:auto} }

.panel{
  border:1px solid var(--border);
  background: rgba(11,18,32,.60);
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.media{aspect-ratio: 16/9; background:#030617}
.media img{width:100%; height:100%; object-fit:cover; display:block}
.body{padding:20px}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
}
h1,h2,h3,h4{margin:0 0 10px; line-height:1.15}
h2{font-size:36px}
p{margin:0 0 12px; color:rgba(229,231,235,.92)}
.cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.stack{display:grid; gap:16px}
.split{
  display:grid; gap:16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

.section{padding:34px 0}
.section .sub{color:var(--muted); margin:0 0 18px}

.cards{
  display:grid; gap:14px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  grid-column: span 4;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 980px){ .card{grid-column: span 6} }
@media (max-width: 640px){ .card{grid-column: span 12} }
.card img{width:100%; height:190px; object-fit:cover; display:block; background:#030617}
.card .body{padding:16px}
.card .body h4{margin:0 0 6px; font-size:18px}

.pills{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  font-size:12px; color:var(--muted);
  border:1px solid var(--border);
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.03);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.g{
  grid-column: span 4;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#030617;
}
@media (max-width: 900px){ .g{grid-column: span 6} }
@media (max-width: 640px){ .g{grid-column: span 12} }
.g img{width:100%; height:250px; object-fit:cover; display:block}

.maps{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#030617;
  box-shadow: var(--shadow);
}
.maps iframe{width:100%; height:360px; border:0; display:block}
.small{font-size:12px; color:var(--muted)}

.footer{
  padding:26px 0 40px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
@media (max-width: 900px){ .footer-grid{grid-template-columns:1fr} }

.notice{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
  color:rgba(229,231,235,.88);
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.wa-float a{
  display:flex; align-items:center; justify-content:center;
  width:54px; height:54px;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(34,197,94,.72));
  color:#04130a;
  font-weight:900;
}
.wa-float a.secondary{
  background: linear-gradient(135deg, rgba(96,165,250,.95), rgba(96,165,250,.62));
  color:#07101a;
}
