:root{
  --bg:#0b0b10;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text:#f6f4ff;
  --muted:rgba(246,244,255,.75);
  --brand1:#ff2ea6;
  --brand2:#ffcc3b;
  --brand3:#b7fffb;
  --shadow: 0 14px 50px rgba(0,0,0,.35);
  --radius: 22px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: radial-gradient(1200px 600px at 15% 10%, rgba(255,46,166,.25), transparent 55%),
radial-gradient(1200px 700px at 90% 0%, rgba(255,204,59,.22), transparent 55%),
radial-gradient(1200px 700px at 80% 70%, rgba(183,255,251,.16), transparent 60%),
var(--bg); color: var(--text); overflow-x:hidden;}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px, 92vw); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(11,11,16,.85), rgba(11,11,16,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand .mark{
  width:40px;height:40px;border-radius:12px;
  background: conic-gradient(from 210deg, var(--brand1), var(--brand2), #ff6bff, var(--brand3), var(--brand1));
  box-shadow: var(--shadow);
  position:relative; overflow:hidden;
}
.brand .mark::after{
  content:""; position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), transparent 40%);
  transform: rotate(15deg);
}
.brand .name{line-height:1}
.brand .name b{display:block;font-size:14px;letter-spacing:.4px}
.brand .name span{display:block;font-size:12px;color:var(--muted)}
.links{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.pill{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.pill:hover{transform:translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22);}
.pill.primary{
  border:none;
  background: linear-gradient(90deg, var(--brand1), #ff5cc6);
  box-shadow: 0 10px 30px rgba(255,46,166,.25);
}
.pill.primary:hover{filter:saturate(1.05) brightness(1.02)}
.hero{
  padding: 26px 0 22px;
}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.15fr .85fr;
}
@media (max-width: 980px){ .heroGrid{grid-template-columns:1fr} }
.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMain{
  min-height: 540px;
  position:relative;
}
@media (max-width: 980px){ .heroMain{min-height: 520px} }
.slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform: scale(1.03);
  transition: opacity .8s ease, transform 1.4s ease;
}
.slide.active{opacity:1; transform: scale(1);}
.heroOverlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(11,11,16,.88), rgba(11,11,16,.10) 55%);
}
.heroContent{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
  padding: 22px;
}
.heroContent .inner{max-width: 720px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  font-size: 12px;
}
.kdot{width:8px;height:8px;border-radius:99px;background: var(--brand2); box-shadow: 0 0 0 6px rgba(255,204,59,.18)}
h1{margin:12px 0 8px; font-size: clamp(28px, 4vw, 44px); letter-spacing: .2px}
.lead{margin:0 0 16px; color: var(--muted); font-size: 15px; line-height:1.55}
.ctas{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, background .2s ease;
  font-weight: 650;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.12);}
.btn.call{
  background: linear-gradient(90deg, var(--brand2), #ffe07a);
  color: #15151b;
  border:none;
}
.btn.whats{
  background: linear-gradient(90deg, #25D366, #66f09a);
  color: #06220f;
  border:none;
}
.side{
  padding: 18px;
  display:flex; flex-direction:column; gap:14px;
}
.logoBox{
  display:flex; align-items:center; gap:12px;
}
.logoImg{
  width:64px; height:64px; border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  flex:0 0 auto;
}
.logoImg img{width:100%;height:100%;object-fit:cover}
.meta b{display:block;font-size:16px}
.meta span{display:block;color:var(--muted);font-size:13px}
.info{
  display:grid; gap:10px;
}
.info .row{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px; border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.ico{width:22px;height:22px;flex:0 0 auto;opacity:.95}
.small{font-size:13px; color: var(--muted); line-height:1.45}
.section{padding: 24px 0}
.h2{font-size: 22px; margin: 0 0 12px}
.sub{margin:0 0 18px;color:var(--muted);line-height:1.55}
.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} }
.tile{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, background .2s ease;
}
.tile:hover{transform: translateY(-2px); background: rgba(255,255,255,.09);}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px; color: rgba(255,255,255,.88);
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}
.gallery{
  display:grid; gap:10px;
  grid-template-columns: repeat(12, 1fr);
}
.gitem{
  grid-column: span 4;
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  cursor: zoom-in;
  min-height: 160px;
}
.gitem.big{grid-column: span 8; min-height: 240px}
@media (max-width: 980px){
  .gitem, .gitem.big{grid-column: span 12}
}
.gitem img{width:100%;height:100%;object-fit:cover; transform: scale(1.02); transition: transform .35s ease, filter .35s ease}
.gitem:hover img{transform: scale(1.08); filter: saturate(1.05) contrast(1.02)}
.gcap{
  position:absolute; left:12px; bottom:12px;
  padding: 8px 10px; border-radius: 999px;
  background: rgba(11,11,16,.55);
  border:1px solid rgba(255,255,255,.12);
  font-size: 12px; color: rgba(255,255,255,.9);
}
.videoWrap{
  aspect-ratio: 16/9;
  width:100%;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.videoWrap iframe{width:100%;height:100%;border:0}
.split{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }
.map{
  width:100%;
  min-height: 360px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}
.map iframe{width:100%;height:100%;border:0}
.form{
  display:grid; gap:10px;
}
.input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
textarea{min-height: 120px; resize: vertical}
.actions{display:flex; gap:10px; flex-wrap:wrap}
.footer{
  padding: 26px 0 34px;
  color: rgba(255,255,255,.70);
  border-top:1px solid rgba(255,255,255,.10);
}
.footer a{color: rgba(255,255,255,.90); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25)}
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:56px;height:56px;border-radius: 18px;
  display:grid;place-items:center;
  background: linear-gradient(180deg, #25D366, #12b956);
  box-shadow: 0 14px 40px rgba(37,211,102,.25);
  border:1px solid rgba(255,255,255,.18);
}
.whatsapp-float svg{width:26px;height:26px}
.fade-up{opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease}
.fade-up.show{opacity:1; transform: translateY(0)}
/* Lightbox */
#lightbox{
  position:fixed; inset:0; z-index:80;
  background: rgba(0,0,0,.78);
  display:none; align-items:center; justify-content:center;
  padding: 18px;
}
#lightbox.show{display:flex}
.lbCard{
  width:min(980px, 96vw);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(15,15,22,.9);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  position:relative;
}
.lbCard img{width:100%;height:auto;display:block}
.lbClose{
  position:absolute; top:10px; right:10px;
  width:42px;height:42px;border-radius: 14px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  display:grid;place-items:center;
  cursor:pointer;
}
.lbClose:hover{background: rgba(255,255,255,.14)}