/* ============================================
   CONFIGURACIÓN BASE
   ============================================ */

/* Reset de márgenes y padding para todos los elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Incluye padding y border en el ancho/alto total */
}

/* Estilos base del body */
body{
  font-family: 'Poppins', sans-serif; /* Fuente principal del sitio */
  color: #001e00;
  background: #001e00;
  min-width: 320px; /* Evita que el contenido se comprima demasiado en pantallas pequeñas */
  overflow-x: hidden; /* Evita el scroll horizontal */
}

/* Variables CSS globales - Paleta de colores del sitio */
:root {
  --dorado: #D4AF37;
  --negro: #001e00;
  --blanco: #ffffff;
  --amarillo-pastel: #fffdf3;
}


/* ============================================
   BARRA SUPERIOR (TOP BAR)
   Información de contacto y botón de llamada
   ============================================ */

/* Contenedor principal de la barra superior */
.top-bar {
  background: #2a310c;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: flex-end; /* Alinea contenido a la derecha */
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* Permite que los items bajen de línea en pantallas pequeñas sin romper el diseño */
  width: 100%;
  box-sizing: border-box;
}

/* Items individuales de la barra (teléfono, email, etc.) */
.top-bar-item {
  color: var(--blanco);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap; /* Evita que el texto se parta en medio de una palabra */
}

/* Botón de llamar en la barra superior */
.btn-llamar {
  background: var(--dorado);
  color: #001e00;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap; /* Evita que el texto del botón se parta */
  flex-shrink: 0; /* Evita que el botón se encoja en pantallas pequeñas */
}

/* Evita que el icono SVG se deforme */
.btn-llamar svg {
  flex-shrink: 0;
}

/* Efecto hover del botón llamar */
.btn-llamar:hover {
  background: #c9a024; /* Dorado más oscuro */
  transform: translateY(-2px); /* Levanta el botón ligeramente */
}

/* ============================================
   HEADER - NAVEGACIÓN PRINCIPAL
   Barra de navegación sticky (se queda fija al hacer scroll)
   ============================================ */

/* Contenedor principal del header */
.header {
  background: var(--blanco) !important;
  padding: 1rem 2rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 500 !important;
  flex-wrap: wrap !important; /* Permite que los elementos bajen de línea en móvil */
  width: 100% !important;     /* Ocupa todo el ancho disponible */
  box-sizing: border-box !important;
}

/* Contenedor del logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0; /* El logo no se encoge */
}

/* Imagen del logo */
.logo img {
  height: 50px;
  width: auto;
}

/* Texto del logo */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dorado);
  white-space: nowrap; /* Evita que el texto del logo se parta */
}

/* Menú de navegación */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;        /* Los links bajan de línea si no caben */
  justify-content: center;
}

/* Enlaces del menú */
.nav a {
  color: #001e00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap; /* Evita que los nombres de los links se partan */
}

/* Efecto hover en enlaces del menú */
.nav a:hover {
  color: var(--dorado);
}

/* Botón de reserva en el header */
.btn-reserva {
  background: var(--dorado);
  color: #001e00;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* Evita que el texto del botón se parta */
  flex-shrink: 0;       /* El botón no se encoge */
}

/* Efecto hover del botón de reserva */
.btn-reserva:hover {
  background: linear-gradient(135deg, #b8962e, #9f8125) !important;
  color: #ffffff !important;
  transform: scale(1.05);
}


/* ============================================
   VENTANA EMERGENTE
   Formulario de contacto o reserva
   ============================================ */

/* Contenedor de la ventana (fondo oscuro) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  overflow-y: auto; /* Permite scroll dentro del modal si el contenido es largo en móvil */
  box-sizing: border-box;
}

/* Contenido interno de la ventana*/
.modal-content {
  background: linear-gradient(135deg, #2a310c, #2a310c);
  margin: 10% auto;
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
  border: 2px solid var(--dorado);
  box-sizing: border-box; /* Evita que el padding desborde el ancho */
}

/* Botón X de la ventana */
.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  color: var(--dorado);
  cursor: pointer;
}

/* Efecto hover del botón cerrar */
.close-modal:hover {
  color: #c9a024;
}

/* Título de la ventana flotante */
.modal-content h3 {
  color: var(--dorado);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
}

/* Campos de input del formulario */
.modal-content input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--dorado);
  border-radius: 10px;
  background: var(--blanco);
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box; /* Evita que el input se salga del contenedor en móvil */
}

/* Botón de envío del formulario */
.btn-enviar {
  width: 100%;
  padding: 1rem;
  background: var(--dorado);
  color: #001e00;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box; /* Asegura que el botón no se desborde */
}

/* Efecto hover del botón enviar */
.btn-enviar:hover {
  background: #dfc167;
}

/* ── Responsive para móvil ── */
@media (max-width: 768px) {

  /* Ventana más compacta */
  .modal-content {
    margin: 5% auto !important;
    padding: 1.8rem 1.2rem !important;
    width: 88% !important;
    border-radius: 14px !important;
  }

  /* Título más pequeño */
  .modal-content h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1.2rem !important;
  }

  /* Botón cerrar */
  .close-modal {
    font-size: 1.5rem !important;
    right: 14px !important;
    top: 14px !important;
  }

  /* Inputs más compactos */
  .modal-content input {
    padding: 0.7rem 0.9rem !important;
    margin-bottom: 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
  }

  /* Botón enviar más compacto */
  .btn-enviar {
    padding: 0.75rem !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
  }
}


/* ============================================
   SECCIÓN HERO
   Banner principal con imagen de fondo
   ============================================ */

.hero {
  height: 85vh;
  min-height: 400px; /* Evita que el hero se vea muy pequeño en pantallas bajas */
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
              url('https://saunakalos.com/assets/images/istockphoto-827324092-612x408.jpg') #001e00;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Evita bugs de parallax en móvil */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem; /* Evita que el contenido toque los bordes en pantallas pequeñas */
  box-sizing: border-box;
}

/* CONTENEDOR DE ESTRELLAS */
.hero-stars {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 20px;
  border-radius: 25px;
  background: rgba(128, 128, 128, 0.4);
  backdrop-filter: blur(4px);
  flex-wrap: wrap;        /* Por si las estrellas no caben en una línea */
  justify-content: center;
}

/* ESTRELLAS SVG */
.hero-stars svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0; /* Las estrellas no se encogen */
}

/* TÍTULO PRINCIPAL */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4.2rem); /* Se ajusta al ancho de pantalla sin romperse */
  color: var(--dorado);
  margin-bottom: 10px;
  letter-spacing: 1px;
  word-break: break-word; /* Evita desbordamiento si la palabra es muy larga */
}

/* SUBTÍTULO */
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem); /* Escala suavemente según la pantalla */
  color: #ffffff;
  max-width: 600px;
  width: 100%; /* Ocupa el ancho disponible sin salirse */
}

/* ============================================
   SECCIÓN SERVICIOS
   Grid de servicios ofrecidos
   ============================================ */

/* Contenedor principal de servicios */
.servicios {
  padding: 5rem 2rem;
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
}

