
:root{
  --bg:#0b0b0f;
  --card:#12121a;
  --text:#f2f2f5;
  --muted:#b9b9c6;
  --gold1:#d6b25e;
  --gold2:#f2d27e;
  --accent:#d6b25e;
  --ring: rgba(214,178,94,.35);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(214,178,94,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(242,210,126,.10), transparent 60%),
    radial-gradient(900px 500px at 55% 90%, rgba(214,178,94,.12), transparent 60%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit}
.container{width:min(1120px, 92%); margin:0 auto}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand img{width:36px; height:36px; border-radius:10px; box-shadow: 0 10px 25px rgba(0,0,0,.35)}
.brand b{letter-spacing:.4px}
.nav-links{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
  font-size:14px; color:var(--muted);
}
.nav-links a{ text-decoration:none; opacity:.9 }
.nav-links a:hover{ color:var(--text) }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  font-weight:600;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(214,178,94,.55); box-shadow: 0 18px 55px rgba(0,0,0,.35)}
.btn-primary{
  background: linear-gradient(135deg, rgba(214,178,94,.98), rgba(242,210,126,.92));
  color:#111;
  border-color: rgba(214,178,94,.55);
}
.btn-primary:hover{ border-color: rgba(255,255,255,.25)}
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}

.hero{
  padding:64px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--muted);
  font-size:14px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
.h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.12;
  letter-spacing:.2px;
}
.lead{ color: var(--muted); font-size: 16px; max-width: 58ch }
.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px }
.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; color: var(--muted); font-size:13px }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}

.hero-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  min-height: 360px;
}
.hero-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.hero-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,11,15,.20), rgba(11,11,15,.82));
}
.hero-card-content{
  position:absolute; inset:auto 0 0 0;
  padding:18px 18px 16px;
}
.hero-card-content .phone{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
}
.hero-card-content .phone b{
  font-size:18px;
  letter-spacing:.6px;
}
.hero-card-content small{ color: var(--muted) }

.section{
  padding:54px 0;
}
.section h2{
  font-size: clamp(22px, 2.6vw, 30px);
  margin:0 0 10px;
}
.section p.sub{ margin:0 0 22px; color: var(--muted) }

.grid-3{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.card h3{ margin:8px 0 6px; font-size:16px }
.card p{ margin:0; color: var(--muted); font-size: 14px }

.icon{
  width:40px; height:40px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(214,178,94,.16);
  border:1px solid rgba(214,178,94,.28);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.gallery button{
  position:relative;
  padding:0;
  border:0;
  cursor:pointer;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  min-height: 150px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.gallery img{ width:100%; height:100%; object-fit: cover; display:block; transition: transform .25s ease; }
.gallery button:hover img{ transform: scale(1.04) }
.span-4{ grid-column: span 4; }
.span-6{ grid-column: span 6; }
.span-3{ grid-column: span 3; }

.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:100;
}
.modal.open{ display:flex }
.modal-inner{
  width:min(1020px, 96vw);
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
  background: rgba(18,18,26,.92);
}
.modal-top{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modal-top b{ font-size:14px; color: var(--muted); letter-spacing:.4px }
.modal-top 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;
}
.modal-img{ width:100%; height:auto; display:block; max-height: 78vh; object-fit: contain; background:#0b0b0f }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.embed{
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.embed iframe{ width:100%; height:100%; border:0; min-height: 320px }
.embed .pad{ padding:16px }
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
textarea.input{ min-height: 120px; resize: vertical }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px }
.form-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px }

.footer{
  padding:26px 0 42px;
  border-top:1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size:14px;
}
.footer a{ color: var(--muted) }
.footer a:hover{ color: var(--text) }

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px; height:56px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #25D366, #1fb954);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
  z-index:120;
  text-decoration:none;
}
.whatsapp-float svg{ filter: drop-shadow(0 8px 16px rgba(0,0,0,.22)); }
.call-pill{
  position:fixed;
  left:18px;
  bottom:18px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius: 18px;
  background: rgba(18,18,26,.86);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  z-index:120;
  text-decoration:none;
}
.call-pill small{ color: var(--muted); display:block; font-size:12px }
.call-pill b{ font-size:14px }
.call-pill .dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--ring);
}

.fade{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade.in{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ min-height: 320px; }
  .grid-3{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  .span-6,.span-4,.span-3{ grid-column: span 12; }
}
