:root {
  --naranja: #E85D04;
  --naranja-claro: #F48C06;
  --naranja-oscuro: #C1121F;
  --amarillo: #FFB703;
  --amarillo-claro: #FFE066;
  --cafe-madera: #8B4513;
  --cafe-claro: #A0522D;
  --cafe-oscuro: #2C1810;
  --crema: #FFF8E7;
  --blanco: #FFFFFF;
  --sombra: 0 8px 32px rgba(44,24,16,0.15);
  --sombra-fuerte: 0 12px 48px rgba(44,24,16,0.25);
  --radio: 16px;
  --transicion: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--crema); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--naranja), var(--amarillo)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--naranja); }
::selection { background: var(--naranja); color: var(--blanco); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--crema);
  color: var(--cafe-oscuro);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.contenedor {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.seccion-titulo {
  text-align: center;
  margin-bottom: 32px;
}
.seccion-titulo h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  color: var(--cafe-oscuro);
  position: relative;
  display: inline-block;
}
.seccion-titulo h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--naranja), var(--amarillo));
  margin: 8px auto 0;
  border-radius: 2px;
  background-size: 200% auto;
  animation: shimmer 3s ease-in-out infinite;
}
.seccion-titulo p {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--cafe-madera);
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal.reveal-delay-1 { transition-delay: 0.1s; }
.reveal.reveal-delay-2 { transition-delay: 0.2s; }
.reveal.reveal-delay-3 { transition-delay: 0.3s; }

section { padding: 48px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transicion);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:focus-visible { outline: 3px solid var(--amarillo); outline-offset: 3px; }

.btn-primario { background: linear-gradient(135deg, var(--naranja), var(--naranja-claro)); color: var(--blanco); background-size: 200% auto; animation: gradienteMovil 4s ease-in-out infinite; }
.btn-secundario { background: var(--blanco); color: var(--naranja); border: 2px solid var(--naranja); }
.btn-hero { background: transparent; color: var(--blanco); border: 2px solid var(--blanco); }

.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transicion);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: latido 2s ease-in-out infinite;
}

header.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(44,24,16,0.85), rgba(232,93,4,0.55)), url('imagen10.jpg') center/cover no-repeat;
  color: var(--blanco);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
header.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,183,3,0.08), transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(232,93,4,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: luzFlotante 8s ease-in-out infinite alternate;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
nav.navbar.scrolled {
  background: rgba(44,24,16,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amarillo);
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.navbar .logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanco);
  white-space: nowrap;
}
.navbar .nav-links {
  display: none;
  gap: 20px;
  list-style: none;
}
.navbar .nav-links a {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  transition: var(--transicion);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
.navbar .nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amarillo);
  transition: width 0.3s ease;
}
.navbar .menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.navbar .menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blanco);
  border-radius: 2px;
  transition: var(--transicion);
}

.hero-contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px 60px;
  position: relative;
  z-index: 1;
}
.hero-contenido .logo-hero {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amarillo);
  box-shadow: 0 0 30px rgba(255,183,3,0.25);
  margin-bottom: 16px;
  animation: flotar 4s ease-in-out infinite;
}
.hero-contenido h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  animation: brilloTexto 4s ease-in-out infinite;
}
.hero-contenido h1 span {
  color: var(--amarillo);
  background: linear-gradient(135deg, var(--amarillo), #FFD60A, var(--amarillo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradienteMovil 3s ease-in-out infinite;
}
.hero-contenido .hero-tagline {
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  margin-top: 12px;
  max-width: 600px;
  opacity: 0.9;
  font-weight: 500;
  padding: 0 8px;
  min-height: 1.6em;
}
.hero-contenido .hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--blanco);
  margin-left: 2px;
  animation: parpadeo 0.8s step-end infinite;
  vertical-align: text-bottom;
}
.hero-contenido .hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
  max-width: 320px;
}
.hero-contenido .hero-btns .btn { width: 100%; }

.hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--blanco);
  opacity: 0.7;
  font-size: 20px;
  z-index: 1;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}
.menu-item {
  border-radius: calc(var(--radio) - 4px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  box-shadow: var(--sombra);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-item figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.95);
}
.menu-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.85), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.4s ease, padding 0.4s ease;
}
.menu-item .overlay span {
  color: var(--blanco);
  font-weight: 600;
  font-size: 0.8rem;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}