/* Título de la sección */
.servicios h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Escala el título según la pantalla */
  margin-bottom: 3rem;
  color: #2a310c;
}

/* Grid de 4 columnas para los servicios */
.servicios-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* En tablets: 2 columnas */
@media (max-width: 900px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* En móvil: 1 columna */
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* Tarjeta individual de servicio */
.servicio-item {
  background: #f6f8f6;
  padding: 2rem;
  text-align: center;
  box-sizing: border-box; /* Evita desbordamiento del padding */
}

/* Icono del servicio */
.servicio-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  flex-shrink: 0; /* El icono no se deforma */
}

/* Título del servicio */
.servicio-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2a310c;
}

/* ============================================
   SECCIÓN IMAGENES SLIDER
   Descripcion de la seccion
   ============================================ */

.inka-ecosalud {
  padding: 5rem 2rem 3rem;
  background: #C4DCA6;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

/* Título de la sección */
.inka-ecosalud h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Escala suavemente según pantalla */
  margin-bottom: 1rem;
  color: #004600;
}

/* Párrafo descriptivo */
.inka-ecosalud p {
  max-width: 800px;
  margin: auto;
  font-size: clamp(0.95rem, 2vw, 1.1rem); /* Escala el texto en móvil */
  line-height: 1.8;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
}


/* ============================================
   GALERÍA SLIDER
   Carrusel de imágenes con controles
   ============================================ */

/* Contenedor principal del slider */
.galeria-slider {
  padding: 5rem 0;
  background: #C4DCA6;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Contenedor con ancho máximo */
.slider-container {
  max-width: 100%;
  margin: auto;
  position: relative;
}

/* Wrapper que oculta el overflow */
.slider-wrapper {
  overflow: hidden;
  padding: 0;
  width: 100%;
  margin: 0;
}

/* Track que contiene todas las slides */
.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 0 calc((100vw - 800px) / 2); /* Centra el slide activo en desktop */
}

/* En tablets: reduce el padding lateral del track */
@media (max-width: 900px) {
  .slider-track {
    padding: 0 calc((100vw - 600px) / 2);
  }
}

/* En móvil: el track ocupa todo el ancho sin padding lateral */
@media (max-width: 600px) {
  .slider-track {
    padding: 0 1.5rem; /* antes: 0 1rem */
    gap: 1rem;
  }
}

/* Slide individual */
.slide {
  min-width: 800px;
  flex-shrink: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  background: #f5f5f5;
  border: 4px solid var(--blanco);
}

/* En tablets: slide más angosto */
@media (max-width: 900px) {
  .slide {
    min-width: 600px;
  }
}

/* En móvil: slide ocupa casi todo el ancho */
@media (max-width: 600px) {
  .slide {
    min-width: calc(100vw - 3rem); /* coincide con padding x2 del track */
    max-width: calc(100vw - 3rem); /* ESTO evita que la imagen lo ensanche */
    width: calc(100vw - 3rem);
    border-radius: 12px;
  }
}

/* Contenido del slide (cuando no hay imagen) */
.slide-content {
  width: 100%;
  height: 450px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001e00;
  font-size: 1.2rem;
}

/* En móvil: reduce la altura del slide-content */
@media (max-width: 600px) {
  .slide-content {
    height: 260px;
    font-size: 1rem;
  }
}

/* Imagen del slide */
.slide img {
  width: 100%;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* En móvil: reduce la altura de la imagen */
@media (max-width: 600px) {
  .slide img {
    height: 260px;
  }
}

/* Etiqueta sobre la imagen */
.slide-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #c9a024;
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 10;
  white-space: nowrap; /* Evita que el texto de la etiqueta se parta */
}

/* En móvil: etiqueta más pequeña */
@media (max-width: 600px) {
  .slide-label {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    top: 10px;
    left: 10px;
  }
}

/* Contenedor de botones prev/next */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 100;
  pointer-events: none;
  padding: 0 2rem;
  max-width: 1400px;
  box-sizing: border-box;
}

/* En móvil: reduce el padding de los controles */
@media (max-width: 600px) {
  .slider-controls {
    padding: 0 0.5rem;
  }
}

/* Botones de navegación del slider */
.slider-btn {
  background: white;
  color: #001e00;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: all;
  flex-shrink: 0; /* Los botones no se encogen */
}

/* En móvil: botones más pequeños */
@media (max-width: 600px) {
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

/* Efecto hover de botones slider */
.slider-btn:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

/* Contador de slides (ej: "1 / 5") */
.slider-counter {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #001e00;
  font-weight: 400;
  background: white;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

@media (max-width: 768px) {
    .inka-ecosalud {
        padding: 2rem 1rem !important;
    }

    .galeria-slider {
        padding: 2rem 0 !important;
    }
}


/* ============================================
   ESTADÍSTICAS
   ============================================ */

.estadisticas {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  background: #C4DCA6;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.expansion-chamber {
  display: flex;
  align-items: center;
  width: 100vw;
  box-sizing: border-box;
}

.chamber-side {
  flex: 1;
  height: 15px;
  background: #ffffff;
}

.chamber-center {
  background: #ffffff;
  width: 1200px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 30px;
  box-sizing: border-box;
}

.stat {
  padding: 2.5rem 1rem;
  text-align: center;
  background: #F0F8E8;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px #faf9f9;
  box-sizing: border-box;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #c9a024;
}

.stat-label {
  margin-top: .6rem;
  font-size: clamp(0.8rem, 2vw, .95rem);
  color: #2a310c;
}

/* ── MÓVIL: 2 columnas con franjas laterales ── */
@media (max-width: 768px) {
  .chamber-center {
    grid-template-columns: repeat(2, 1fr) !important;
    border-radius: 16px !important;
    gap: 0.5rem !important;
    padding: 0.5rem !important;
    width: 85% !important;
    max-width: 85% !important;
  }

  .chamber-side {
    display: flex !important;
    height: 10px !important;
  }

  .stat {
    padding: 1.5rem 0.5rem !important;
  }

  .estadisticas {
    padding: 2rem 0 !important;
  }
}

/* ============================================
   TESTIMONIOS
   Reseñas de clientes con diseño de bocadillo
   ============================================ */

/* Contenedor principal de testimonios */
.testimonios {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #7a9457, #7a9457);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

/* Título de la sección */
.testimonios h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Escala el título */
  margin-bottom: 4rem;
  color: #2a310c;
}

/* Grid responsive de testimonios */
.testimonios-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* En móvil: una sola columna */
@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .testimonios {
    padding: 3rem 1rem !important;
  }

  .testimonio-card {
    padding: 1rem 0.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  .testimonio-texto {
    font-size: 0.75rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.5 !important;
  }

  .estrellas {
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  .testimonio-autor {
    font-size: 0.7rem !important;
  }

  .testimonio-fecha {
    font-size: 0.65rem !important;
  }

  .tripadvisor-icon {
    width: 25px !important;
    height: 25px !important;
    font-size: 0.9rem !important;
    bottom: 10px !important;
    right: 10px !important;
  }
}

/* Tarjeta individual de testimonio */
.testimonio-card {
  background: var(--amarillo-pastel);
  padding: 2.2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(212,175,55,.18);
  position: relative;
  overflow: visible;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

/* Marca de agua decorativa en el fondo */
.testimonio-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url('TU_IMAGEN_MARCA_AGUA.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* Asegura que el contenido esté sobre la marca de agua */
.testimonio-card > * {
  position: relative;
  z-index: 1;
}

/* Cola del bocadillo de diálogo */
.testimonio-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--amarillo-pastel);
  filter: drop-shadow(0 5px 3px rgba(212,175,55,.15));
  z-index: 2;
}

/* Estrellas de calificación */
.estrellas {
  display: flex;
  gap: .3rem;
  margin-bottom: 1rem;
  color: var(--dorado);
  font-size: clamp(1rem, 3vw, 1.2rem); /* Estrellas escalan en móvil */
  flex-wrap: wrap; /* Por si las estrellas no caben en una línea */
}

/* Texto del testimonio */
.testimonio-texto {
  font-style: italic;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1rem); /* Escala el texto */
  word-break: break-word; /* Evita desbordamiento de palabras largas */
}

/* Nombre del autor */
.testimonio-autor {
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, .9rem);
  color: #2a310c;
  white-space: nowrap; /* El nombre no se parte */
}

/* Fecha del testimonio */
.testimonio-fecha {
  font-size: clamp(0.75rem, 2vw, .85rem);
  color: #9b7f25;
}

/* Icono de TripAdvisor */
.tripadvisor-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0; /* El icono no se deforma */
}


