
:root{
  --bg:#0b1220;
  --panel:#0f172a;
  --panel2:#0c1426;
  --card:#111c33;
  --text:#e5e7eb;
  --muted:#a7b0c0;
  --border:rgba(255,255,255,.10);
  --accent:#25D366;
  --accent2:#38bdf8;
  --radius:18px;
  --max:1120px;
  --pad:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#060a13 70%);
  color:var(--text);
  line-height:1.65;
}
a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
header{padding:28px 0 18px}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.brand img{max-width:260px;height:auto;filter:drop-shadow(0 10px 18px rgba(0,0,0,.35))}
.badge{
  display:inline-block;
  background:rgba(56,189,248,.12);
  border:1px solid rgba(56,189,248,.25);
  color:#c9f1ff;
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
}
h1{font-size:44px;line-height:1.08;margin:14px 0 8px}
.lead{font-size:19px;color:var(--muted);margin:0 0 14px}
.cta{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 0}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 18px;border-radius:12px;
  text-decoration:none;font-weight:900;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
}
.btn.primary{background:var(--accent);color:#04110a;border-color:rgba(37,211,102,.35)}
.btn.secondary{background:rgba(56,189,248,.16);border-color:rgba(56,189,248,.30)}
.hero{
  margin:18px 0 0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#000;
  box-shadow:0 16px 40px rgba(0,0,0,.45);
}
.hero img{width:100%;height:460px;object-fit:cover;display:block;opacity:.95}
.kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px}
.kpi{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
}
.kpi b{display:block}
.kpi span{color:var(--muted);font-size:13px}
section{padding:44px 0;border-top:1px solid rgba(255,255,255,.06)}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}
.mosaic{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:14px}
.mosaic img{width:100%;height:180px;object-fit:cover;border-radius:16px;border:1px solid var(--border);background:#000;opacity:.95}
.timeline{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:14px;margin-top:14px}
.day{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px 14px 12px;
}
.day .meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-bottom:8px}
.pill{display:inline-block;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid var(--border);font-weight:900;font-size:12px;color:#dbeafe}
.day h4{margin:0 0 6px;font-size:16px}
.day ul{margin:8px 0 0;padding-left:18px;color:var(--muted);font-size:14px}
.day p{margin:0;color:var(--muted);font-size:15px}
.pricebox{display:flex;gap:14px;flex-wrap:wrap;align-items:baseline}
.pricebox strong{font-size:40px}
.small{font-size:13px;color:var(--muted)}
form label{display:block;font-weight:900;margin-top:12px}
input,select,textarea{
  width:100%;padding:12px 12px;border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.25);
  color:var(--text);
}
textarea{resize:vertical}
button{
  width:100%;
  margin-top:14px;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(37,211,102,.35);
  background:var(--accent);
  color:#04110a;
  font-weight:1000;
  cursor:pointer;
}
button:hover{filter:brightness(1.02)}
footer{padding:26px 0 34px;border-top:1px solid rgba(255,255,255,.08);color:var(--muted)}
/* WhatsApp floating */
.wa-float{
  position:fixed; right:18px; bottom:18px;
  width:56px; height:56px; border-radius:999px;
  background:var(--accent); display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px rgba(0,0,0,.40);
  text-decoration:none; z-index:9999;
}
.wa-float svg{width:28px;height:28px;fill:#04110a}
.wa-label{
  position:fixed; right:86px; bottom:28px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  color:var(--text);
  padding:8px 10px; border-radius:12px;
  font-weight:1000; font-size:13px; z-index:9998;
  backdrop-filter: blur(8px);
}
@media (max-width: 980px){
  h1{font-size:34px}
  .hero img{height:320px}
  .kpis{grid-template-columns:1fr 1fr}
  .grid{grid-template-columns:1fr}
  .mosaic{grid-template-columns:1fr 1fr}
  .wa-label{display:none}
}
