
:root{
  --brand:#6eb7bb; /* teal from provided logo */
  --dark:#0f1a1a;
  --light:#ffffff;
  --accent:#222;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;background:#f7faf9;color:#222;scroll-behavior:smooth}
img{max-width:100%;height:auto;display:block}

.header{
  position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);
  backdrop-filter: blur(6px);border-bottom:1px solid #e5eceb;
}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.nav{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:700}
.brand .logo{width:44px;height:44px;border-radius:10px;object-fit:cover;box-shadow:0 4px 20px rgba(0,0,0,.08)}
.brand span{font-size:1.15rem;letter-spacing:.5px}

.menu a{margin-left:16px;text-decoration:none;color:#333;font-weight:600}
.menu a:hover{color:var(--brand)}

.hero{position:relative;isolation:isolate}
.hero img{width:100%;height:58vh;object-fit:cover;filter:brightness(.82)}
.hero .overlay{
  position:absolute;inset:0;display:grid;place-items:center;
}
.hero .cta{
  background:rgba(255,255,255,.88);padding:20px;border-radius:18px;box-shadow:0 12px 30px rgba(0,0,0,.15);
  text-align:center;animation:fadeUp .9s ease both;
}
.hero h1{margin:0;font-size:clamp(24px,4vw,40px);line-height:1.1;color:#0e1a1a}
.hero p{margin:.35rem 0 1rem}
.btn{display:inline-block;padding:12px 18px;border-radius:999px;border:0;background:var(--brand);color:#fff;font-weight:700;text-decoration:none}
.btn.secondary{background:#111;color:#fff}
.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}

.section{padding:60px 0}
.card{
  background:#fff;border:1px solid #e8efee;border-radius:18px;overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.06);transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-3px);box-shadow:0 12px 24px rgba(0,0,0,.08)}
.card .p{padding:16px}

.badge{display:inline-block;padding:6px 10px;border-radius:999px;background:#e8f6f6;color:#0b4b4e;font-weight:700;font-size:.8rem}

.gallery{columns:1;column-gap:16px}
@media(min-width:640px){.gallery{columns:2}}
@media(min-width:900px){.gallery{columns:3}}
.gallery img{width:100%;margin:0 0 16px;border-radius:14px;cursor:pointer;transition:filter .2s ease;filter:contrast(1.03)}
.gallery img:hover{filter:brightness(.95)}

.modal{position:fixed;inset:0;background:rgba(0,0,0,.86);display:none;align-items:center;justify-content:center;z-index:60}
.modal img{max-width:92vw;max-height:86vh;border-radius:16px;box-shadow:0 20px 60px rgba(0,0,0,.45)}
.modal.show{display:flex}

.info{display:grid;gap:12px}
@media(min-width:800px){.info{grid-template-columns:1.2fr .8fr;align-items:start}}

.footer{background:#0e1212;color:#dfe; padding:26px 0;margin-top:50px}
.footer a{color:#dfe;text-decoration:underline}
.footer small{opacity:.85}

.whatsapp-float{
  position:fixed;right:16px;bottom:18px;background:#25D366;border-radius:999px;
  width:60px;height:60px;display:grid;place-items:center;box-shadow:0 8px 30px rgba(0,0,0,.25);z-index:70;
}
.whatsapp-float img{width:34px;height:34px}

audio{display:none}

.fade{animation:fadeIn 1s ease both}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}

.form{
  background:#fff;border:1px solid #e8efee;border-radius:18px;padding:18px;box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.form input,.form textarea{
  width:100%;padding:12px;border:1px solid #dbe7e6;border-radius:12px;margin-top:8px;font-size:1rem
}
.form button{margin-top:10px}
.map{width:100%;height:300px;border:0;border-radius:18px}