/* ============================================
   FOOTER
   Pie de página con información de contacto
   ============================================ */

/* Contenedor principal del footer */
.footer {
  padding: 4rem 2rem 2rem;
  background: #2a310c;
  color: var(--blanco);
  box-sizing: border-box;
  width: 100%;
}

/* Grid de 3 columnas del footer */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
  box-sizing: border-box;
  width: 100%;
}

/* Primera columna - Logo y contacto */
.footer-column-1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0; /* Evita desbordamiento en grid */
}

/* Logo en el footer */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  max-width: 100%; /* El logo nunca supera su contenedor */
}

/* Contenedor de información de contacto */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item individual de contacto (teléfono, email, dirección) */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word; /* Evita desbordamiento de emails o textos largos */
}

/* Iconos SVG de contacto */
.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: #D4AF37;
  fill: none;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap; /* Los iconos bajan de línea si no caben */
}

/* Icono individual de red social */
.social-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0; /* Los iconos no se encogen */
}

/* Efecto hover de icono social */
.social-icon:hover {
  background: var(--dorado);
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  transition: stroke 0.3s;
}

/* Cambia color del icono en hover */
.social-icon:hover svg {
  stroke: #ffffff;
}

/* Segunda columna - Enlaces rápidos */
.footer-column-2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0; /* Evita desbordamiento en grid */
}

/* Título de la columna */
.footer-column-2 h3 {
  color: var(--dorado);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Lista de enlaces */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Enlaces individuales */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  white-space: nowrap; /* Evita que los links se partan */
}

/* Efecto hover de enlaces */
.footer-links a:hover {
  color: var(--dorado);
}

/* Tercera columna - Newsletter y mapa */
.footer-column-3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Título de la columna */
.footer-column-3 h3 {
  color: var(--dorado);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Formulario de newsletter */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Campos del formulario */
.footer-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #555;
  border-radius: 8px;
  background: transparent;
  color: var(--blanco);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  box-sizing: border-box; /* Evita que el input se salga del contenedor */
}

/* Texto placeholder */
.footer-form input::placeholder {
  color: #999;
}

/* Estado focus de los inputs */
.footer-form input:focus {
  outline: none;
  border-color: var(--dorado);
}

/* Botón del formulario */
.footer-form button {
  width: 100%;
  padding: 0.8rem;
  background: var(--dorado);
  color: #001e00;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box; /* Evita desbordamiento del botón */
}

/* Efecto hover del botón */
.footer-form button:hover {
  background: #c9a024;
}

/* Contenedor del mapa de Google */
.map-container {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #444;
  box-sizing: border-box;
}

/* iframe del mapa */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Elimina espacio fantasma debajo del iframe */
}

/* Links principales */
.footer-links > a,
.footer-links .nav-item > a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links > a:hover,
.footer-links .nav-item > a:hover {
  color: #D4AF37;
}

/* Submenú SERVICIOS */
.footer-links .menu-horizontal {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.6rem 0;
}

/* Items del submenú */
.footer-links .menu-horizontal li {
  margin: 0.3rem 0;
}