@media (hover: none) {
  .menu-item .overlay { opacity: 1; padding-bottom: 14px; background: linear-gradient(to top, rgba(44,24,16,0.7), transparent 40%); }
  .menu-item .overlay span { transform: translateY(0); }
}

/* Instalaciones */
#instalaciones {
  background: linear-gradient(180deg, var(--crema), #F5EDE0);
}
.instalaciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}
.instalaciones-item {
  border-radius: calc(var(--radio) - 4px);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sombra);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}
.instalaciones-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,93,4,0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.instalaciones-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.instalaciones-item figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.instalaciones-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.95) saturate(0.9);
}
.instalaciones-item:first-child { grid-column: 1 / -1; }
.instalaciones-item:first-child img { height: 200px; }

/* Promo */
#promo {
  background: linear-gradient(135deg, var(--cafe-oscuro), #3A1F10);
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}
#promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,183,3,0.05), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,93,4,0.05), transparent 60%);
  pointer-events: none;
}
#promo .seccion-titulo h2 { color: var(--blanco); }
#promo .seccion-titulo h2::after { background: linear-gradient(90deg, var(--amarillo), var(--naranja)); background-size: 200% auto; animation: shimmer 3s ease-in-out infinite; }
#promo .seccion-titulo p { color: rgba(255,255,255,0.7); }

#promo .burbujas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
#promo .burbuja {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,183,3,0.12);
  animation: subir linear infinite;
}
#promo .burbuja:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-duration: 6s; animation-delay: 0s; }
#promo .burbuja:nth-child(2) { left: 25%; width: 12px; height: 12px; animation-duration: 8s; animation-delay: 1s; }
#promo .burbuja:nth-child(3) { left: 45%; width: 6px; height: 6px; animation-duration: 5s; animation-delay: 2s; }
#promo .burbuja:nth-child(4) { left: 60%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: 0.5s; }
#promo .burbuja:nth-child(5) { left: 75%; width: 7px; height: 7px; animation-duration: 7s; animation-delay: 3s; }
#promo .burbuja:nth-child(6) { left: 90%; width: 10px; height: 10px; animation-duration: 6.5s; animation-delay: 1.5s; }
#promo .burbuja:nth-child(7) { left: 35%; width: 5px; height: 5px; animation-duration: 5.5s; animation-delay: 4s; }
#promo .burbuja:nth-child(8) { left: 55%; width: 9px; height: 9px; animation-duration: 7.5s; animation-delay: 0.2s; }

.promo-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promo-imagen {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--amarillo), var(--sombra-fuerte);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-imagen img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.95) brightness(1.05);
}
.promo-info { text-align: center; }
.promo-info .promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--amarillo), #FFD60A);
  color: var(--cafe-oscuro);
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  animation: pulso 2s ease-in-out infinite;
}
.promo-info .promo-dias {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--amarillo);
}
.promo-info .promo-chelas {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amarillo), #FFD60A, #FF8C00, var(--amarillo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% auto;
  animation: gradienteMovil 4s ease-in-out infinite;
  line-height: 1.1;
  margin: 6px 0 10px;
  filter: drop-shadow(0 0 20px rgba(255,183,3,0.2));
}
.promo-info .promo-detalle {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.5;
}
.promo-info .promo-detalle strong { color: var(--amarillo); }

/* Resenas */
#resenas {
  background: var(--blanco);
}
.resenas-grid {
  display: grid;
  gap: 16px;
}
.resena-card {
  background: linear-gradient(135deg, var(--crema), #FFF5E0);
  border-radius: var(--radio);
  padding: 24px 20px;
  box-shadow: var(--sombra);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}
.resena-estrellas {
  color: var(--amarillo);
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.resena-cita {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cafe-oscuro);
  margin-bottom: 12px;
}
.resena-cita::before { content: '\201C'; }
.resena-cita::after { content: '\201D'; }
.resena-autor {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--naranja);
}
.resena-google-link {
  text-align: center;
  margin-top: 28px;
}

