:root{
  --turquesa:#00BFA6;
  --amarillo:#FFD166;
  --beige:#F5F1E3;
  --terracota:#D95D39;
  --verde:#6C9A8B;
  --gris:#2F2F2F;
  --azul:#0F2233;
  --blanco:#ffffff;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color:var(--gris);
  background:var(--beige);
  line-height:1.5;
}
img{display:block;max-width:100%;height:auto;border-radius:10px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--blanco);
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.nav{
  max-width:1200px;margin:0 auto;padding:0.75rem 1rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.logo{width:130px;max-height:60px;object-fit:contain;border-radius:0}
.nav-links{list-style:none;display:flex;gap:1rem;margin:0;padding:0}
.nav a{color:var(--azul);text-decoration:none;font-weight:600}
.nav a:hover{color:var(--turquesa)}
.nav-toggle{
  display:none;background:none;border:0;cursor:pointer;padding:0.25rem;
}
.nav-toggle .bar{display:block;width:24px;height:2px;background:var(--azul);margin:5px 0;border-radius:2px}

/* Hero carrusel */
.hero-carousel{
  position:relative;height:80vh;min-height:420px;overflow:hidden;background:#000;
}
.carousel-slide{
  position:absolute;inset:0;opacity:0;transition:opacity 1s ease;
}
.carousel-slide.active{opacity:1}
.hero-carousel img{
  width:100%;height:100%;object-fit:cover;object-position:center;
}
.carousel-text{
  position:absolute;left:6%;bottom:14%;
  color:#fff;background:rgba(0,0,0,.35);
  padding:1rem 1.25rem;border-radius:10px;backdrop-filter:blur(2px)
}
.carousel-text h1{margin:0 0 .25rem;font-size:2.2rem}
.carousel-text p{margin:0;font-size:1.05rem}

/* Social strip */
.social-strip{
  display:flex;gap:.75rem;justify-content:center;align-items:center;
  padding:.75rem 1rem;background:var(--blanco);border-top:1px solid rgba(0,0,0,.05)
}
.social{
  padding:.45rem .8rem;border-radius:999px;color:#fff;text-decoration:none;font-weight:700;font-size:.95rem
}
.tiktok{background:#000}
.instagram{background:linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5)}
.facebook{background:#1877F2}
.whatsapp{background:#25D366}

/* Intro */
.intro .container{max-width:1000px;margin:0 auto;padding:2.25rem 1rem;text-align:center}
.intro h2{margin:.25rem 0 1rem;font-size:1.8rem}
.intro p{margin:0 auto;max-width:760px}

/* Paquetes */
.paquetes{background:var(--beige)}
.paquetes .container{max-width:1200px;margin:0 auto;padding:2.5rem 1rem}
.paquetes h2{font-size:1.9rem;margin:0 0 1.25rem}
.cards{
  display:grid;gap:1.25rem;
  grid-template-columns:repeat(3, 1fr);
}
.card{
  background:#fff;border-radius:14px;overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:flex;flex-direction:column
}
.card-media{
  aspect-ratio:16/10;
  background:#eee;overflow:hidden
}
.card-media img{width:100%;height:100%;object-fit:cover;object-position:center}
.card-body{padding:1rem 1.1rem;display:flex;flex-direction:column;gap:.5rem}
.card h3{margin:.25rem 0 .25rem;font-size:1.25rem;color:var(--azul)}
.card p{margin:0}
.price{font-weight:800;color:var(--terracota);margin-top:.25rem}
.btn{
  align-self:flex-start;margin-top:.5rem;
  background:var(--turquesa);color:#fff;text-decoration:none;
  padding:.6rem 1rem;border-radius:10px;font-weight:800;
  box-shadow:0 6px 16px rgba(0,191,166,.25);
  transition:transform .15s ease, box-shadow .15s ease
}
.btn:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(0,191,166,.35)}
.btn-lite{
  background:transparent;border:2px solid var(--amarillo);color:var(--amarillo);
}

/* Galería */
.galeria .container{max-width:1200px;margin:0 auto;padding:2.25rem 1rem}
.galeria h2{margin:0 0 1rem}
.grid{
  display:grid;gap:.75rem;
  grid-template-columns:repeat(5, 1fr);
}
.gallery-item{
  aspect-ratio:1/1;overflow:hidden;border-radius:12px;background:#e9ecef
}
.gallery-item img{width:100%;height:100%;object-fit:cover}

/* Quiénes somos */
.quienes .container{max-width:1000px;margin:0 auto;padding:2.5rem 1rem}
.quienes h2{margin:0 0 1rem}
.bullets{list-style:none;padding:0;margin:1rem 0;display:grid;gap:.5rem}
.bullets li{background:#fff;border-left:4px solid var(--turquesa);padding:.6rem .75rem;border-radius:8px}

/* Footer */
.site-footer{background:var(--azul);color:#cfd7de;margin-top:1rem}
.footer-grid{
  display:grid;gap:1.5rem;grid-template-columns:repeat(5, 1fr);
  padding:2rem 1rem;max-width:1200px;margin:0 auto
}
.footer-col h4{color:#fff;margin:0 0 .6rem}
.footer-list{list-style:none;margin:0;padding:0;display:grid;gap:.4rem}
.footer a{color:var(--amarillo)}
.footer-col a{color:#ffd975;text-decoration:none}
.footer-col a:hover{text-decoration:underline}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:space-between;
  gap:.75rem;max-width:1200px;margin:0 auto;padding:1rem
}
.footer-legal{display:flex;gap:.75rem}
.footer-legal a{color:#9fb3c8;text-decoration:none}
.footer-legal a:hover{color:#fff}

/* WhatsApp flotante */
.whatsapp-float{
  position:fixed;right:18px;bottom:18px;z-index:60;width:62px;height:62px;
  display:grid;place-items:center;background:#25D366;border-radius:999px;
  box-shadow:0 8px 22px rgba(0,0,0,.25);transition:transform .15s ease
}
.whatsapp-float:hover{transform:translateY(-2px)}
.wa-svg{width:32px;height:32px}

/* Responsivo */
@media (max-width:1100px){
  .cards{grid-template-columns:repeat(2, 1fr)}
  .grid{grid-template-columns:repeat(4, 1fr)}
}
@media (max-width:920px){
  .hero-carousel{height:64vh}
}
@media (max-width:768px){
  .nav-toggle{display:block}
  .nav-links{
    position:absolute;top:100%;left:0;right:0;
    background:#fff;border-top:1px solid rgba(0,0,0,.06);
    flex-direction:column;gap:0;margin:0;padding:.5rem 1rem;display:none
  }
  .nav-links a{padding:.65rem 0;display:block}
  .nav-links.open{display:flex}
  .hero-carousel{height:56vh;min-height:360px}
  .carousel-text{left:5%;right:5%;bottom:10%;padding:.75rem .9rem}
  .carousel-text h1{font-size:1.6rem}
  .carousel-text p{font-size:.98rem}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(3, 1fr)}
  .footer-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:520px){
  .logo{width:100px;max-height:52px}
  .hero-carousel{height:50vh;min-height:300px}
  .carousel-text{bottom:8%}
  .carousel-text h1{font-size:1.35rem}
  .social-strip{gap:.5rem;flex-wrap:wrap}
  .grid{grid-template-columns:repeat(2, 1fr)}
  .footer-grid{grid-template-columns:1fr}
  .whatsapp-float{right:14px;bottom:14px;width:58px;height:58px}
  .wa-svg{width:28px;height:28px}
}