/* Links del submenú */
.footer-links .menu-horizontal a {
  font-size: 0.85rem;
  color: #bdbdbd;
  text-decoration: none;
  padding-left: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-links .menu-horizontal a:hover {
  color: #D4AF37;
}

/* Sangría elegante opcional */
.footer-links .menu-horizontal {
  margin-left: 12px;
}

/* ============================================
   MÓVIL: max-width 768px
   ============================================ */
@media (max-width: 768px) {

  /* Padding del footer */
  .footer {
    padding: 3rem 1rem 2rem !important;
  }

  /* Grid: col 1 y 2 arriba, col 3 abajo completa */
  .footer .footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 2rem !important;
  }

  /* Columna 1: fila 1, columna 1 */
  .footer .footer-content .footer-column-1 {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  /* Columna 2: fila 1, columna 2 */
  .footer .footer-content .footer-column-2 {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  /* Columna 3: fila 2, ancho completo */
  .footer .footer-content .footer-column-3 {
    grid-column: 1 / 3 !important;
    grid-row: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Formulario ocupa todo el ancho */
  .footer .footer-content .footer-column-3 .footer-form {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer .footer-content .footer-column-3 .footer-form input,
  .footer .footer-content .footer-column-3 .footer-form button {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mapa ocupa todo el ancho */
  .footer .footer-content .footer-column-3 .map-container {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── Tamaños de letra reducidos ── */

  /* Título de columna */
  .footer-column-2 h3,
  .footer-column-3 h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.6rem !important;
  }

  /* Links principales */
  .footer-links > a,
  .footer-links .nav-item > a {
    color: #ccc !important;
    font-size: 0.75rem !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* Submenú */
  .footer-links .menu-horizontal {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 0 0.8rem !important;
    border: none !important;
    border-top: none !important;
  }

  .footer-links .menu-horizontal li {
    border: none !important;
    border-top: none !important;
    margin: 0.2rem 0 !important;
  }

  .footer-links .menu-horizontal a {
    color: #bdbdbd !important;
    font-size: 0.68rem !important;
  }

  /* Datos de contacto */
  .footer-contact-item {
    font-size: 0.75rem !important;
    gap: 0.5rem !important;
  }

  /* Iconos de contacto SVG */
  .footer-contact-item svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Iconos de redes sociales */
  .social-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Inputs del formulario */
  .footer-form input {
    font-size: 0.78rem !important;
    padding: 0.6rem 0.8rem !important;
  }

  /* Botón del formulario */
  .footer-form button {
    font-size: 0.78rem !important;
    padding: 0.6rem !important;
  }

  /* Ocultar menú vertical */
  .footer-links .nav-item .menu-vertical {
    display: none !important;
  }

  .footer-links .nav-item {
    padding-left: 0 !important;
    margin-left: 0 !important;
    border: none !important;
  }
}

/* ============================================
   MEDIA QUERIES - RESPONSIVE
   Adaptación para dispositivos móviles y tablets
   ============================================ */

/* Tablets */
@media (max-width: 968px) {

  /* Servicios en 2 columnas */
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Estadísticas en 2 columnas */
  .chamber-center {
    width: 90%;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Oculta los lados decorativos */
  .chamber-side {
    display: none;
  }

  /* Footer en 1 columna */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Ajusta padding del slider */
  .slider-wrapper {
    padding: 0;
  }

  /* Slides ocupan 90% del ancho */
  .slider-track {
    padding: 0 calc((100vw - 90vw) / 2);
  }

  .slide {
    min-width: 90vw;
  }

  /* Links del footer pueden ocupar todo el ancho */
  .footer-links a,
  .footer-links .menu-horizontal a {
    white-space: normal; /* En móvil se permite que los links bajen de línea */
  }
}

/* Móvil pequeño */
@media (max-width: 500px) {

  /* Servicios en 1 columna */
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  /* Estadísticas en 1 columna */
  .chamber-center {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 16px;
  }

  /* Footer con menos padding */
  .footer {
    padding: 3rem 1rem 2rem;
  }

  /* Reduce el gap del footer */
  .footer-content {
    gap: 2rem;
  }

  /* Mapa un poco más alto en móvil para verse bien */
  .map-container {
    height: 180px;
  }
}

/* ============================================
   DROPDOWN SERVICIOS - ESTILO FINAL
   ============================================ */

.nav-item {
  position: relative;
  box-sizing: border-box;
}

/* SUBMENÚ */
.menu-vertical {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  max-width: 90vw;        /* Nunca supera el ancho de la pantalla */
  padding: 10px 0;
  list-style: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  z-index: 1000;
  box-sizing: border-box;
}

/* Evita que el submenú se salga por la derecha en pantallas pequeñas */
@media (max-width: 768px) {
  .menu-vertical {
    position: static;     /* En móvil fluye dentro del nav en lugar de flotar */
    box-shadow: none;     /* Sin sombra en móvil para verse más limpio */
    border-radius: 0;
    min-width: 100%;      /* Ocupa todo el ancho disponible */
    max-width: 100%;
    padding: 0;
    background: #f5f5f5;  /* Fondo ligeramente distinto para diferenciarlo */
  }
}

/* ÁREA INVISIBLE (ANTI-PARPADEO) */
.menu-vertical::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 50%;
  height: 12px;
}

/* En móvil el área invisible no es necesaria */
@media (max-width: 768px) {
  .menu-vertical::before {
    display: none;
  }
}

/* ITEMS */
.menu-vertical li a {
  display: block;
  padding: 12px 20px;
  color: #001e00;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;    /* Evita que el texto del link se parta */
  box-sizing: border-box;
}

/* En móvil el texto puede ocupar más espacio */
@media (max-width: 768px) {
  .menu-vertical li a {
    white-space: normal;
    padding: 10px 24px;   /* Más sangría para diferenciarlo del nivel superior */
    font-size: 14px;
  }
}

/* HOVER ITEM */
.menu-vertical li a:hover {
  background: #d4af37;
  color: #001e00;
  font-weight: bold;
}

/* MOSTRAR SUBMENÚ EN DESKTOP (hover) */
@media (min-width: 769px) {
  .nav-item:hover .menu-vertical,
  .menu-vertical:hover {
    display: block;
  }
}

/* MOSTRAR SUBMENÚ EN MÓVIL (clase activa via JavaScript) */
@media (max-width: 768px) {
  .nav-item.active .menu-vertical {
    display: block;
  }
}

/* ============================================
   HERO - HABITACIONES (FIX DEFINITIVO)
   ============================================ */

.Habitaciones-header {
  width: 100%;
  height: 420px; /* MISMA ALTURA */
  padding: 0;    /* ELIMINAMOS PADDING */
  position: relative;
  overflow: hidden;
  background: url("img/habitaciones-hero.jpg") center / cover no-repeat;
}


/* SOLO AFECTA A HABITACIONES */
.Habitaciones-header .container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* solo lateral */
}


/* TÍTULO */
.Habitaciones-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
}

/* DESCRIPCIÓN */
.Habitaciones-header p {
  max-width: 620px;
  font-size: 15px;
  color: #e5e5e5;
  line-height: 1.6;
}

/* DECORACIÓN */
.Habitaciones-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.Habitaciones-header::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: rgba(0, 150, 136, 0.04);
  border-radius: 50%;
}


/* ============================================
   HABITACIONES - GRID 2x2
   ============================================ */

.habitaciones-section {
  padding: 80px 20px;
  background: #F0F8E8;
;
}

.habitaciones-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.habitacion-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.habitacion-card:hover {
  transform: translateY(-8px);
}

.habitacion-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.habitacion-content {
  padding: 25px;
}

.habitacion-content h3 {
  font-size: 22px;
  color: #004600;
  margin-bottom: 8px;
}

.camas {
  display: block;
  font-size: 14px;
  color: #9b7f25;
  margin-bottom: 12px;
}

.habitacion-content p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-habitacion {
  display: inline-block;
  padding: 12px 28px;
  background: #D4AF37;
  color: #001e00;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-habitacion:hover {
  background: linear-gradient(135deg, #b8962e, #9f8125);
  color: #ffffff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .habitaciones-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   MOVIL-HABITACIONES
===================================== */
@media (max-width: 768px) {

  /* HERO */
  .Habitaciones-header {
    height: 360px;
  }

  .Habitaciones-header h1 {
    font-size: 32px;
  }

  .Habitaciones-header p {
    font-size: 14px;
  }

  /* SECCIÓN - 2 columnas x 2 filas */
  .habitaciones-section {
    padding: 50px 3%;
  }

  .habitaciones-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* CARD */
  .habitacion-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .habitacion-card img {
    height: 160px;
    object-fit: cover;
  }

  .habitacion-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .habitacion-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.4;
    text-align: center;
  }

  .camas {
    font-size: 12px;
    margin-bottom: 8px;
    text-align: center;
  }

  .habitacion-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
  }

  .btn-habitacion {
    padding: 9px 20px;
    font-size: 13px;
    text-align: center;
  }
}


/* =====================================
   SECCIÓN MASAJES  1- PREMIUM
===================================== */

.masajes-section {
  width: 100%;
  padding: 100px 5%;
  background: #F0F8E8;
}

/* ENCABEZADO */
.masajes-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.masajes-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #001e00;
  margin-bottom: 15px;
}

.masajes-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #001e00;
}

/* GRID */
.masajes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
.masaje-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.masaje-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGEN */
.masaje-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENIDO */
.masaje-content {
  padding: 25px;
  text-align: center;
}

.masaje-content h3 {
  font-size: 20px;
  color: #004600;
  margin-bottom: 12px;
  font-weight: 600;
}

.masaje-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 22px;
}

