
:root{
  --bg:#f7f4ee;
  --surface:#ffffff;
  --ink:#1c1f1d;
  --muted:#5b625d;
  --brand:#4f6f5a; /* green */
  --brand-2:#a6b9ad; /* soft mint */
  --sand:#cbb79f;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(79,111,90,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(203,183,159,.16), transparent 60%),
    var(--bg);
}

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

.container{width:min(1120px, 92vw); margin:0 auto}
.pill{display:inline-flex; align-items:center; gap:.5rem; padding:.45rem .8rem; border-radius:999px; background:rgba(79,111,90,.10); color:var(--brand); font-weight:650; letter-spacing:.2px}
.badge{display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .65rem; border-radius:999px; border:1px solid rgba(79,111,90,.18); background:rgba(255,255,255,.65); backdrop-filter: blur(10px)}
.kicker{color:var(--brand); font-weight:750; letter-spacing:.12em; text-transform:uppercase; font-size:.78rem}
.h1{font-size:clamp(2rem, 3.6vw, 3.1rem); line-height:1.05; margin:.6rem 0 1rem}
.h2{font-size:clamp(1.4rem, 2.4vw, 2.1rem); margin:0 0 1rem}
.lead{font-size:1.05rem; line-height:1.65; color:var(--muted); margin:0 0 1.2rem}
.small{font-size:.92rem; color:var(--muted)}
.hr{height:1px; background:rgba(0,0,0,.08); margin:1.4rem 0}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(247,244,238,.92), rgba(247,244,238,.62));
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 0;
}
.brand{
  display:flex; align-items:center; gap:.75rem;
}
.brand img{width:46px; height:46px; border-radius:14px; box-shadow:0 10px 25px rgba(0,0,0,.10)}
.brand strong{font-size:1.05rem; letter-spacing:.2px}
.brand span{display:block; font-size:.82rem; color:var(--muted); margin-top:.12rem}

.navlinks{display:flex; align-items:center; gap:1rem}
.navlinks a{
  padding:.55rem .7rem; border-radius:12px;
  color:rgba(28,31,29,.86);
}
.navlinks a:hover{background:rgba(79,111,90,.10); color:var(--brand)}
.navbtns{display:flex; align-items:center; gap:.6rem}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:.7rem 1rem; border-radius:14px;
  border:1px solid rgba(79,111,90,.22);
  background:rgba(255,255,255,.70);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  font-weight:650;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 18px 35px rgba(0,0,0,.09)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), #2f4b3a);
  color:#fff;
}
.btn.primary:hover{filter:brightness(1.02)}
.icon{
  width:18px; height:18px; display:inline-block;
}

.menu{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.75);
}
.menu span{display:block; width:18px; height:2px; background:rgba(28,31,29,.75); margin:4px auto; border-radius:2px}

.hero{
  padding: 2.3rem 0 1.2rem;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:1.2rem;
  align-items:stretch;
}
.heroCard{
  position:relative;
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  box-shadow: var(--shadow);
  min-height: 440px;
  background:#000;
}
.heroCard .bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
  transform: scale(1.02);
}
.heroCard .overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.30) 48%, rgba(0,0,0,.10) 100%);
}
.heroCard .content{
  position:relative; z-index:2;
  padding: 2.1rem 2rem;
  color:#fff;
  max-width: 680px;
}
.heroCard .content .lead{color: rgba(255,255,255,.82)}
.heroActions{display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.2rem}
.heroActions .btn{box-shadow:none}
.heroActions .btn:not(.primary){background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.22)}
.heroActions .btn:not(.primary):hover{background:rgba(255,255,255,.20)}

.heroSide{
  display:flex; flex-direction:column; gap:1rem;
}
.card{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
  padding: 1.05rem;
  overflow:hidden;
}
.card h3{margin:.15rem 0 .5rem; font-size:1.05rem}
.list{
  display:grid; gap:.55rem; margin-top:.4rem
}
.li{display:flex; gap:.65rem; align-items:flex-start; color:rgba(28,31,29,.88)}
.dot{
  width:10px; height:10px; margin-top:.35rem;
  border-radius:999px; background:linear-gradient(135deg,var(--brand), var(--brand-2));
  flex:0 0 auto;
}
.statRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:.7rem}
.stat{
  padding:.85rem .9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79,111,90,.10), rgba(203,183,159,.14));
  border:1px solid rgba(79,111,90,.12);
}
.stat strong{display:block; font-size:1.1rem}
.stat span{color:var(--muted); font-size:.82rem}

