:root{
  --bg1:#05120e;
  --bg2:#061914;
  --text:#eef7f2;
  --muted: rgba(238,247,242,.72);
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.085);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.40);
  --accent:#34d399;
  --sky:#38bdf8;
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;color:var(--text);}
body{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(52,211,153,.20), transparent 55%),
    radial-gradient(900px 520px at 88% 18%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}

/* Header */
.header{
  position: sticky; top:0; z-index: 60;
  background: rgba(5,18,14,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0; gap:12px;
}
.brand{display:flex; align-items:center; gap:12px; font-weight: 900; letter-spacing:.2px;}
.logo{
  width:42px; height:42px; object-fit:contain;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(52,211,153,.20);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brandName{font-size:16px; line-height:1.1}
.brandSub{font-size:12px; color:var(--muted); font-weight: 750; margin-top:2px}

.nav{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.navlink{
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}
.navlink:hover{
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,.06);
}
.actions{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-weight: 900;
  white-space: nowrap;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); transition: .18s ease}
.btn.primary{
  border-color: rgba(52,211,153,.40);
  background: linear-gradient(135deg, rgba(52,211,153,.22), rgba(56,189,248,.10));
}
.btn.ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}

/* Hero / Slider */
.hero{padding: 18px 0 0}
.heroShell{width:100%; padding: 0 12px;}
.slider{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background:#020805;
  min-height: 520px;
}
.slides{
  display:flex;
  width:200%;
  transform: translateX(0%);
  transition: transform .6s ease;
}
.slide{width:50%; min-height:520px; position:relative;}
.slide img{
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(1.07);
}
.overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 25% 30%, rgba(0,0,0,.25), rgba(0,0,0,.58)),
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.48) 100%);
}
.heroContent{
  position:absolute;
  left:0; right:0; bottom:72px;
  padding: 28px 22px 22px;
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  gap:12px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
h1{
  margin:0;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.2px;
}
.lead{
  margin:0;
  color: rgba(238,247,242,.84);
  font-weight: 700;
  line-height: 1.5;
  max-width: 860px;
}
.heroCtas{display:flex; gap:10px; flex-wrap:wrap; margin-top:4px}

/* Dots */
.dots{
  position:absolute; left:0; right:0; bottom:14px;
  display:flex; gap:9px; justify-content:center; align-items:center;
  z-index: 10;
}
.dot{
  width:11px; height:11px; border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.20);
  cursor:pointer;
}
.dot.active{
  background: var(--accent);
  border-color: rgba(52,211,153,.85);
  box-shadow: 0 0 0 7px rgba(52,211,153,.16);
}

/* Social Bar (premium) */
.socialBar{
  padding: 18px 0;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(52,211,153,.14), rgba(56,189,248,.12));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.socialWrap{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.socialItem{
  display:flex; align-items:center; gap:10px;
  padding: 12px 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
}
.socialItem:hover{transform: translateY(-2px); transition: .18s ease}
.socialItem::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(420px 120px at 20% 0%, rgba(255,255,255,.12), transparent 60%);
  opacity: 0;
  transition: .2s ease;
}
.socialItem:hover::after{opacity:1}
.sIcon{
  width:40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  flex:0 0 auto;
}
.sIcon svg{width:22px; height:22px; color: rgba(238,247,242,.95)}
.sText strong{display:block; font-weight: 950}
.sSub{display:block; color: var(--muted); font-weight: 750; font-size: 12px; margin-top:2px}

/* Glow */
.socialItem.ig:hover{box-shadow: 0 20px 55px rgba(225,48,108,.18), 0 16px 40px rgba(0,0,0,.22)}
.socialItem.fb:hover{box-shadow: 0 20px 55px rgba(24,119,242,.18), 0 16px 40px rgba(0,0,0,.22)}
.socialItem.yt:hover{box-shadow: 0 20px 55px rgba(255,0,0,.18), 0 16px 40px rgba(0,0,0,.22)}
.socialItem.wa:hover{box-shadow: 0 20px 55px rgba(37,211,102,.18), 0 16px 40px rgba(0,0,0,.22)}
.socialItem.mail:hover{box-shadow: 0 20px 55px rgba(255,255,255,.10), 0 16px 40px rgba(0,0,0,.22)}

/* Sections */
.section{padding: 46px 0}
.titleRow{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-bottom: 16px;
}
.titleRow h2{margin:0; font-size: 24px}
.titleRow p{margin:0; color: var(--muted); font-weight: 700}

/* Grid + Cards */
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px;}
.card{
  border:1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  padding: 16px;
}
.service{grid-column: span 4}
.icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(52,211,153,.25);
  background: rgba(52,211,153,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-size: 18px;
}
.service h3{margin:10px 0 6px; font-size: 16px}
.service p{margin:0; color: var(--muted); font-weight: 700; line-height: 1.5}

/* Gallery */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gItem{
  grid-column: span 3;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  position:relative;
  aspect-ratio: 4/3;
}
.gItem img{width:100%; height:100%; object-fit:cover}
.gItem::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  opacity:.7;
}
.gItem:hover{transform: translateY(-2px); transition:.18s ease}