/* BOTÓN RESERVAR */
.btn-masaje {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #001e00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-masaje:hover {
  background: linear-gradient(135deg, #b8962e, #9f8125);
  color: #ffffff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .masajes-section {
    padding: 70px 5%;
  }

  .masajes-header h2 {
    font-size: 30px;
  }
}

/* =====================================
   HERO MASAJES  2- PREMIUM
===================================== */

.masajes-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("img/masajes-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* OVERLAY OSCURO + DORADO */
.masajes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

/* CONTENIDO */
.masajes-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 20px;
}

/* ETIQUETA SUPERIOR */
.masajes-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #001e00;
  background: linear-gradient(135deg, #d4af37, #b8962e);
}

/* TÍTULO */
.masajes-hero-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* TEXTO */
.masajes-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e5e5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .masajes-hero {
    height: 360px;
  }

  .masajes-hero-content h2 {
    font-size: 32px;
  }

  .masajes-hero-content p {
    font-size: 15px;
  }
}

/* ============================================
   MOVIL-MASAJES
   ============================================ */
@media (max-width: 768px) {

  /* SECCIÓN MASAJES */
  .masajes-section {
    padding: 70px 3%;
  }

  .masajes-header h2 {
    font-size: 30px;
  }

  .masajes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .masaje-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .masaje-card img {
    height: 160px;
    object-fit: cover;
  }

  .masaje-content {
    padding: 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
  }

  .masaje-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .masaje-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
  }

  .btn-masaje {
    padding: 9px 20px;
    font-size: 13px;
  }

  /* HERO MASAJES */
  .masajes-hero {
    height: 360px;
  }

  .masajes-hero-content h2 {
    font-size: 32px;
  }

  .masajes-hero-content p {
    font-size: 15px;
  }
}

/* ============================================
   CONTACTOS
   ============================================ */

.contactos-section {
  background: #F0F8E8;
  padding: 80px 20px;
}

.contactos-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contactos-container h2 {
  font-size: 38px;
  color: #004600;
  margin-bottom: 10px;
}

.contactos-desc {
  font-size: 15px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto 50px;
}

.contactos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contacto-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.contacto-card:hover {
  transform: translateY(-8px);
}

.contacto-card .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.contacto-card h3 {
  font-size: 18px;
  color: #004600;
  margin-bottom: 8px;
}

.contacto-card p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 15px;
}

.contacto-card a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: #d4af37;
  color: #001e00;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contacto-card a:hover {
  background: linear-gradient(135deg, #b8962e, #9f8125);
  color: #ffffff;
  transform: scale(1.05);
}

/* ============================================
   CONTACTOS - RESPONSIVE MÓVIL
   ============================================ */

@media (max-width: 768px) {
  .contactos-section {
    padding: 50px 16px;
  }

  .contactos-container h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .contactos-desc {
    font-size: 14px;
    margin-bottom: 35px;
    padding: 0 8px;
  }

  .contactos-grid {
    grid-template-columns: 1fr 1fr;  /* 2 columnas */
    grid-template-rows: auto auto;   /* 2 filas */
    gap: 16px;
  }

  .contacto-card {
    padding: 25px 15px;
    border-radius: 14px;
  }

  .contacto-card .icon svg {
    width: 28px;
    height: 28px;
  }

  .contacto-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .contacto-card p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .contacto-card a {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .contactos-grid {
    grid-template-columns: 1fr 1fr;  /* mantiene 2 columnas incluso en pantallas muy pequeñas */
    grid-template-rows: auto auto;
  }

  .contacto-card {
    padding: 20px 10px;
  }
}

/* =====================================
   SECCIÓN SAUNA  1- PREMIUM
===================================== */

.sauna-section {
  width: 100%;
  padding: 100px 8%;
  background: #F0F8E8;
}

/* ENCABEZADO */
.sauna-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sauna-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #001e00;
  margin-bottom: 15px;
}

.sauna-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #001e00;
}

/* GRID 1x4 */
.sauna-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* CARD */
.sauna-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sauna-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGEN */
.sauna-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* CONTENIDO */
.sauna-content {
  padding: 25px;
  text-align: center;
}

.sauna-content h3 {
  font-size: 20px;
  color: #004600;
  margin-bottom: 12px;
  font-weight: 600;
}

.sauna-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 22px;
}

/* BOTÓN */
.btn-sauna {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #001e00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sauna:hover {
  background: linear-gradient(135deg, #b8962e, #9f8125);
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .sauna-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sauna-section {
    padding: 70px 5%;
  }

  .sauna-header h2 {
    font-size: 30px;
  }

  .sauna-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   HERO SAUNA  2- PREMIUM
===================================== */

.sauna-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("img/sauna-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* OVERLAY */
.sauna-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

/* CONTENIDO */
.sauna-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 20px;
}

/* TAG */
.sauna-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #001e00;
  background: linear-gradient(135deg, #d4af37, #b8962e);
}

/* TÍTULO */
.sauna-hero-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* TEXTO */
.sauna-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e5e5;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .sauna-hero {
    height: 360px;
  }

  .sauna-hero-content h2 {
    font-size: 32px;
  }

  .sauna-hero-content p {
    font-size: 15px;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins",sans-serif;
}

.body-sauna{
  background:#b8b6b6;
  color:#001e00;
}

/* =====================================
    MOVIL-SAUNA
===================================== */

@media (max-width: 768px) {

  /* SECCIÓN SAUNA */
  .sauna-section {
    padding: 70px 3%;
  }

  .sauna-header h2 {
    font-size: 30px;
  }

  .sauna-grid {
    grid-template-columns: 1fr 1fr;  /* 2 columnas x 2 filas */
    gap: 16px;
  }

  .sauna-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .sauna-card img {
    height: 160px;
    object-fit: cover;
  }

  .sauna-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .sauna-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
  }

  .sauna-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
    width: 100%;
  }

  .btn-sauna {
    padding: 9px 20px;
    font-size: 13px;
  }

  /* HERO SAUNA */
  .sauna-hero {
    height: 360px;
  }

  .sauna-hero-content h2 {
    font-size: 32px;
  }

  .sauna-hero-content p {
    font-size: 15px;
  }
}

/* =====================================
   ENTRETENIMIENTO
===================================== */

/* ===== HERO ===== */
.entertainment-hero{
  position: relative;
  height: 420px;
  background: #000;              /* Banner negro */
  display: flex;
  align-items: center;           /* Centrado vertical */
  justify-content: center;       /* Centrado horizontal */
  text-align: center;
}

.entertainment-hero-content{
  position:relative;
  text-align:center;
  max-width:750px;
  padding:20px;
}

.entertainment-tag{
  display:inline-block;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#001e00;
  padding:8px 24px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:20px;
}

.entertainment-hero-content h2{
  font-size:44px;
  margin-bottom:15px;
  color: #d4af37;  /* Título en dorado */
}

