/* ==========================================================================
   C'est La Vie · Zen Wellness & Sauna Spa · Casa Zen
   Design system: Soft UI Evolution · Guinda #8e2b4f + Dorado #d4af37
   Tipografía: Playfair Display (títulos) + Inter (texto)
   ========================================================================== */

/* ---------- Tokens ---------- */
/* ---------- Tokens ---------- */
:root {
  --primary: #F4EAE6; /* El tono nude como color principal */
  --primary-dark: #E6D5CD; /* Un nude ligeramente más oscuro para los botones al pasar el ratón */
  --primary-deep: #F4EAE6; /* Reemplazamos el fondo oscuro por nude */
  --primary-soft: #FFFFFF; /* Blanco puro para contrastar */
  
  --gold: #C69C6D;
  --gold-dark: #8A6A45;
  --gold-soft: #F6EFEA;
  --espresso: #2E2125; /* superficie oscura cálida para footer/infobar/hero */
  --on-gold: #3A2A1C;  /* texto sobre dorado */
  
  --cream: #FAF7F5; /* Fondo general de la página */
  --surface: #ffffff;
  --ink: #33202a; /* El color de texto oscuro */
  --muted: #756069;
  --line: #E8DCD8;
  --ok: #2e7d52;

  --font-display: "Raleway", sans-serif;
--font-body: "Raleway", sans-serif;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(74, 18, 39, 0.06);
  --shadow-md: 0 10px 30px rgba(74, 18, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(74, 18, 39, 0.16);

  --dur: 240ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --nav-h: 76px;
  --container: 1180px;

  /* z-index scale */
  --z-nav: 1000;
  --z-drawer: 1100;
  --z-float: 900;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--gold-dark); text-decoration: none; }
a, button { touch-action: manipulation; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--ink); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { padding-block: clamp(64px, 9vw, 110px); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); }
.section-head p { color: var(--muted); font-size: 17px; }

.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 26px;
  border: 1.5px solid var(--primary-dark);
  border-radius: 999px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .icon { width: 19px; height: 19px; }

