
:root{
  --primary:#1f3d2b; /* deep green from foliage */
  --accent:#d4af37;  /* gold accent */
  --dark:#0e0e0e;
  --light:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#222;
  background:#fafafa;
  line-height:1.6;
}
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto; padding:12px 20px;
}
.brand{display:flex; gap:12px; align-items:center}
.brand img{height:40px; width:40px; border-radius:8px}
.brand h1{font-size:1.1rem; margin:0; letter-spacing:.5px}
.actions a{
  margin-left:10px; text-decoration:none; padding:8px 12px; border-radius:999px;
  border:1px solid var(--primary); color:var(--primary); font-weight:600;
}
.actions a.cta{background:var(--primary); color:#fff; border-color:var(--primary)}
.hero{
  position:relative; min-height:65vh; display:grid; place-items:center; overflow:hidden;
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.35)),
             url('assets/img/1.jpg') center/cover no-repeat;
  color:#fff; text-align:center;
}
.hero-content{padding:80px 20px; animation:fadeInUp .9s ease both}
.hero h2{font-size:clamp(28px,4vw,48px); margin:.2em 0}
.hero p{max-width:800px; margin:10px auto 20px; font-size:clamp(16px,2.2vw,20px)}
.hero .chips{display:flex; gap:10px; flex-wrap:wrap; justify-content:center}
.chip{background:rgba(212,175,55,.95); color:#1a1a1a; padding:8px 12px; border-radius:999px; font-weight:700}
.section{max-width:1200px; margin:0 auto; padding:60px 20px}
.section h3{margin:0 0 16px; font-size:clamp(22px,3vw,32px); color:var(--primary)}
.grid{display:grid; gap:18px}
.grid.cols-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.card{
  background:#fff; border-radius:16px; padding:18px; border:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 24px rgba(0,0,0,.06); transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{transform:translateY(-2px); box-shadow:0 10px 30px rgba(0,0,0,.08)}
.gallery{display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:10px}
.gallery img{width:100%; height:160px; object-fit:cover; border-radius:12px; cursor:pointer; transition:transform .2s ease}
.gallery img:hover{transform:scale(1.02)}
.modal{position:fixed; inset:0; background:rgba(0,0,0,.85); display:none; align-items:center; justify-content:center; z-index:60}
.modal.open{display:flex}
.modal img{max-width:92vw; max-height:82vh; border-radius:12px}
.modal .close{position:absolute; top:14px; right:16px; font-size:28px; color:#fff; cursor:pointer}
.video-wrapper{position:relative; padding-top:56.25%}
.video-wrapper iframe{position:absolute; inset:0; width:100%; height:100%; border:0; border-radius:16px}
.fb-wrapper{position:relative; width:100%; min-height:420px; overflow:hidden}
.map iframe{width:100%; height:380px; border:0; border-radius:14px}
.contact form{display:grid; gap:12px}
input, textarea{padding:12px 14px; border-radius:12px; border:1px solid rgba(0,0,0,.15); font:inherit}
button{padding:12px 16px; border-radius:12px; border:none; background:var(--accent); font-weight:800; cursor:pointer}
.whatsapp{
  position:fixed; right:18px; bottom:18px; z-index:70; width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center; background:#25D366; color:#fff; text-decoration:none; font-size:26px;
  box-shadow:0 10px 20px rgba(0,0,0,.25); transition:transform .2s ease;
}
.whatsapp:hover{transform:translateY(-2px)}
footer{
  margin-top:40px; background:#0f172a; color:#cbd5e1; padding:28px 18px;
}
footer a{color:#e2e8f0; text-decoration:none; font-weight:600}
.badge{display:inline-block; padding:4px 10px; border-radius:10px; background:#ecfccb; color:#3f6212; font-weight:700}
@keyframes fadeInUp{from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:none}}