.entertainment-hero-content p{
  font-size:16px;
  line-height:1.6;
  opacity:.9;
  color: #fff;  /* Párrafo en blanco */
}


/* ===== SECCIÓN 1x2 ===== */
.entertainment-section{
  padding:80px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background: #F0F8E8;   /* MISMO COLOR QUE MASAJES */
}


/* ===== CARD ===== */
.entertainment-card{
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ===== SLIDER CSS ===== */
.slider-css{
  position:relative;
  height:300px;
  overflow:hidden;
  background:#ffffff; /* FONDO BLANCO */
}

.slider-css img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1);
  animation:fadeSlider 16s infinite;
  transition:transform 1.5s ease;
}

/* ZOOM SUAVE */
.entertainment-card:hover .slider-css img{
  transform:scale(1.08);
}

.slider-css img:nth-child(1){animation-delay:0s;}
.slider-css img:nth-child(2){animation-delay:4s;}
.slider-css img:nth-child(3){animation-delay:8s;}
.slider-css img:nth-child(4){animation-delay:12s;}

@keyframes fadeSlider{
  0%{opacity:0}
  10%{opacity:1}
  25%{opacity:1}
  35%{opacity:0}
  100%{opacity:0}
}

/* ===== CONTENIDO ===== */
.entertainment-content{
  padding:28px;
}

.entertainment-content h3{
  font-size:26px;
  margin-bottom:14px;
  color:#004600; /* MISMO COLOR QUE MASAJES */
  font-weight:600;
}

.entertainment-content p{
  font-size:14px;
  line-height:1.6;
  color:#000000; /* MISMO COLOR QUE MASAJES */
  margin-bottom:25px;
}

.btn-entertainment{
  display:inline-block;
  padding:13px 30px;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#001e00;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:transform .3s ease;
}

.btn-entertainment:hover{
  transform:scale(1.08);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .entertainment-section{
    grid-template-columns:1fr;
  }
}

/* =====================================
   MOVIL-ENTRETENIMIENTO
===================================== */
@media (max-width: 768px) {

  /* HERO */
  .entertainment-hero {
    height: 360px;
  }

  .entertainment-hero-content h2 {
    font-size: 32px;
  }

  .entertainment-hero-content p {
    font-size: 15px;
  }

  /* SECCIÓN - 2 columnas x 2 filas */
  .entertainment-section {
    padding: 50px 3%;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* CARD */
  .entertainment-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  /* SLIDER */
  .slider-css {
    height: 160px;
  }

  /* CONTENIDO */
  .entertainment-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .entertainment-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
  }

  .entertainment-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
  }

  .btn-entertainment {
    padding: 9px 20px;
    font-size: 13px;
    text-align: center;
  }
}

/* =====================================
   RESTAURANTE
===================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

.body-restaurante{
  background: #F0F8E8;
  color:#000;
  padding-bottom: 80px;
}


/* HERO - BANNER */
.hero-restaurante{
  height:420px;
  background:url("img/restaurante-hero.jpg") center / cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero-restaurante::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content-restaurante{
  position:relative;
  z-index:2;
  text-align:center;
  max-width: 750px;
  padding: 0 20px;
}

.hero-restaurante h1{
  font-size:42px;
  font-weight:700;
  color:#d4af37;
}

.hero-restaurante p{
  margin-top:12px;
  font-size:16px;
  color:#e5e5e5;
}

/* SECCIONES */
.section-restaurante,
.section{
  width: 100%;
  padding: 55px 8% 10px;
  background: #F0F8E8;
}

.section-restaurante:first-of-type,
.section:first-of-type{
  padding-top: 80px;
}

.section-restaurante:last-of-type,
.section:last-of-type{
  padding-bottom: 80px;
}

.section-restaurante h2,
.section h2{
  text-align:center;
  font-size:38px;
  font-weight:700;
  color:#004600;
  margin-bottom:25px !important;
}

.section-restaurante h2,
.section h2{
  text-align:center;
  font-size:38px;
  font-weight:700;
  color:#004600;
  margin-bottom:60px;
}

.section-restaurante h2::after,
.section h2::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 4px auto 0;
  border-radius: 2px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
  max-width: 1400px;
  margin: 0 auto;
}

/* CARD */
.card-restaurante{
  background: #ffffff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display:flex;
  flex-direction:column;
}

.card-restaurante:hover{
  transform: translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.card-restaurante img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content{
  padding:25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3{
  font-size:20px;
  color: #004600;
  margin-bottom:12px;
  font-weight:600;
}

.card-content p{
  font-size:14px;
  line-height:1.6;
  color: #9b7f25;
  flex-grow: 1;
}

.price{
  margin-top:12px;
  font-weight:600;
  color: #003200;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-restaurante,
  .section {
    padding: 70px 5%;
  }

  .section-restaurante h2,
  .section h2 {
    font-size: 30px;
  }
  
  .hero-restaurante {
    height: 360px;
  }

  .hero-restaurante h1 {
    font-size: 32px;
  }

  .hero-restaurante p {
    font-size: 15px;
  }
}

/* CARRUSEL CON FLECHAS - SOLO CSS */
.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-wrapper input[type="radio"] {
  display: none;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* NAVEGACIÓN - CÓCTELES */
#slide1:checked ~ .carousel-container .carousel-track {
  transform: translateX(0%);
}

#slide2:checked ~ .carousel-container .carousel-track {
  transform: translateX(-100%);
}

#slide3:checked ~ .carousel-container .carousel-track {
  transform: translateX(-200%);
}

#slide4:checked ~ .carousel-container .carousel-track {
  transform: translateX(-300%);
}

/* FLECHAS - ESTILO BOQUILLAS < > */
.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 120px);
  left: -60px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.arrow {
  pointer-events: all;
  display: none;
  background: transparent;
  color: #d4af37;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 60px;
  line-height: 50px;
  text-align: center;
  transition: all 0.3s ease;
  user-select: none;
  font-weight: 300;
  border: none;
}

.arrow:hover {
  color: #c8a35f;
  transform: scale(1.2);
}

.arrow:active {
  transform: scale(0.9);
}

/* MOSTRAR FLECHAS SEGÚN SLIDE ACTIVO - CÓCTELES */
#slide1:checked ~ .carousel-arrows label[data-prev="4"],
#slide1:checked ~ .carousel-arrows label[data-next="1"] {
  display: block;
}

#slide2:checked ~ .carousel-arrows label[data-prev="1"],
#slide2:checked ~ .carousel-arrows label[data-next="2"] {
  display: block;
}

#slide3:checked ~ .carousel-arrows label[data-prev="2"],
#slide3:checked ~ .carousel-arrows label[data-next="3"] {
  display: block;
}

#slide4:checked ~ .carousel-arrows label[data-prev="3"],
#slide4:checked ~ .carousel-arrows label[data-next="4"] {
  display: block;
}

/* NAVEGACIÓN - COMIDAS */
#comidas-slide1:checked ~ .carousel-container .carousel-track {
  transform: translateX(0%);
}

#comidas-slide2:checked ~ .carousel-container .carousel-track {
  transform: translateX(-100%);
}