/* Reservation Form */
.reserva-form {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}
.reserva-form .form-group {
  margin-bottom: 16px;
}
.reserva-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--cafe-oscuro);
}
.reserva-form input,
.reserva-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0D5C0;
  border-radius: var(--radio);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  background: var(--blanco);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  text-overflow: clip;
}
.reserva-form input:focus,
.reserva-form textarea:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.15);
}
.reserva-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Festivos */
#festivos {
  background: linear-gradient(135deg, var(--crema), #FFF0D0);
  position: relative;
  overflow: hidden;
}
#festivos::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.06), transparent);
  top: -80px;
  right: -80px;
  animation: orbita 20s linear infinite;
}
#festivos::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,3,0.05), transparent);
  bottom: -60px;
  left: -60px;
  animation: orbita 25s linear infinite reverse;
}

.tarjeta-festivo {
  max-width: 780px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tarjeta-festivo::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--naranja), var(--amarillo), var(--naranja));
  background-size: 200% auto;
  animation: shimmer 3s ease-in-out infinite;
}
.cargando-festivo { text-align: center; padding: 32px 20px; }
.cargando-texto { font-size: 1rem; }
.tarjeta-festivo-inner {
  padding: 28px 20px;
  text-align: center;
}
.tarjeta-festivo .festivo-icono {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}
.tarjeta-festivo .festivo-nombre {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--naranja);
  margin-bottom: 4px;
}
.tarjeta-festivo .festivo-fecha {
  font-size: 0.85rem;
  color: var(--cafe-madera);
  margin-bottom: 12px;
}
.tarjeta-festivo .festivo-mensaje {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--cafe-oscuro);
  max-width: 600px;
  margin: 0 auto;
}
.tarjeta-festivo .festivo-cta {
  display: inline-block;
  margin-top: 16px;
}

.tarjeta-countdown {
  max-width: 780px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tarjeta-countdown::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--cafe-madera), var(--amarillo), var(--naranja));
  background-size: 200% auto;
  animation: shimmer 3s ease-in-out infinite;
}
.tarjeta-countdown-inner {
  padding: 28px 20px;
  text-align: center;
}
.tarjeta-countdown .countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cafe-madera);
  font-weight: 600;
}
.tarjeta-countdown .countdown-nombre {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--naranja);
  margin: 8px 0 16px;
}
.tarjeta-countdown .countdown-numero {
  font-size: clamp(3rem, 10vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--naranja), var(--amarillo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  background-size: 200% auto;
  animation: gradienteMovil 3s ease-in-out infinite;
}
.countdown-fecha { margin-top: 12px; color: var(--cafe-madera); font-size: 0.9rem; }
.tarjeta-countdown .countdown-dias {
  font-size: 0.95rem;
  color: var(--cafe-madera);
  margin-top: 4px;
}

/* Ubicacion */
#ubicacion {
  background: var(--blanco);
}
.ubicacion-grid {
  display: grid;
  gap: 24px;
}
.ubicacion-mapa {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: box-shadow 0.3s ease;
}
.ubicacion-mapa iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
  filter: saturate(1.1) hue-rotate(-2deg);
}
.ubicacion-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ubicacion-card {
  background: linear-gradient(135deg, var(--crema), #FFF5E0);
  border-radius: var(--radio);
  padding: 20px;
  border-left: 4px solid var(--naranja);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ubicacion-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--cafe-oscuro);
}
.ubicacion-card .info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
  word-break: break-word;
}
.ubicacion-card .info-item .icono { font-size: 1.1rem; flex-shrink: 0; }
.ubicacion-card .info-item a { color: var(--naranja); font-weight: 600; }
.ubicacion-card .info-item .icono { animation: iconBounce 2s ease-in-out infinite; }
.ubicacion-card .info-item:nth-child(2) .icono { animation-delay: 0.3s; }
.ubicacion-card .info-item:nth-child(3) .icono { animation-delay: 0.6s; }
.ubicacion-card .info-item:nth-child(4) .icono { animation-delay: 0.9s; }

.ubicacion-botones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ubicacion-botones .btn { width: 100%; }

/* Footer */
footer {
  background: linear-gradient(180deg, var(--cafe-oscuro), #1a0e08);
  color: rgba(255,255,255,0.8);
  padding: 40px 16px 24px;
  text-align: center;
}
footer .footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amarillo);
  margin: 0 auto 12px;
  transition: transform 0.5s ease;
}
footer h3 {
  font-family: 'Playfair Display', serif;
  color: var(--blanco);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
footer .footer-sub {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 20px;
}
footer .footer-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}
footer .footer-grid h4 {
  color: var(--amarillo);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
footer .footer-grid h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--naranja);
  margin: 6px auto 0;
  border-radius: 1px;
}
footer .footer-grid p, footer .footer-grid a {
  font-size: 0.85rem;
  line-height: 1.7;
}
footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}
footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transicion);
  border: 1px solid rgba(255,255,255,0.1);
}
footer .footer-siguenos { margin-top: 6px; font-size: 0.8rem; }
footer .footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 0.75rem;
  opacity: 0.4;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal-overlay.activo { opacity: 1; pointer-events: auto; }