.btn-outline {
  background: transparent;
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold-dark); color: var(--on-gold); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.3); border-color: #fff; }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--on-gold);
}
.btn-gold:hover { background: #B58A5C; border-color: #B58A5C; color: var(--on-gold); }

.btn-sm { min-height: 44px; padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ==========================================================================
   NAVEGACIÓN TIPO PÍLDORA (GLASSMORPHISM)
   ========================================================================== */
.glass-nav {
    position: fixed; 
    top: 24px; /* Separación del techo */
    left: 0; 
    width: 100vw; 
    z-index: var(--z-nav); 
    display: flex; 
    justify-content: center;
    pointer-events: none; /* Permite clics fuera de la barra */
    transition: transform var(--dur) var(--ease);
}

/* El contenedor principal de la cápsula */
.glass-pill {
    pointer-events: auto;
    display: inline-flex; 
    align-items: center;
    gap: 16px; 
    padding: 8px 24px; 
    border-radius: 50px;
    white-space: nowrap;
    
    /* Efecto cristal adaptado a tu paleta clara */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(35px) saturate(180%); 
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(51, 32, 42, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

/* IZQUIERDA: Logo */
.nav-logo { 
    display: flex; 
    align-items: center; 
    flex-shrink: 0; 
    padding-right: 16px;
    border-right: 1px solid rgba(51, 32, 42, 0.15); /* Línea separadora oscura */
}
.nav-logo img { 
    height: 32px; /* Ajusta según el tamaño de tu logo */
    width: auto; 
    object-fit: contain; 
    display: block; 
    transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.05); }

/* CENTRO: Enlaces */
.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-links a {
    position: relative;
    padding: 8px 16px; 
    color: var(--ink); /* Texto oscuro para contrastar */
    text-decoration: none; 
    font-family: var(--font-body); 
    font-size: 14.5px; 
    font-weight: 500; 
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), font-weight 0.1s;
    display: inline-flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}

/* Animación de negrita sin empujar elementos */
.nav-links a::after {
    content: attr(data-text); height: 0; visibility: hidden; overflow: hidden;
    user-select: none; pointer-events: none; font-weight: 700; white-space: nowrap; 
}
.nav-links a:hover, .nav-links a[aria-current="page"] { 
    transform: scale(1.08); 
    font-weight: 700; 
    color: var(--gold-dark); 
}

/* DERECHA: Botón Icono (Menú) */
.btn-menu-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    border-left: 1px solid rgba(51, 32, 42, 0.15);
    flex-shrink: 0;
    color: var(--ink);
}
.btn-menu-icon .icon {
    width: 24px; height: 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-menu-icon:hover .icon { transform: scale(1.15); color: var(--gold-dark); }
.btn-menu-icon .icon-close { display: none; }
.btn-menu-icon.is-open .icon-menu { display: none; }
.btn-menu-icon.is-open .icon-close { display: block; transform: rotate(90deg); }

/* Marca tipográfica (footer) */
.brand { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-script { font-style: italic; font-weight: 600; font-size: 24px; letter-spacing: 0.02em; }
.brand-sub { font-size: 9px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 4px; }

/* Ajustes para móviles */
@media (max-width: 1023px) {
    .glass-nav { justify-content: flex-end; padding-right: 5vw; }
    .glass-pill { padding: 8px 14px; }
    .nav-logo, .nav-links { display: none; }
    .btn-menu-icon { border-left: none; padding-left: 0; }
}

/* Drawer móvil */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(28px, 8vw, 64px) 48px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 0s linear 280ms;
}
.drawer.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }

.drawer-close {
  position: absolute;
  top: 18px;
  right: clamp(20px, 5vw, 48px);
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(51, 32, 42, 0.2);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.drawer nav { display: flex; flex-direction: column; gap: 8px; }
.drawer-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease), color var(--dur);
}
.drawer.is-open .drawer-link { opacity: 1; transform: none; }
.drawer.is-open .drawer-link:nth-child(1) { transition-delay: 60ms; }
.drawer.is-open .drawer-link:nth-child(2) { transition-delay: 130ms; }
.drawer.is-open .drawer-link:nth-child(3) { transition-delay: 200ms; }
.drawer-link:hover, .drawer-link[aria-current="page"] { color: var(--gold-dark); }
.drawer-link .num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
}
.drawer-foot { margin-top: 36px; color: var(--muted); font-size: 14px; }
.drawer-foot a { font-weight: 600; }

body.no-scroll { overflow: hidden; }

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease);
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 33, 37, 0.25) 0%, rgba(46, 33, 37, 0.05) 40%, rgba(30, 21, 24, 0.78) 100%);
}

.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding-bottom: 168px;
}
.hero-copy .kicker { color: var(--gold); }
.hero-copy .kicker::before { background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
  max-width: 13ch;
  text-shadow: 0 2px 24px rgba(42, 8, 20, 0.45);
  text-wrap: balance;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 46ch;
  margin: 0;
}

.hero-actions {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: 96px;
}
.hero-actions .container { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
}
.hero-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero-dot.is-active::before { width: 30px; background: var(--gold); }

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.28); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* ---------- Barra de info ---------- */
.infobar { background: var(--espresso); color: #fff; }
.infobar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  padding-block: 18px;
  font-size: 14px;
}
.infobar-item { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.92); }
.infobar-item .icon { width: 17px; height: 17px; color: var(--gold); }

/* ---------- Parallax ---------- */
.parallax {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 90px;
  isolation: isolate;
  overflow: clip;
  clip-path: inset(0);
}
.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(46, 33, 37, 0.55), rgba(46, 33, 37, 0.55)), var(--parallax-img);
  background-size: cover;
  background-position: center;
}
.parallax-card {
  max-width: 660px;
  margin-inline: 20px;
  text-align: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
}
.parallax-card h2 { font-size: clamp(26px, 3.6vw, 40px); color: var(--ink); }
.parallax-card p { color: var(--muted); margin: 0; font-size: 17px; }
.parallax-card .kicker { justify-content: center; }

/* ---------- Tarjetas apiladas de servicios ---------- */
.stack-hint { display: flex; align-items: center; gap: 8px; color: var(--gold-dark); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.stack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 340px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 22px;
  scrollbar-width: none;
}
.stack::-webkit-scrollbar { display: none; }