#comidas-slide3:checked ~ .carousel-container .carousel-track {
  transform: translateX(-200%);
}

#comidas-slide4:checked ~ .carousel-container .carousel-track {
  transform: translateX(-300%);
}

/* MOSTRAR FLECHAS SEGÚN SLIDE ACTIVO - COMIDAS */
#comidas-slide1:checked ~ .carousel-arrows label[data-prev="4"],
#comidas-slide1:checked ~ .carousel-arrows label[data-next="1"] {
  display: block;
}

#comidas-slide2:checked ~ .carousel-arrows label[data-prev="1"],
#comidas-slide2:checked ~ .carousel-arrows label[data-next="2"] {
  display: block;
}

#comidas-slide3:checked ~ .carousel-arrows label[data-prev="2"],
#comidas-slide3:checked ~ .carousel-arrows label[data-next="3"] {
  display: block;
}

#comidas-slide4:checked ~ .carousel-arrows label[data-prev="3"],
#comidas-slide4:checked ~ .carousel-arrows label[data-next="4"] {
  display: block;
}

@media (max-width: 768px) {
  .carousel-page {
    grid-template-columns: 1fr;
  }
  
  .carousel-arrows {
    width: calc(100% + 80px);
    left: -40px;
  }
  
  .arrow {
    font-size: 45px;
  }
}

/* =====================================
   MOVIL-RESTAURANTE
===================================== */
@media (max-width: 768px) {

  /* HERO */
  .hero-restaurante {
    height: 300px;
  }

  .hero-restaurante h1 {
    font-size: 28px;
  }

  .hero-restaurante p {
    font-size: 14px;
  }

  /* SECCIÓN */
  .section-restaurante,
  .section {
    padding: 40px 4%;
  }

  .section-restaurante h2,
  .section h2 {
    font-size: 26px;
    margin-bottom: 30px !important;
  }

  /* CARRUSEL - 1 card por fila */
  .carousel-page {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* CARD */
  .card-restaurante img {
    height: 180px;
  }

  .card-content h3 {
    font-size: 17px;
  }

  .card-content p {
    font-size: 13px;
  }

  /* FLECHAS */
  .carousel-arrows {
    width: calc(100% + 60px) !important;
    left: -30px !important;
  }

  .arrow {
    font-size: 40px !important;
  }
}


/* =====================================
   MEMBRESÍA
===================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

.body-membresia{
  background: #F0F8E8;
  color:#000;
  padding-bottom: 80px;
}

/* HERO - BANNER */
.hero-membresia{
  height:420px;
  background:url("img/membresia-hero.jpg") center / cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero-membresia::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content-membresia{
  position:relative;
  z-index:2;
  text-align:center;
  max-width: 750px;
  padding: 0 20px;
}

.hero-membresia h1{
  font-size:42px;
  font-weight:700;
  color:#d4af37;
}

.hero-membresia p{
  margin-top:12px;
  font-size:16px;
  color:#e5e5e5;
}

/* SECCIÓN */
.section-membresia{
  width: 100%;
  padding: 80px 8% 80px;
  background: #F0F8E8;
}

/* GRID DE CARDS */
.grid-membresia{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

/* CARD BASE */
.card-membresia{
  background: #ffffff;
  border-radius:18px;
  padding: 40px 30px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  border: 2px solid transparent;
}

.card-membresia:hover{
  transform: translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

/* CARD PREMIUM */
.card-membresia.premium{
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
}

/* BADGE RECOMENDADO */
.badge-membresia{
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* TÍTULO DE LA MEMBRESÍA */
.card-membresia h3{
  font-size:28px;
  color: #004600;
  margin-bottom:20px;
  font-weight:700;
  min-height:42px;
}

/* ========= PRECIO (CORREGIDO) ========= */
.price-membresia{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 13px;          /* ← separación entre precio y /mes */
  margin-bottom:20px;
}


.price-membresia strong{
  font-size:48px;
  font-weight:700;
  color:#d4af37;
  line-height:48px;
  min-width:130px;
  text-align:center;
}

.price-membresia span{
  font-size:16px;
  line-height:16px;
  color:#7a6a5e;
}
/* ==================================== */

/* CARACTERÍSTICAS */
.features-membresia{
  list-style:none;
  margin:30px 0;
  width:100%;
  flex-grow:1;
}

.features-membresia li{
  padding:12px 0;
  font-size:15px;
  color:#000000;
  border-bottom:1px solid #f0f0f0;
  text-align:left;
  line-height:1.6;
}

.features-membresia li:last-child{
  border-bottom:none;
}

/* BOTÓN */
.card-membresia button{
  width:100%;
  padding:14px 30px;
  border:none;
  border-radius:30px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color:#001e00;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition: all 0.3s ease;
  margin-top:auto;
}

.card-membresia button:hover{
  background: linear-gradient(135deg, #b8962e, #9f8125);
  color:#ffffff;
  transform: scale(1.05);
}

/* PREMIUM BUTTON */
.card-membresia.premium button{
  background: linear-gradient(135deg, #001e00, #001e00);
  color:#d4af37;
  font-weight:700;
}

.card-membresia.premium button:hover{
  background: linear-gradient(135deg, #011a01, #011a01);
  color:#ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-membresia{
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* =====================================
   MOVIL-MEMBRESIA
===================================== */
@media (max-width: 768px) {

  /* HERO */
  .hero-membresia {
    height: 360px;
  }

  .hero-membresia h1 {
    font-size: 28px;
  }

  .hero-membresia p {
    font-size: 14px;
  }

  /* SECCIÓN */
  .section-membresia {
    padding: 40px 3%;
  }

  /* GRID - 2 columnas */
  .grid-membresia {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  /* CARD */
  .card-membresia {
    padding: 20px 12px !important;
    border-radius: 14px !important;
  }

  /* TÍTULO */
  .card-membresia h3 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
    min-height: auto !important;
  }

  /* PRECIO */
  .price-membresia strong {
    font-size: 28px !important;
    min-width: auto !important;
  }

  .price-membresia span {
    font-size: 13px !important;
  }

  .price-membresia {
    gap: 6px !important;
    margin-bottom: 12px !important;
  }

  /* LISTA */
  .features-membresia {
    margin: 15px 0 !important;
  }

  .features-membresia li {
    font-size: 11px !important;
    padding: 8px 0 !important;
    line-height: 1.5 !important;
  }

  /* BOTÓN */
  .card-membresia button {
    font-size: 12px !important;
    padding: 10px 8px !important;
    border-radius: 20px !important;
  }

  /* BADGE */
  .badge-membresia {
    font-size: 9px !important;
    padding: 4px 10px !important;
  }
}





/* ============================================
   CHATBOT LUMIBOT - ESTILO ACTUALIZADO
   ============================================ */

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

#chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#chatbot-toggle:hover {
  background: #b8941f;
  transform: scale(1.1);
}

#chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--blanco);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

#chatbot-header {
  background: var(--dorado);
  color: var(--blanco);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#chatbot-close {
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f9f9f9;
}

/* Wrapper para mensaje + ícono */
.message-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
}

.message-wrapper.bot {
  justify-content: flex-start;
}

.message-wrapper.user {
  justify-content: flex-end;
}

/* Ícono de la Máscara Inca SIN círculo de fondo */
.bot-icon-circle {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bot-icon-circle svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Bocadillo de mensaje */
.message {
  margin-bottom: 0;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 75%;
  word-wrap: break-word;
}

.message.user {
  background: var(--dorado);
  color: var(--blanco);
}

.message.bot {
  background: #e0e0e0;
  color: #000000;
}

/* Texto en negrita */
.message strong {
  font-weight: 700;
  color: #004600;
}

.message.user strong {
  color: #ffffff;
}

/* Botón de WhatsApp dentro del mensaje */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  font-size: 14px;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Botones de opciones */
.message-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 15px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.option-btn {
  padding: 10px 20px;
  background: #d4af37;
  color: #001e00;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.option-btn:hover {
  background: #b8962e;
  color: #fff;
  transform: scale(1.05);
}

.option-btn:active {
  transform: scale(0.95);
}

#chatbot-input-container {
  display: flex;
  padding: 15px;
  background: var(--blanco);
  border-top: 1px solid #ddd;
}

#chatbot-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

#chatbot-send {
  background: var(--dorado);
  color: var(--blanco);
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

#chatbot-send:hover {
  background: #b8941f;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  #chatbot-window {
    width: 90vw;
    height: 70vh;
    bottom: 80px;
    right: 5vw;
  }

  #chatbot-container {
    right: 10px;
    bottom: 15px;
  }

  #chatbot-toggle {
    width: 55px;
    height: 55px;
  }
  
  .option-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .bot-icon-circle {
    width: 40px;
    height: 40px;
  }
  
  .message {
    max-width: 70%;
  }
  
  .whatsapp-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ── Responsive para móvil ── */
@media (max-width: 768px) {

  /* Botón flotante */
  #chatbot-container {
    right: 10px;
    bottom: 12px;
  }

  #chatbot-toggle {
    width: 44px;
    height: 44px;
  }

  #chatbot-toggle svg {
    width: 22px;
    height: 22px;
  }

  /* Ventana del chat - tamaño original */
  #chatbot-window {
    width: 80vw;
    height: 55vh;
    bottom: 60px;
    right: 0;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Header */
  #chatbot-header {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  #chatbot-close {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }

  /* Mensajes */
  #chatbot-messages {
    padding: 10px;
  }

  .message-wrapper {
    gap: 6px;
    margin-bottom: 10px;
  }

  .bot-icon-circle {
    width: 30px;
    height: 30px;
  }

  .message {
    padding: 8px 12px;
    font-size: 0.78rem;
    max-width: 72%;
    border-radius: 14px;
  }

  /* Botones de opciones */
  .message-buttons {
    gap: 6px;
    padding: 8px 10px;
  }

  .option-btn {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  /* WhatsApp btn */
  .whatsapp-btn {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .whatsapp-btn svg {
    width: 15px;
    height: 15px;
  }

  /* Input - ajustado para que quepa dentro del ancho */
  #chatbot-input-container {
    padding: 8px 10px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
  }

  #chatbot-input {
    padding: 7px 10px;
    font-size: 0.75rem;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
  }

  #chatbot-send {
    padding: 7px 10px;
    font-size: 0.75rem;
    margin-left: 6px;
    flex-shrink: 0;
  }
}