.modal-overlay img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.activo img { transform: scale(1); }
.modal-overlay .modal-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--blanco);
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transicion);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.98);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.nav-mobile.abierto {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mobile a {
  color: var(--blanco);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transicion);
  padding: 12px 24px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.nav-mobile a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--amarillo);
  transition: width 0.3s ease;
}
.nav-mobile .cerrar {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--blanco);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Keyframes */
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@keyframes gradienteMovil {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes heroZoom {
  0% { background-size: 100% auto; }
  100% { background-size: 110% auto; }
}
@keyframes luzFlotante {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes brilloTexto {
  0%, 100% { text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
  50% { text-shadow: 0 4px 50px rgba(255,183,3,0.3), 0 4px 30px rgba(0,0,0,0.4); }
}
@keyframes parpadeo {
  50% { opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
@keyframes pulso {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,183,3,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,183,3,0); }
}
@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes orbita {
  0% { transform: rotate(0deg) translate(20px) rotate(0deg); }
  100% { transform: rotate(360deg) translate(20px) rotate(-360deg); }
}
@keyframes subir {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* Hover States */
@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar-thumb:hover { background: var(--naranja); }

  .btn:hover::after { transform: translateX(0); }
  .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232,93,4,0.4); }
  .btn-secundario:hover { background: var(--naranja); color: var(--blanco); }
  .btn-hero:hover { background: var(--blanco); color: var(--naranja); }

  .whatsapp-float:hover { animation: none; transform: scale(1.15); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

  .navbar .logo:hover img { transform: rotate(360deg); }
  .navbar .nav-links a:hover::before { width: 100%; }
  .navbar .nav-links a:hover { opacity: 1; }

  .tarjeta-festivo:hover { transform: translateY(-4px); box-shadow: var(--sombra-fuerte); }
  .tarjeta-countdown:hover { transform: translateY(-4px); box-shadow: var(--sombra-fuerte); }

  .promo-imagen:hover { transform: scale(1.02); box-shadow: 0 0 0 4px var(--amarillo), 0 0 40px rgba(255,183,3,0.3); }
  .promo-imagen:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1.1); }

  .resena-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-fuerte); }

  .menu-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--sombra-fuerte); }
  .menu-item:hover img { transform: scale(1.12); filter: brightness(1.05) saturate(1.1); }
  .menu-item:hover .overlay { opacity: 1; padding-bottom: 16px; }
  .menu-item:hover .overlay span { transform: translateY(0); }

  .instalaciones-item:hover::after { background: rgba(232,93,4,0.05); }
  .instalaciones-item:hover { transform: scale(1.03); box-shadow: var(--sombra-fuerte); z-index: 2; }
  .instalaciones-item:hover img { transform: scale(1.1); filter: brightness(1.05) saturate(1.05); }

  .ubicacion-mapa:hover { box-shadow: var(--sombra-fuerte); }
  .ubicacion-card:hover { transform: translateX(4px); box-shadow: var(--sombra); }
  .ubicacion-card .info-item a:hover { text-decoration: underline; }

  footer .footer-logo:hover { transform: rotate(360deg) scale(1.05); }
  footer .footer-grid a:hover { color: var(--amarillo); }
  footer .footer-social a:hover { background: var(--naranja); transform: translateY(-4px) scale(1.1); border-color: var(--naranja); }

  .modal-overlay .modal-cerrar:hover { opacity: 1; background: rgba(232,93,4,0.8); transform: rotate(90deg); }

  .nav-mobile a:hover::after { width: 60%; }
  .nav-mobile a:hover { color: var(--amarillo); }
  .nav-mobile .cerrar:hover { transform: rotate(90deg); color: var(--naranja); }
}

/* Responsive */
@media (min-width: 480px) {
  .instalaciones-item img { height: 170px; }
  .instalaciones-item:first-child img { height: 240px; }
}