.stack-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--espresso);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.stack-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 700ms var(--ease);
}
.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(185deg, rgba(46, 33, 37, 0.14) 16%, rgba(30, 21, 24, 0.9) 66%);
}
.stack-card:hover > img { transform: scale(1.05); }

.stack-toggle {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border: 0;
  cursor: pointer;
}
.stack-toggle:focus-visible { outline-offset: -6px; }

.stack-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px;
  color: #fff;
  pointer-events: none;
}
.stack-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.stack-content h3 {
  color: #fff;
  font-size: clamp(21px, 1.8vw, 25px);
  margin: 8px 0 0;
  text-shadow: 0 2px 14px rgba(42, 8, 20, 0.6);
  overflow-wrap: break-word;
  hyphens: auto;
}
.stack-body { padding-top: 12px; }
.stack-body p { color: rgba(255, 255, 255, 0.85); font-size: 15px; margin-bottom: 14px; }
.stack-body .checks { margin-bottom: 18px; }
.stack-body .btn { pointer-events: auto; position: relative; z-index: 3; }

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.checks .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--gold);
}

/* Desktop: pila expandible */
@media (min-width: 1024px) {
  .stack-hint { display: none; }
  .stack {
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    height: 540px;
    padding: 0;
  }
  .stack-card {
    height: auto;
    transition: box-shadow var(--dur) var(--ease);
  }
  .stack-card.is-open { box-shadow: var(--shadow-lg); }
  .stack { display: flex; }
  .stack-card { flex: 1 1 0; transition: flex 620ms var(--ease), box-shadow var(--dur) var(--ease); }
  .stack-card.is-open { flex: 2.7 1 0; }
  .stack-card .stack-body {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    overflow: hidden;
    transition: max-height 620ms var(--ease), opacity 420ms var(--ease) 120ms, transform 420ms var(--ease) 120ms;
  }
  .stack-card.is-open .stack-body {
    max-height: 360px;
    opacity: 1;
    transform: none;
  }
  .stack-card:not(.is-open):hover { flex: 1.25 1 0; }
}

/* ---------- CTA dúo (corporativo / gift card) ---------- */
.cta-duo {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) { .cta-duo { grid-template-columns: 1fr 1fr; } }

.cta-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cta-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.cta-ico {
  flex: none;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.cta-ico .icon { width: 26px; height: 26px; }
.cta-box h3 { font-size: 20px; margin: 0 0 2px; }
.cta-box p { margin: 0; color: var(--muted); font-size: 14.5px; }
.cta-arrow { margin-left: auto; color: var(--gold-dark); flex: none; }

/* ---------- Sección visítanos ---------- */
.visit-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .visit-grid { grid-template-columns: 1fr 1.15fr; align-items: center; }
}
.visit-rows { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 16px; }
.visit-rows li { display: flex; gap: 14px; align-items: flex-start; }
.visit-rows .icon { color: var(--gold-dark); margin-top: 2px; }
.visit-rows strong { display: block; font-size: 15.5px; }
.visit-rows span { color: var(--muted); font-size: 14.5px; }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--primary-soft);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(56px, 7vw, 80px);
}
.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer .brand-script { color: #fff; font-size: 26px; }
.footer .brand-sub { color: var(--gold); }
.footer p { font-size: 14.5px; max-width: 34ch; }
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: rgba(255, 255, 255, 0.8); font-size: 14.5px; transition: color var(--dur); }
.footer ul a:hover { color: var(--gold); }
.footer .visit-rows .icon { color: var(--gold); }
.footer .visit-rows span, .footer .visit-rows strong { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: var(--gold); }

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-float);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55); }
.wa-float .icon { width: 28px; height: 28px; }

/* ==========================================================================
   ZEN WELLNESS & SAUNA SPA
   ========================================================================== */
.zen-hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(56px, 7vw, 96px);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
    radial-gradient(50% 70% at 8% 90%, rgba(142, 43, 79, 0.08) 0%, transparent 70%),
    var(--cream);
}
.zen-hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 1024px) { .zen-hero-grid { grid-template-columns: 1.05fr 1fr; } }

