:root{
  --brand:#3AAE5B;
  --brand2:#68C4B8;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#f6f7fb;
  --card:#ffffff;

  --pastel-green:#EAF7EF;
  --pastel-peach:#FFF2E8;
  --pastel-blue:#EAF2FF;

  --radius:18px;
}
html{ scroll-behavior:smooth; }
body{ font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial; color:var(--text); background:#fff; }

.section-pad{ padding:78px 0; }
.section-title{ font-weight:900; text-align:center; margin:0 0 10px; letter-spacing:.2px; }
.section-subtitle{ text-align:center; color:var(--muted); max-width:760px; margin:0 auto 28px; }

.p-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:992px){ .p-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:576px){ .p-grid{ grid-template-columns:1fr;} }

.p-card{
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(15,23,42,.10);
  transition:.25s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}
.p-card:hover{ transform: translateY(-4px); box-shadow:0 18px 55px rgba(15,23,42,.14); }

.p-img{
  width:100%;
  aspect-ratio: 16/10;
  object-fit:cover;
  background:#e5e7eb;
}

.p-body{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:8px; }
.p-muted{ color:var(--muted); font-size:14px; }
.p-pill{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(58,174,91,.12);
  color:var(--brand);
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}

.btn-success{ background:var(--brand); border-color:var(--brand); border-radius:999px; font-weight:800; }
.btn-success:hover{ filter:brightness(.95); }
.btn-outline-success{ border-radius:999px; font-weight:800; }

.navbar-premium{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.86);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.navbar-premium .nav-link{ font-weight:700; color:rgba(15,23,42,.75); }
.navbar-premium .nav-link:hover{ color:rgba(15,23,42,1); }
.navbar-premium .navbar-brand{ font-weight:900; color:rgba(15,23,42,1); }
.navbar-premium .navbar-toggler{ border-color:rgba(15,23,42,.15); }

.hero-premium{
  min-height:78vh;
  background: url('../hero.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}
.hero-premium::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(15,23,42,.76), rgba(15,23,42,.18));
}
.hero-premium .content{ position:relative; z-index:2; color:#fff; }
.hero-premium h1{ font-weight:950; letter-spacing:.4px; }
.hero-premium p{ color:rgba(255,255,255,.86); max-width:760px; }

.kpi{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:14px 16px;
}
.kpi .num{ font-weight:950; font-size:26px; }
.kpi .lbl{ font-size:13px; color:rgba(255,255,255,.85); }

.map-box{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 14px 40px rgba(15,23,42,.10);
}
.map-box img{ width:100%; aspect-ratio:16/10; object-fit:cover; display:block; }

.lightbox{
  position:fixed; inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5000;
  padding:18px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:95vw; max-height:88vh; border-radius:16px; }
.lightbox .close{
  position:absolute; top:16px; right:18px;
  background:#fff; border:0; border-radius:999px;
  width:42px; height:42px; font-weight:900;
}

.whatsapp-float{
  position:fixed; right:18px; bottom:18px;
  background:#25D366; color:#fff;
  width:56px; height:56px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 35px rgba(0,0,0,.22);
  z-index:9999;
  text-decoration:none;
  font-size:26px;
}
