:root{
  --sun:#ffb000;
  --sun2:#ffcf63;
  --sky:#2f8fb7;
  --leaf:#69b34c;
  --dark:#0b1b2b;
  --text:#1a2433;
  --muted:#5b677a;
  --card:#ffffff;
  --bg:#f6f8fb;
  --line:rgba(11,27,43,.12);
  --shadow: 0 16px 40px rgba(11,27,43,.10);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 15% -10%, rgba(255,176,0,.25), transparent 55%),
              radial-gradient(1100px 700px at 95% 0%, rgba(47,143,183,.22), transparent 55%),
              var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(246,248,251,.75);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 0; gap:12px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:40px;height:40px;border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,.12)}
.brand .t1{font-weight:900;letter-spacing:.2px}
.brand .t2{font-size:12px;color:var(--muted);margin-top:-2px}
.menu{display:flex;gap:14px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.menu a{font-weight:700;font-size:14px;color:var(--muted);padding:8px 10px;border-radius:12px}
.menu a:hover{background:rgba(11,27,43,.06);color:var(--text)}
.cta-row{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;border:1px solid var(--line);
  background:var(--card);
  box-shadow: 0 10px 26px rgba(11,27,43,.08);
  font-weight:900;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  border-color: rgba(255,176,0,.35);
  background: linear-gradient(135deg, var(--sun), var(--sun2));
  color:#1d1400;
}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}
.btn.small{padding:10px 12px;font-weight:800}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 12px;border-radius:999px;
  background: rgba(47,143,183,.10);
  border: 1px solid rgba(47,143,183,.18);
  color: var(--dark);
  font-weight:800;
  width:fit-content;
}
.hero{
  padding:26px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .menu{display:none}
}
.card{
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.hero-copy{padding:22px}
.h1{font-size:44px;line-height:1.06;margin:10px 0 12px;font-weight:1000;letter-spacing:-.6px}
@media (max-width: 520px){.h1{font-size:36px}}
.lead{font-size:16px;color:var(--muted);margin:0 0 18px}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.kpis{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.kpi{
  flex:1;min-width:160px;
  background: rgba(11,27,43,.04);
  border:1px dashed rgba(11,27,43,.14);
  padding:12px 12px;border-radius:16px;
}
.kpi .n{font-size:18px;font-weight:1000}
.kpi .d{font-size:12px;color:var(--muted);margin-top:2px}

.hero-media{
  position:relative; overflow:hidden;
  border-radius: var(--radius2);
}
.hero-media img{width:100%;height:100%;object-fit:cover;min-height:360px}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(11,27,43,.35), rgba(11,27,43,.00) 55%);
}

.section{padding:26px 0}
.section h2{font-size:30px;margin:0 0 10px;font-weight:1000;letter-spacing:-.3px}
.section p.sub{color:var(--muted);margin:0 0 16px;max-width:70ch}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}.grid2{grid-template-columns:1fr}}
.feature{
  padding:16px;border-radius:var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(11,27,43,.06);
  display:flex;gap:12px;align-items:flex-start;
}
.icon{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(47,143,183,.18), rgba(105,179,76,.18));
  border:1px solid rgba(11,27,43,.10);
}
.feature h3{margin:0;font-size:16px;font-weight:1000}
.feature p{margin:6px 0 0;color:var(--muted);font-size:13px}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:stretch;
}
@media (max-width: 920px){.split{grid-template-columns:1fr}}
.panel{
  padding:18px;border-radius:var(--radius2);
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.list{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.list li{display:flex;gap:10px;align-items:flex-start;color:var(--muted)}
.check{
  width:22px;height:22px;border-radius:8px;
  background: linear-gradient(135deg, var(--leaf), rgba(47,143,183,.35));
  display:grid;place-items:center;color:#06210b;font-weight:1000;
  flex:0 0 22px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 980px){.gallery{grid-template-columns: repeat(3,1fr)}}
@media (max-width: 640px){.gallery{grid-template-columns: repeat(2,1fr)}}
.gitem{
  border-radius:18px; overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  position:relative;
}
.gitem img{width:100%;height:180px;object-fit:cover;transition:transform .25s ease}
.gitem:hover img{transform:scale(1.04)}
.gitem::after{
  content:"Ver";
  position:absolute; right:10px; bottom:10px;
  font-weight:1000;font-size:12px;
  padding:7px 10px;border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(11,27,43,.12);
}

.lightbox{
  position:fixed; inset:0; z-index:9999;
  background: rgba(6,10,16,.82);
  display:none; align-items:center; justify-content:center;
  padding: 18px;
}
.lightbox.open{display:flex}
.lb-card{
  width:min(980px, 100%);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  overflow:hidden;
  backdrop-filter: blur(10px);
}
.lb-top{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px;
  color:#fff;
}
.lb-top .title{font-weight:1000}
.lb-btn{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color:#fff;
  display:grid;place-items:center;
  cursor:pointer;
}
.lb-img{background:#000}
.lb-img img{width:100%;height:auto;max-height:74vh;object-fit:contain}

.form{
  display:grid; gap:10px;
}
.input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
}
textarea.input{min-height:120px;resize:vertical}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width: 620px){.form .row{grid-template-columns:1fr}}
.note{font-size:12px;color:var(--muted);margin:8px 0 0}

.map{
  border-radius: 22px; overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  height: 360px;
}
.map iframe{width:100%;height:100%;border:0}

.footer{
  margin-top:20px;
  padding:18px 0 26px;
  color: var(--muted);
}
.footer .foot{
  border-top:1px solid var(--line);
  padding-top:16px;
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.footer a{color:var(--text);font-weight:900}

.floating-wa{
  position:fixed; right:16px; bottom:16px; z-index:90;
  width:56px; height:56px; border-radius:18px;
  background: #25D366;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  display:grid; place-items:center;
  border: none;
}
.floating-wa:hover{transform:translateY(-1px)}
.floating-wa svg{width:30px;height:30px;fill:#fff}