.zen-mark {
  width: 110px;
  height: 55px;
  border: 2.5px solid var(--gold-dark);
  border-bottom: 0;
  border-radius: 110px 110px 0 0;
  margin-bottom: 18px;
}
.zen-hero h1 {
  font-size: clamp(56px, 9vw, 96px);
  letter-spacing: 0.16em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.zen-hero .zen-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 10px 0 22px;
}
.zen-hero .lead { color: var(--muted); font-size: 17.5px; max-width: 50ch; margin-bottom: 30px; }
.zen-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.zen-hero-media { position: relative; }
.zen-hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.zen-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.55;
}

/* Paquetes */
.pack-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pack-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(212, 175, 55, 0.6); }
.pack-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--primary-soft); }
.pack-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.pack-card:hover .pack-media img { transform: scale(1.06); }
.pack-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--espresso);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.pack-badge.gold { background: var(--gold); color: var(--on-gold); }

.pack-body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.pack-body h3 { font-size: 23px; margin-bottom: 8px; }
.pack-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 6px; }
.pack-price .cur { font-size: 17px; font-weight: 600; color: var(--gold-dark); }
.pack-price .amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pack-price .unit { font-size: 13.5px; color: var(--muted); }
.pack-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 13px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.pack-time .icon { width: 15px; height: 15px; }
.pack-body .checks { margin-bottom: 22px; }
.pack-body .checks li { color: var(--ink); }
.pack-body .checks .icon { color: var(--ok); }
.pack-body .btn { margin-top: auto; }

.pack-note {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  border: 1px dashed rgba(159, 122, 82, 0.45);
}
.pack-note .cta-ico { background: #fff; }
.pack-note p { margin: 0; flex: 1 1 320px; font-size: 15px; color: var(--ink); }
.pack-note strong { display: block; font-family: var(--font-display); font-size: 18px; }

/* Instalaciones */
.facil-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.facil-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.facil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.facil-card .cta-ico { margin-bottom: 16px; }
.facil-card h3 { font-size: 19px; margin-bottom: 6px; }
.facil-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ==========================================================================
   CASA ZEN (estilo Airbnb)
   ========================================================================== */
.casa-main { padding-top: calc(var(--nav-h) + 36px); }

.casa-head h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.casa-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.casa-meta .item { display: inline-flex; align-items: center; gap: 7px; }
.casa-meta .icon { width: 16px; height: 16px; color: var(--gold-dark); }
.casa-meta .star { color: var(--gold-dark); }
.casa-meta .dotsep { color: var(--line); }
.casa-meta a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Galería */
.gallery {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--primary-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery .g-main { grid-column: span 2; grid-row: span 2; }
.gallery-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(51, 32, 42, 0.18);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur), transform var(--dur);
}
.gallery-btn:hover { background: #fff; transform: translateY(-2px); }
.gallery-btn .icon { width: 17px; height: 17px; }

@media (max-width: 767px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 130px; }
  .gallery .g-main { grid-column: span 2; grid-row: span 1; }
  .gallery figure:nth-child(n+4) { display: none; }
}

/* Columnas */
.casa-cols { display: grid; gap: 44px; padding-block: 40px; }
@media (min-width: 1024px) { .casa-cols { grid-template-columns: 1.55fr 1fr; align-items: start; } }

.casa-block { padding-block: 28px; border-bottom: 1px solid var(--line); }
.casa-block:first-child { padding-top: 0; }
.casa-block h2 { font-size: 24px; margin-bottom: 6px; }
.casa-caps { color: var(--muted); font-size: 15px; }

.host-row { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.host-avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}
.host-row strong { display: block; font-size: 15.5px; }
.host-row span { color: var(--muted); font-size: 13.5px; }
.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 600;
}
.host-badge .icon { width: 14px; height: 14px; }

.hl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.hl-list li { display: flex; gap: 17px; }
.hl-list .icon { width: 26px; height: 26px; color: var(--gold-dark); margin-top: 2px; flex: none; }
.hl-list strong { display: block; font-size: 15.5px; }
.hl-list span { color: var(--muted); font-size: 14.5px; }