@media (min-width: 768px) {
  header.hero { background-attachment: fixed; }
  nav.navbar { padding: 16px 40px; }
  nav.navbar.scrolled { padding: 10px 40px; }
  .navbar .logo img { width: 48px; height: 48px; }
  .navbar .logo span { font-size: 1.4rem; }
  .navbar .nav-links { display: flex; }
  .navbar .menu-toggle { display: none; }
  .hero-contenido { padding: 40px 40px 80px; }
  .hero-contenido .logo-hero { width: 120px; height: 120px; margin-bottom: 24px; }
  .hero-contenido .hero-btns { flex-direction: row; max-width: none; width: auto; }
  .hero-contenido .hero-btns .btn { width: auto; }
  section { padding: 72px 0; }
  .contenedor { padding: 0 40px; }
  .seccion-titulo { margin-bottom: 48px; }
  .btn { padding: 14px 32px; font-size: 0.95rem; }
  .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; font-size: 26px; }
  .menu-grid { gap: 16px; }
  .menu-item { border-radius: var(--radio); }
  .menu-item .overlay { padding: 16px; }
  .menu-item .overlay span { font-size: 0.9rem; }
  .promo-grid { gap: 32px; }
  .promo-imagen img { height: 300px; }
  .promo-info .promo-tag { padding: 6px 20px; font-size: 0.85rem; margin-bottom: 16px; }
  .promo-info .promo-detalle { font-size: 1rem; }
  .resenas-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .instalaciones-grid { gap: 12px; }
  .instalaciones-item { border-radius: var(--radio); }
  .instalaciones-item img { height: 200px; }
  .instalaciones-item:first-child img { height: 300px; }
  .ubicacion-grid { gap: 32px; }
  .ubicacion-mapa iframe { height: 350px; }
  .ubicacion-card { padding: 28px; }
  .ubicacion-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
  .ubicacion-card .info-item { font-size: 0.95rem; }
  .ubicacion-botones { flex-direction: row; }
  .ubicacion-botones .btn { width: auto; }
  footer { padding: 48px 40px 32px; }
  footer .footer-logo { width: 80px; height: 80px; margin: 0 auto 16px; }
  footer h3 { font-size: 1.4rem; }
  footer .footer-sub { font-size: 0.85rem; margin-bottom: 24px; }
  footer .footer-grid { gap: 24px; margin: 0 auto 32px; }
  footer .footer-grid h4 { font-size: 0.9rem; }
  footer .footer-grid p, footer .footer-grid a { font-size: 0.9rem; }
  footer .footer-copy { font-size: 0.8rem; }
  .tarjeta-festivo-inner { padding: 40px 32px; }
  .tarjeta-festivo .festivo-icono { font-size: 3.5rem; }
  .tarjeta-festivo .festivo-fecha { font-size: 0.9rem; margin-bottom: 16px; }
  .tarjeta-festivo .festivo-cta { margin-top: 20px; }
  .tarjeta-countdown-inner { padding: 40px 32px; }
  .tarjeta-countdown .countdown-label { font-size: 0.9rem; }
  .modal-overlay { padding: 40px; }
  .modal-overlay img { max-width: 90vw; max-height: 90vh; }
  .modal-overlay .modal-cerrar { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 2.5rem; }
  .nav-mobile { gap: 32px; }
  .nav-mobile a { font-size: 1.4rem; }
}

@media (min-width: 1024px) {
  .contenedor { padding: 0 60px; }
  .whatsapp-float { width: 60px; height: 60px; font-size: 28px; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .menu-item .overlay { padding: 24px; }
  .menu-item .overlay span { font-size: 1.05rem; }
  .promo-grid { grid-template-columns: 1fr 1fr; text-align: left; }
  .promo-info { text-align: left; }
  .promo-info .promo-detalle { margin: 0; }
  .promo-imagen img { height: 400px; }
  .instalaciones-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .instalaciones-item:first-child { grid-column: 1 / -1; }
  .instalaciones-item:first-child img { height: 400px; }
  .instalaciones-item img { height: 240px; }
  .ubicacion-grid { grid-template-columns: 1.2fr 1fr; }
  .ubicacion-mapa iframe { height: 450px; }
  footer .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
  footer .footer-grid h4 { text-align: left; }
  footer .footer-grid h4::after { margin: 6px 0 0; }
  footer .footer-social { justify-content: flex-start; }
}
