:root{
  --bg:#080808;
  --panel:#111111;
  --panel2:#0d0d0d;
  --text:#f5f5f5;
  --muted:#bdbdbd;
  --gold:#d4af37;
  --gold2:#b58a1f;
  --green:#25d366;
  --ring: rgba(212,175,55,.35);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 20% 0%, rgba(212,175,55,.10), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(37,211,102,.08), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand img{height:44px; width:auto; border-radius:12px; box-shadow: 0 10px 30px rgba(0,0,0,.4)}
.brand .title{display:flex; flex-direction:column; line-height:1.1}
.brand .title strong{color:var(--gold); font-size:14px; letter-spacing:.08em; text-transform:uppercase}
.brand .title span{font-size:13px; color:var(--muted)}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  color: rgba(245,245,245,.88);
  padding:10px 12px;
  border-radius: 12px;
}
.nav a:hover{background: rgba(255,255,255,.06)}
.nav .cta{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#050505;
  box-shadow: 0 14px 35px rgba(212,175,55,.25);
}
.nav .cta:hover{filter: brightness(1.05)}

.phone{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  white-space:nowrap;
  font-weight:700;
  font-size:13px;
}
.dot{width:10px;height:10px;border-radius:99px;background:var(--green); box-shadow:0 0 0 6px rgba(37,211,102,.15)}

.hero{
  position:relative;
  min-height: 86vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.60) 40%, rgba(0,0,0,.20) 70%, rgba(0,0,0,.05) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}
.hero::after{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(37,211,102,.12), transparent 60%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  padding: 56px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items: stretch;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.22);
  color: rgba(245,245,245,.92);
  font-weight:700;
  font-size:12px;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.badge i{
  width:10px;height:10px;border-radius:999px;background:var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,.18);
}

.h1{
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h1 span{color:var(--gold)}
.lead{
  margin: 0 0 22px;
  color: rgba(245,245,245,.86);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
}
.btn{
  border:none;
  text-decoration:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing:.02em;
  transition: transform .08s ease, filter .12s ease, background .12s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#050505;
  box-shadow: 0 18px 40px rgba(212,175,55,.22);
}
.btn-primary:hover{filter: brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(245,245,245,.92);
}
.btn-ghost:hover{background: rgba(255,255,255,.09)}
.btn-whats{
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.24);
  color:#eafff3;
}
.btn-whats:hover{background: rgba(37,211,102,.20)}

.panel{
  background: rgba(10,10,10,.70);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-header{
  padding: 18px 18px 0;
}
.panel-title{
  margin:0;
  font-size: 18px;
  letter-spacing:-0.01em;
}
.panel-sub{
  margin:8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.45;
}
.form{
  padding: 14px 18px 18px;
  display:grid;
  gap: 10px;
}
.field{
  display:grid; gap:6px;
}
label{
  font-size: 12px;
  color: rgba(245,245,245,.78);
  font-weight:700;
}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(212,175,55,.38);
  box-shadow: 0 0 0 6px var(--ring);
}
textarea{min-height: 92px; resize: vertical}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.help{
  font-size: 12px;
  color: rgba(245,245,245,.70);
}
.small{
  font-size: 12px;
  color: rgba(245,245,245,.70);
  margin-top: 6px;
}

.section{
  padding: 72px 0;
}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 22px;
}
.section-title h2{
  margin:0;
  font-size: 28px;
  letter-spacing:-0.02em;
}
.section-title p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  max-width: 60ch;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.kpi{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px 14px;
}
.kpi strong{
  display:block;
  color: var(--gold);
  font-size: 18px;
}
.kpi span{color: rgba(245,245,245,.80); font-size: 12px}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.card img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
  filter: contrast(1.03) saturate(1.05);
}
.card .body{padding: 16px 16px 18px}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(245,245,245,.96);
}
.card p{
  margin:0;
  color: rgba(245,245,245,.74);
  font-size: 13px;
  line-height: 1.55;
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.list{
  display:grid;
  gap: 10px;
}
.item{
  display:flex;
  gap:12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.icon{
  width:42px;height:42px;border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.22);
  color: var(--gold);
  font-weight: 900;
}
.item strong{display:block; margin:0 0 2px}
.item span{color: rgba(245,245,245,.74); font-size: 13px; line-height:1.45}

.footer{
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(245,245,245,.70);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:center;
}
.footer small{display:block; margin-top:8px}
.footer a{text-decoration:none; color: rgba(245,245,245,.85)}
.footer a:hover{color:#fff}

.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(37,211,102,.16);
  border: 1px solid rgba(37,211,102,.26);
  text-decoration:none;
  font-weight: 900;
  color:#eafff3;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.fab:hover{background: rgba(37,211,102,.22)}
.fab b{
  background: rgba(37,211,102,.22);
  border: 1px solid rgba(37,211,102,.28);
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .form-row{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .kpis{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  header .nav{display:none}
}
@media (max-width: 520px){
  .brand{min-width:auto}
  .phone{display:none}
  .cards{grid-template-columns: 1fr}
  .hero{min-height: 86vh}
}