
:root{
  --bg:#ffffff;
  --text:#0b1b13;
  --muted:#5d6b64;
  --primary:#199a63;
  --primary-2:#127a4f;
  --card:#f6f7f7;
  --shadow:0 10px 24px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,'Segoe UI',Roboto,Inter,Arial,sans-serif;line-height:1.45}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1160px;margin:0 auto;padding:0 20px}
.topbar{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid #e9efec}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px}
.logo{height:42px;width:auto}
.brand-name{font-weight:700;font-size:18px}
.menu{display:flex;gap:22px;align-items:center}
.menu a{color:#1a1e1c;font-weight:600}
.menu .whats{display:flex;gap:8px;align-items:center;background:var(--primary);color:#fff!important;padding:10px 16px;border-radius:10px;box-shadow:var(--shadow)}
.menu .whats:hover{background:var(--primary-2);text-decoration:none}
/* Hero */
.hero{position:relative;min-height:72vh;display:flex;align-items:center;overflow:hidden;border-bottom:1px solid #e9efec}
.hero-bg{position:absolute;inset:0}
.hero-bg img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.2s ease}
.hero-bg img.active{opacity:1}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.75) 0%,rgba(255,255,255,.65) 25%,rgba(255,255,255,.52) 55%,rgba(255,255,255,.25) 100%)}
.hero-content{position:relative;z-index:1;padding:64px 0}
.hero h1{font-size:clamp(28px,4.8vw,52px);margin:0 0 12px}
.hero p{max-width:760px;font-size:18px;color:var(--muted)}
.highlight{color:var(--primary)}
.cta{display:flex;gap:14px;margin-top:22px}
.btn{display:inline-block;padding:14px 20px;border-radius:12px;font-weight:800;border:2px solid transparent;transition:.2s}
.btn.primary{background:var(--primary);color:#fff}
.btn.primary:hover{background:var(--primary-2)}
.btn.ghost{background:#fff;border-color:#dfe8e3;color:#112016}
.btn.ghost:hover{background:#f6fbf8}
.badges{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.badges span{background:#eaf6ef;color:#11442e;padding:8px 12px;border-radius:20px;font-weight:700}
/* How */
.how{padding:64px 0}
h2{font-size:28px;margin:12px 0 24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:var(--card);border:1px solid #e9efec;border-radius:16px;padding:18px;box-shadow:var(--shadow)}
.step h3{margin:.2rem 0 .3rem}
.step p{color:var(--muted)}
/* Stays */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card.stay{padding:0;overflow:hidden}
.card .thumb{height:180px;background:#dfe8e3}
.thumb-apt{background-image:linear-gradient(140deg,rgba(25,154,99,.25),transparent),url('../img/belen_1.webp');background-size:cover;background-position:center}
.thumb-chac{background-image:linear-gradient(140deg,rgba(25,154,99,.25),transparent),url('../img/belen_2.webp')}
.thumb-hotel{background-image:linear-gradient(140deg,rgba(25,154,99,.25),transparent),url('../img/belen_3.webp')}
.card .content{padding:16px}
.card h3{margin:.4rem 0 .2rem}
.card p{color:var(--muted);margin:0 0 .8rem}
.btn.link{padding:10px 14px;background:#fff;border:2px solid #dfe8e3;border-radius:12px;font-weight:800}
.btn.link:hover{background:#f6fbf8}
/* Footer */
.footer{margin-top:56px;background:#0e1a15;color:#e8f2ed;padding:28px 0 0}
.foot-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:14px}
.footer a{color:#a8f5cf}
.footer h4{margin:.2rem 0 .6rem}
.footer ul{list-style:none;padding:0;margin:.2rem 0}
.copy{text-align:center;color:#b9c9c1;padding:14px 0;margin-top:8px;border-top:1px solid #183127}
/* Responsive */
@media (max-width:960px){
  .grid-3,.cards,.foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .menu a:not(.whats){display:none}
  .grid-3,.cards,.foot-grid{grid-template-columns:1fr}
  .hero{min-height:68vh}
}