/* Pricing */
.price{grid-column: span 4}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(56,189,248,.25);
  background: rgba(56,189,248,.10);
  color: rgba(238,247,242,.92);
  font-weight: 900;
  font-size: 12px;
}
.amt{font-size: 28px; font-weight: 950; letter-spacing: -.3px; margin: 10px 0 6px}
.meta{color:var(--muted); font-weight: 750}
.price ul{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted); font-weight:750; line-height:1.65}

/* Rules */
.rules{grid-column: span 7}
.rules ol{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted); font-weight:750; line-height:1.7}
.rules li{margin: 6px 0}
.notice{grid-column: span 5; background: var(--card2); border-color: rgba(52,211,153,.20)}
.notice h3{margin:0 0 8px}
.notice p{margin:0; color:var(--muted); font-weight:750; line-height:1.6}
.miniCtas{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Reservation */
.reserve{grid-column: span 12; padding: 18px}
.reserveForm{display:grid; gap:12px}
.reserveForm label{display:grid; gap:8px; font-weight: 900; color: rgba(238,247,242,.92)}
.reserveForm input,
.reserveForm select,
.reserveForm textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
.reserveForm input:focus,
.reserveForm select:focus,
.reserveForm textarea:focus{
  border-color: rgba(52,211,153,.42);
  box-shadow: 0 0 0 6px rgba(52,211,153,.14);
}
.fRow{display:grid; grid-template-columns: 1fr 1fr; gap: 12px}
.fActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.fine{color:var(--muted); font-weight: 750; font-size: 12px}

/* Contact */
.contact{grid-column: span 7}
.contactTitle{margin:0 0 10px}
.cRow{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  margin-top:10px;
}
.cIcon{min-width:26px}
.cHead{font-weight: 950}
.cText{color: var(--muted); font-weight: 750; margin-top:2px}
.map{grid-column: span 5; padding:0; overflow:hidden}
iframe{width:100%; height:100%; min-height: 330px; border:0; display:block}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 26px 0 34px;
  color: var(--muted);
}
.foot{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; font-weight: 750}
.footLinks{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.footLinks span{opacity:.6}

/* Floating WhatsApp */
.fab{
  position:fixed; right:18px; bottom:18px; z-index: 70;
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(37,211,102,.28);
  background: rgba(5,18,14,.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-weight: 950;
}
.fabDot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(37,211,102,.95);
  box-shadow: 0 0 0 6px rgba(37,211,102,.14);
}
.fab:hover{transform: translateY(-1px); transition:.18s ease}

/* Responsive */
/* Rules preview */
.rulesPreview{grid-column: span 7}
.rulesLead{margin:0 0 10px; color: rgba(238,247,242,.92); font-weight: 800; line-height:1.55}
.rulesList{margin:0; padding-left: 18px; color: rgba(255,255,255,.86); font-weight: 750; line-height:1.7}
.rulesList li{margin:6px 0}
.rulesList.clipped{
  max-height: 168px;
  overflow: hidden;
  position: relative;
  padding-right: 6px;
}
.rulesList.clipped::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height: 54px;
  background: linear-gradient(180deg, rgba(6,25,20,0), rgba(6,25,20,.92));
}
.rulesMore{
  margin-top: 12px;
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: .2px;
}
.rulesMore:hover{
  color: #fff;
  text-shadow: 0 0 18px rgba(52,211,153,.22);
}
.rulesMore a{
  color: rgba(255,255,255,.95);
  font-weight: 900;
}
.rulesMore a:hover{ color:#fff; }

/* Modal / Lightbox */
.noScroll{overflow:hidden}
.modal{
  position:fixed; inset:0; z-index: 200;
  display:none;
}
.modal.open{display:block}
.modalOverlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}
.modalDialog{
  position:relative;
  width: min(900px, calc(100% - 26px));
  max-height: calc(100% - 26px);
  margin: 13px auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,18,14,.92);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  display:flex;
  flex-direction: column;
  overflow:hidden;
}
.modalHeader{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(52,211,153,.12), rgba(56,189,248,.10));
}
.modalTitle{font-weight: 950; letter-spacing: -.2px}
.modalClose{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.modalClose:hover{transform: translateY(-1px); transition:.18s ease}
.modalBody{
  padding: 16px;
  overflow:auto;
}
.modalBody p{margin: 0 0 10px; color: rgba(238,247,242,.88); font-weight: 750; line-height:1.6}
.rulesList.full{padding-left: 18px}
.rulesList.full > li{margin: 10px 0}
.rulesList.full ul{margin-top: 8px}

@media (max-width: 1100px){
  .socialWrap{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .gItem{grid-column: span 4}
}
@media (max-width: 980px){
  .heroContent{bottom:56px;}
  .nav{display:none}
  .slider, .slide{min-height: 420px}
  .service{grid-column: span 6}
  .price{grid-column: span 6}
  .rules{grid-column: span 12}
  .rulesPreview{grid-column: span 12}
  .notice{grid-column: span 12}
  .contact{grid-column: span 12}
  .map{grid-column: span 12; min-height: 320px}
  .gItem{grid-column: span 6}
}
@media (max-width: 560px){
  .heroContent{bottom:42px;}
  .slider, .slide{min-height: 360px}
  .service{grid-column: span 12}
  .price{grid-column: span 12}
  .gItem{grid-column: span 12}
  .fRow{grid-template-columns: 1fr}
  .fab{left:18px; right:18px; justify-content:center}
}
