:root{
  --bg:#071824;
  --card:rgba(255,255,255,.06);
  --text:#e9f1f7;
  --muted:rgba(233,241,247,.75);
  --brand:#1aa7ff;
  --brand2:#2fe2d0;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 10%, rgba(26,167,255,.25), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(47,226,208,.18), transparent 55%),
              linear-gradient(180deg, #04111a, #071824 35%, #071824);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{width:min(1120px, 92vw); margin-inline:auto}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(4, 17, 26, .55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  width:44px; height:44px; border-radius:12px;
  box-shadow: var(--shadow);
}
.brand .title{line-height:1.1}
.brand .title strong{display:block; font-size:15px; letter-spacing:.2px}
.brand .title span{display:block; font-size:12px; color:var(--muted)}
.menu{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.menu a{
  font-size:13px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
}
.menu a:hover{background: rgba(255,255,255,.06); color:var(--text)}
.cta-row{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  font-weight:600;
}
.btn:hover{border-color: rgba(255,255,255,.24); transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(26,167,255,.95), rgba(47,226,208,.9));
  border-color: transparent;
  color:#021018;
}
.btn.primary:hover{filter: brightness(1.02)}
.btn.small{padding:8px 12px; font-size:13px}

.hero{
  position:relative;
  min-height: 78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(4,17,26,.92) 0%, rgba(4,17,26,.60) 50%, rgba(4,17,26,.25) 100%),
    url("assets/img/gallery/g01.jpg") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero-content{
  position:relative;
  padding: 64px 0 52px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-size:13px;
}
.h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height:1.05;
}
.lead{
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 60ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:22px;
}
.badge{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.badge b{font-size:13px}
.badge span{font-size:12px; color:var(--muted)}

.section{padding: 56px 0}
.section h2{
  margin:0 0 10px;
  font-size: 28px;
}
.section p{margin:0; color:var(--muted); line-height:1.7}
.grid{
  margin-top:18px;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(12, 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;
}
.card.pad{padding:18px}
.card h3{margin:0 0 6px; font-size:16px}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}
.card li{margin:6px 0}
.span-6{grid-column: span 6}
.span-4{grid-column: span 4}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:13px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
  margin-top:18px;
}
.gitem{
  grid-column: span 4;
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.gitem img{width:100%; height:220px; object-fit:cover; transition: transform .35s ease}
.gitem:hover img{transform: scale(1.05)}
.gitem:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.35));
}

.lightbox{
  position:fixed; inset:0; z-index:999;
  display:none; align-items:center; justify-content:center;
  background: rgba(0,0,0,.85);
  padding:16px;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height: 82vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.lb-controls{
  position:fixed; inset:0;
  pointer-events:none;
}
.lb-btn{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border:none;
  background: rgba(255,255,255,.10);
  color:white;
  width:44px; height:44px;
  border-radius:999px;
  cursor:pointer;
  display:grid; place-items:center;
  backdrop-filter: blur(8px);
}
.lb-btn:hover{background: rgba(255,255,255,.18)}
.lb-prev{left:18px}
.lb-next{right:18px}
.lb-close{
  top:18px; right:18px; transform:none;
}

.embed{
  position:relative; width:100%;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.embed iframe{width:100%; border:0}
.video iframe{aspect-ratio: 16/9; height:auto}
.map iframe{aspect-ratio: 16/9}

.form{
  display:grid; gap:12px; margin-top:12px;
}
.field{
  display:grid; gap:6px;
}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(2, 12, 18, .55);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(26,167,255,.55)}
.form small{color: var(--muted); line-height:1.5}

.footer{
  padding:24px 0 34px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:13px;
}
.footer .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer a{color: var(--text)}
.footer a:hover{text-decoration:underline}

.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:1000;
  width:56px; height:56px;
  border-radius:999px;
  background: #25D366;
  display:grid; place-items:center;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.whatsapp-float svg{width:28px; height:28px; fill:white}
.whatsapp-float:hover{filter: brightness(1.02); transform: translateY(-1px)}

@media (max-width: 900px){
  .span-6, .span-4, .span-8{grid-column: span 12}
  .gitem{grid-column: span 6}
  .hero{min-height: 74vh}
  .hero-bg{background-position: 70% center}
}
@media (max-width: 560px){
  .menu{display:none}
  .gitem{grid-column: span 12}
  .gitem img{height:210px}
}