/* ============================================
   PARA CAMBIO DE IDIOMA
   ============================================ */

.language-switcher {
    position: absolute;
    top: 15px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.language-switcher button {
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    font-size: 16px;
    color: #001e00;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.language-switcher button:hover {
    color: #D4AF37;
}

.language-switcher button.active {
    color: #D4AF37;
}

/* ============================================
   MÓVIL - COMPLETO
   ============================================ */

/* Oculta el header del menú en laptop */
.nav-mobile-header {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 600;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #001e00;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #001e00;
    cursor: pointer;
    align-self: flex-end;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 550;
}

.nav-overlay.active {
    display: block;
}

@media (max-width: 768px) {

    /* ── FRANJA VERDE ── */
    .sticky-top {
        display: flex !important;
        flex-direction: column !important;
        background: #2a310c !important;
    }

    .language-switcher {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0.4rem 1rem !important;
        box-sizing: border-box !important;
        background: transparent !important;
        z-index: auto !important;
    }

    /* Inactivo = verde */
    .language-switcher button {
        color: #001e00 !important;
        font-size: 0.85rem !important;
    }

    /* Activo = dorado */
    .language-switcher button.active {
        color: #D4AF37 !important;
        font-weight: 700 !important;
    }

    .top-bar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        padding: 0.2rem 1rem 0.5rem 1rem !important;
        gap: 0.4rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: transparent !important;
    }

    .top-bar-item {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .top-bar-item svg {
        width: 12px !important;
        height: 12px !important;
    }

    .btn-llamar {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.65rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .btn-llamar svg {
        width: 11px !important;
        height: 11px !important;
    }

    .header {
        position: relative;
        top: auto !important;
    }

    /* ── HAMBURGUESA ── */
    .hamburger {
        display: flex !important;
    }

    /* ── MENÚ FULLSCREEN ── */
   .nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
    gap: 0 !important;
    display: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
    max-height: none !important;
    overflow: hidden !important;
    z-index: 9999 !important;
}

.nav.active {
    display: flex !important;
}

    .nav-mobile-header {
    display: none !important;
    }

    .nav-mobile-header img {
        height: 40px !important;
        width: auto !important;
    }

    .nav-mobile-header button {
        background: none !important;
        border: none !important;
        font-size: 1.8rem !important;
        color: #001e00 !important;
        cursor: pointer !important;
        padding: 0 !important;
    }

    /* Oculta el botón cerrar viejo */
    .nav-close {
        display: none !important;
    }

    .nav > a,
    .nav-item,
    .nav-item > a {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #001e00 !important;
        box-sizing: border-box !important;
        display: block !important;
        text-align: left !important;    /* ← todos alineados a la izquierda */
    }

    .nav-item {
        padding: 0 !important;          /* ← quita el padding del div contenedor */
        border-bottom: none !important; /* ← solo el <a> interno tiene borde */
    }

    .nav-item > a {
        border-bottom: 1px solid #f0f0f0 !important;
    }

    /* ── BOTÓN RESERVA ── */
    .btn-reserva {
    margin: 1rem auto !important;
    width: 60% !important;
    text-align: center !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.95rem !important;
    display: block !important;
    text-align-last: center !important;
   }

    /* ── SUBMENÚ ── */
    .menu-vertical {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        min-width: 100% !important;
        padding: 0 !important;
        background: #f5f5f5 !important;
        display: none !important;
    }

    .menu-vertical.active {
        display: block !important;
    }

    .nav-item:hover .menu-vertical {
        display: none !important;
    }

    .nav-item.active .menu-vertical {
        display: block !important;
    }

    .menu-vertical li a {
        padding: 0.8rem 2.5rem !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid #e8e8e8 !important;
        white-space: normal !important;
    }
}