:root{
  --bg:#0b0b0c;
  --surface:#111114;
  --surface2:#17171c;
  --text:#f3f3f4;
  --muted:#b9b9c0;
  --line:rgba(255,255,255,.12);
  --gold:#d2b26b;
  --gold2:#b8924b;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1100px;
  --focus: 0 0 0 3px rgba(210,178,107,.25);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 70% -20%, rgba(210,178,107,.18), transparent 55%),
              radial-gradient(900px 600px at 10% 10%, rgba(120,80,60,.20), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  text-decoration:none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(210,178,107,.45)}
.btn:focus{outline:none; box-shadow: var(--focus), 0 10px 24px rgba(0,0,0,.25)}
.btn.primary{
  border-color: rgba(210,178,107,.55);
  background: linear-gradient(180deg, rgba(210,178,107,.22), rgba(210,178,107,.10));
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size: 13px;
}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,12,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{
  width:42px; height:42px; border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.brand .t{
  display:flex; flex-direction:column; line-height:1.15;
}
.brand .t b{letter-spacing:.4px}
.brand .t small{color:var(--muted)}
.nav{
  display:flex; gap:14px; align-items:center;
}
.nav a{
  text-decoration:none; color:var(--muted);
  padding:10px 10px; border-radius:12px;
  border:1px solid transparent;
  transition: all .18s ease;
  font-size:14px;
}
.nav a:hover{color:var(--text); border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.03)}
.menuBtn{display:none}

.hero{
  position:relative;
  min-height: 74vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero .media{
  position:absolute; inset:0;
  background: #000;
}
.hero .media img{
  width:100%; height:100%; object-fit:cover;
  filter: contrast(1.05) saturate(1.08);
  transform: scale(1.02);
}
.hero .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,11,12,.35) 0%, rgba(11,11,12,.55) 40%, rgba(11,11,12,.88) 100%);
}
.hero .content{
  position:relative;
  padding: 46px 0 40px;
}
.hero h1{
  margin:10px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing:.6px;
}
.hero p{
  margin: 0 0 18px;
  color: rgba(243,243,244,.86);
  max-width: 56ch;
  font-size: clamp(16px, 1.7vw, 18px);
}
.hero .cta{
  display:flex; flex-wrap:wrap; gap:12px; align-items:center;
  margin-top: 18px;
}
.hero .meta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 18px;
}

.section{padding: 56px 0}
.section h2{
  font-size: clamp(22px, 3.2vw, 34px);
  margin:0 0 10px;
}
.section p.lead{
  margin:0 0 22px;
  color: var(--muted);
  max-width: 70ch;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card .pad{padding:18px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
}
.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top: 12px;
}
.kv .item{
  padding:14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.kv .item b{display:block; margin-bottom:6px}
.kv .item span{color: var(--muted); font-size:14px}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.thumb{
  grid-column: span 6;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  position:relative;
  transition: transform .18s ease, border-color .18s ease;
}
.thumb:hover{transform: translateY(-2px); border-color: rgba(210,178,107,.45)}
.thumb img{width:100%; height: 210px; object-fit:cover}
.thumb .cap{
  position:absolute; inset:auto 0 0 0;
  padding:10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.videoWrap{
  aspect-ratio: 16 / 9;
  width:100%;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.videoWrap iframe{width:100%; height:100%; border:0}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:8px;
}
label{font-size:14px; color: rgba(243,243,244,.92)}
input, 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;
  transition: box-shadow .18s ease, border-color .18s ease;
}
textarea{min-height: 120px; resize: vertical}
input:focus, textarea:focus{box-shadow: var(--focus); border-color: rgba(210,178,107,.55)}
.help{color: var(--muted); font-size:13px}

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

.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  width:56px; height:56px;
  border-radius: 18px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.16);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  transition: transform .18s ease;
}
.whatsapp-float:hover{transform: translateY(-2px)}
.whatsapp-float svg{width:26px; height:26px; fill: var(--text)}
/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.80);
  backdrop-filter: blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index:120;
}
.lightbox.open{display:flex}
.lightbox .box{
  max-width: min(1000px, 96vw);
  width:100%;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox header{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.lightbox header b{font-size:14px}
.lightbox button{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding:8px 10px;
  cursor:pointer;
}
.lightbox figure{margin:0}
.lightbox img{width:100%; height:auto; display:block}

/* animations */
[data-reveal]{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
[data-reveal].reveal{opacity:1; transform: translateY(0)}

@media (max-width: 860px){
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .split{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .thumb{grid-column: span 12}
  .thumb img{height: 220px}
  .brand .t small{display:none}
}