section{padding: 3.2rem 0}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:1.2rem; align-items:start}
.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
}
.service{
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
}
.service h4{margin:.35rem 0 .35rem; font-size:1.02rem}
.service p{margin:0; color:var(--muted); line-height:1.6}
.service .tag{
  display:inline-flex; padding:.25rem .55rem; border-radius:999px;
  font-size:.76rem; font-weight:700; color:var(--brand);
  background: rgba(79,111,90,.10);
}

.promoStrip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
}
.promo{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.78);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
}
.promo img{width:100%; height:320px; object-fit:cover}
.promo .p{padding: .9rem 1rem}
.promo .p strong{display:block; margin-bottom:.25rem}
.promo .p span{color:var(--muted); font-size:.92rem}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:.85rem;
}
.gi{
  grid-column: span 4;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
}
.gi img{width:100%; height:210px; object-fit:cover; transition: transform .35s ease}
.gi:hover img{transform: scale(1.04)}
.gi button{
  all:unset;
  cursor:pointer;
  display:block;
}
.gi::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
  opacity:0; transition: opacity .25s ease;
  pointer-events:none;
}
.gi:hover::after{opacity:1}
.gi .cap{
  position:absolute; left:12px; bottom:10px;
  color:#fff; font-weight:700; font-size:.9rem;
  opacity:0; transform: translateY(6px);
  transition: all .25s ease;
}
.gi:hover .cap{opacity:1; transform: translateY(0)}

.videoFrame{
  aspect-ratio: 16/9;
  width:100%;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.08);
}

.contactCard{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1.1rem;
  align-items:stretch;
}
form{
  display:grid; gap:.75rem;
}
input, textarea{
  width:100%;
  padding:.85rem .9rem;
  border-radius: 16px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.78);
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
label{font-weight:700; font-size:.86rem; color:rgba(28,31,29,.86)}
.field{display:grid; gap:.35rem}

.socials{
  display:flex; gap:.6rem; flex-wrap:wrap;
}
.socials a{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.65rem .85rem; border-radius: 14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.78);
}
.socials a:hover{border-color: rgba(79,111,90,.30); background: rgba(79,111,90,.08); color:var(--brand)}
.mapFrame{
  width:100%;
  height:360px;
  border:0;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

footer{
  padding: 2.3rem 0;
  border-top:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.45);
}
.footerGrid{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  flex-wrap:wrap;
}
.footerGrid .small{max-width: 560px}

.whatsapp{
  position:fixed; right:18px; bottom:18px; z-index:99;
  width:56px; height:56px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #25D366, #11a84e);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  border:0;
}
.whatsapp:hover{transform: translateY(-2px); filter:brightness(1.02)}
.whatsapp svg{width:28px; height:28px; fill:white}

.lang{
  display:inline-flex; gap:.35rem; align-items:center;
  padding:.25rem;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.72);
}
.lang button{
  border:0; cursor:pointer;
  padding:.45rem .65rem;
  border-radius: 12px;
  background:transparent;
  font-weight:750;
  color: rgba(28,31,29,.70);
}
.lang button.active{background: rgba(79,111,90,.12); color: var(--brand)}

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

.lightbox{
  position:fixed; inset:0; z-index:120;
  display:none; place-items:center;
  background: rgba(10,12,11,.75);
  backdrop-filter: blur(8px);
  padding: 18px;
}
.lightbox.open{display:grid}
.lbCard{
  width:min(980px, 96vw);
  border-radius: 22px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.lbCard img{width:100%; height:auto}
.lbTop{
  display:flex; justify-content:space-between; align-items:center;
  padding:.6rem .75rem;
  background: rgba(0,0,0,.45);
  color:#fff;
}
.lbTop button{
  border:0; cursor:pointer;
  width:40px; height:40px; border-radius:14px;
  background: rgba(255,255,255,.14);
  color:#fff;
  font-size: 20px;
}
.lbTop button:hover{background: rgba(255,255,255,.22)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .heroCard{min-height: 420px}
  .services{grid-template-columns: repeat(2, 1fr)}
  .promoStrip{grid-template-columns: 1fr}
  .promo img{height:300px}
  .contactCard{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .navlinks{display:none}
  .menu{display:block}
  .services{grid-template-columns: 1fr}
  .gallery{gap:.7rem}
  .gi{grid-column: span 6}
  .gi img{height:190px}
}
@media (max-width: 430px){
  .gi{grid-column: span 12}
  .heroCard .content{padding: 1.6rem 1.3rem}
  .statRow{grid-template-columns: 1fr; }
}