.casa-desc p { color: #4d3a44; font-size: 15.5px; }

.sleep-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 18px;
}
.sleep-card {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.sleep-card .icon { color: var(--gold-dark); margin-bottom: 12px; }
.sleep-card strong { display: block; font-size: 15px; margin-bottom: 3px; }
.sleep-card span { color: var(--muted); font-size: 13.5px; }

.amen-grid {
  display: grid;
  gap: 14px 22px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}
@media (min-width: 640px) { .amen-grid { grid-template-columns: 1fr 1fr; } }
.amen-item { display: flex; align-items: center; gap: 14px; font-size: 15px; padding: 6px 0; }
.amen-item .icon { color: var(--gold-dark); flex: none; }

.rev-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.rev-head .icon { width: 30px; height: 30px; color: var(--gold-dark); }
.rev-head h2 { margin: 0; }
.rev-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 20px;
}
.rev-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  border: 1px solid rgba(159, 122, 82, 0.2);
}
.rev-card .icon { color: var(--gold-dark); margin-bottom: 10px; }
.rev-card strong { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.rev-card p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* Tarjeta de reserva sticky */
.book-card {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.book-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.book-top strong { font-family: var(--font-display); font-size: 22px; }
.book-top .rating { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; }
.book-top .rating .icon { width: 15px; height: 15px; color: var(--gold-dark); }
.book-rows { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; }
.book-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  background: var(--cream);
}
.book-row + .book-row { border-top: 1px solid var(--line); }
.book-row .icon { width: 18px; height: 18px; color: var(--gold-dark); }
.book-card .btn + .btn { margin-top: 10px; }
.book-micro { text-align: center; color: var(--muted); font-size: 12.5px; margin: 14px 0 0; }

/* ---------- Presentación breve ---------- */
.intro { text-align: center; }
.intro .kicker { justify-content: center; }
.intro h2 { font-size: clamp(28px, 3.8vw, 42px); max-width: 20ch; margin-inline: auto; }

/* El texto principal de 15 años */
.intro-lead {
  display: block;
  max-width: 600px;
  margin: 0 auto 12px auto; /* Margen automático a los lados lo centra obligatoriamente */
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 22px); /* Un poco más grande para destacar */
  font-weight: 500;
  text-align: center;
  text-wrap: balance; /* Evita palabras viudas en la segunda línea */
}

/* El subtítulo */
.intro-sub {
  display: block;
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 16px);
  text-align: center;
  text-wrap: balance;
}

/* ---------- Paquetes especiales & experiencias ---------- */
.exp-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  align-items: stretch;
}
.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 156, 109, 0));
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.exp-num { font-size: 12px; font-weight: 700; letter-spacing: 0.3em; color: var(--gold-dark); }
.exp-card h3 { font-size: 21px; margin: 10px 0 2px; }
.exp-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.exp-card .checks { margin-bottom: 24px; }
.exp-card .checks .icon { color: var(--gold-dark); }
.exp-card .btn { margin-top: auto; }
.exp-note { text-align: center; color: var(--muted); font-size: 14.5px; margin: 26px 0 0; }

/* ---------- Banda Casa Zen ---------- */
.casazen-band {
  background: linear-gradient(135deg, #FDFBF8 0%, var(--gold-soft) 100%);
  border-block: 1px solid var(--line);
}
.casazen-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .casazen-grid { grid-template-columns: 1.05fr 1fr; } }
.casazen-grid .lead { color: var(--muted); font-size: 16.5px; max-width: 52ch; }
.casazen-stats { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 28px; padding: 0; list-style: none; }
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.stat-chip .icon { width: 16px; height: 16px; color: var(--gold-dark); }
.casazen-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.framed-media { position: relative; }
.framed-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.framed-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.55;
}

/* ---------- Testimonios ---------- */
.testi-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.testi-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testi-stars .icon { width: 15px; height: 15px; }
.testi-card blockquote { margin: 0 0 18px; font-size: 15.5px; line-height: 1.65; color: #4A3A40; }
.testi-card cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ---------- Animación de aparición ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Breakpoints navegación ---------- */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .hero-arrow { display: inline-flex; }
}
@media (max-width: 1023px) {
  :root { --nav-h: 66px; }
  .brand-script { font-size: 21px; }
}

/* ---------- Movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide img { transform: none; }
  .parallax-bg { position: absolute; }
  .reveal { opacity: 1; transform: none; }
}
