/* ============================ */
/* NAVBAR GENERAL Y RESPONSIVE */
/* ============================ */

:root {
  /* Ajusta a la altura real de tu header (incluido padding/margen) */
  --header-offset: 84px;

  /* Colores para tema claro */
  --bg: #ffffff;
  --fg: #333333;

  /* Transición suave */
  --transition: background-color .25s ease, color .25s ease;
}

/* Tema oscuro: solo sobreescribe variables */
[data-theme="dark"] {
  --bg: #121212;
  --fg: #e0e0e0;
}

/* Aplicación global de variables */
* {
  box-sizing: border-box;
  transition: var(--transition);
}

html {
  scroll-padding-top: var(--header-offset);
}

body {
  background-color: var(--bg);
  color: var(--fg);
}

/* Para anclajes invisibles debajo del header */
section[id]::before {
  content: "";
  display: block;
  height: var(--header-offset);
  margin-top: calc(-1 * var(--header-offset));
  visibility: hidden;
}

/* Tu logo base, etc. */
.logo { height: 60px; width: auto; }

/* 2. Aplicación global (sin tocar tu menú) */
* {
  transition: var(--transition);
  box-sizing: border-box;
}



/* Para navegadores que sí respetan scroll-padding-top */
html {
  scroll-padding-top: var(--header-offset);
}

/* Pseudo-elemento invisible antes de cada sección anclada */
section[id]::before {
  content: "";
  display: block;
  height: var(--header-offset);
  margin-top: calc(-1 * var(--header-offset));
  visibility: hidden;
}


/* Logo base */
.logo {
  height: 60px;
  width: auto;
}

/* ================= */
/* NAVBAR ESTILO BASE */
/* ================= */
.navbar {
  z-index: 1000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 0;
  background-color: rgba(3, 29, 56, 0.8);
  transition: background-color 0.3s ease;
}
/* Asegura que el contenedor de la navbar distribuya el espacio correctamente */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Empuja el botón hamburguesa hacia el extremo derecho */
.navbar-toggler {
  margin-left: auto;
}
/* Marca: texto + logo */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .hidden-text {
  opacity: 0;
  margin-left: 0.5rem;
  transition: opacity 0.3s ease;
}

/* Enlaces del Navbar */
.navbar-link {
  color: #E9CD91 !important;
  font-size: 1rem;
  text-align: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

/* Hover y active */
.navbar-link:hover,
.navbar-link.active {
  color: #ffffff !important;
  text-decoration: underline;
}

/* ================= */
/* BOTÓN HAMBURGUESA */
/* ================= */
.custom-toggler .navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 3px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #E9CD91;
  transition: all 0.3s ease-in-out;
}

.custom-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.custom-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ========================= */
/* DISPOSITIVOS PEQUEÑOS    */
/* (MÓVILES Y TABLETS)      */
/* ========================= */
@media (max-width: 991px) {
  .navbar {
    background-color: #031D38;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  body {
    padding-top: 80px;
  }

  .navbar-brand img {
    max-height: 50px;
  }

  /* Estilo del icono de modo oscuro en dispositivos pequeños */
  #theme-toggle-mobile {
    margin-top: 15px; /* Separación de la parte superior */
    margin-left: auto;
    margin-right: auto;
    display: block; /* Centrado en el móvil */
    width: 40px;
    height: 40px;
    border: 2px solid #E9CD91;
    border-radius: 50%;
    padding: 8px;
    color: #E9CD91;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  /* Icono de modo oscuro */
  #theme-toggle-mobile i {
    font-size: 20px; /* Icono más pequeño */
  }

  #theme-toggle-mobile:hover {
    background-color: #E9CD91;
    color: #031D38;
  }
}

/* ========================= */
/* DISPOSITIVOS GRANDES     */
/* (ESCRITORIO)             */
/* ========================= */
@media (min-width: 992px) {
  .navbar {
    background-color: rgba(3, 29, 56, 0.8);
  }

  .navbar-brand img {
    max-height: 60px;
  }

  /* Estilo del icono de modo oscuro en escritorio */
  #theme-toggle {
    margin-top: 15px; /* Separación de la parte superior */
    width: 40px;
    height: 40px;
    border: 2px solid #E9CD91;
    border-radius: 50%;
    padding: 8px;
    color: #E9CD91;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  /* Icono de modo oscuro */
  #theme-toggle i {
    font-size: 20px; /* Icono más pequeño */
  }

  #theme-toggle:hover {
    background-color: #E9CD91;
    color: #031D38;
  }
}
/* =============================== */
/* BOTÓN MODO OSCURO SIN CONTAINER */
/* =============================== */
#theme-toggle,
#theme-toggle-mobile {
  /* Elimina todos los estilos por defecto */
  all: unset;
  /* Hace que el botón sea un contenedor en línea y centra el icono */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Color inicial: amarillo */
  color: #E9CD91;
  transition: color 0.3s ease;
}

#theme-toggle i,
#theme-toggle-mobile i {
  /* Tamaño y alineación del icono */
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  color: inherit;  /* Hereda el color amarillo del contenedor */
  transition: color 0.3s ease;
}

/* Hover: cambia el color a blanco */
#theme-toggle:hover i,
#theme-toggle-mobile:hover i {
  color: #ffffff;
}

/* Opcionales para el espaciado en el menú */
@media (min-width: 992px) {
  #theme-toggle {
    margin-left: 1rem; /* Espaciado a la izquierda en dispositivos grandes */
  }
}

@media (max-width: 991px) {
  #theme-toggle-mobile {
    margin-top: 1rem; /* Espaciado superior en dispositivos pequeños */
  }
}

/* ============================ */
/* Selectores de idioma (navbar) */
/* ============================ */
.navbar .dropdown-toggle {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #E9CD91 !important;
  border: none;
  background: transparent;
  transition: color 0.3s ease;
}

.navbar .dropdown-toggle:hover {
  color: #ffffff !important;
}

.navbar .dropdown-menu {
  background-color: rgba(3,29,56,0.95);
  border: none;
  min-width: 4rem;
}

.navbar .dropdown-item {
  color: #E9CD91;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: rgba(233,205,145,0.1);
  color: #ffffff;
}

/* Asegura que en móvil no sea demasiado grande */
@media (max-width: 991px) {
  .navbar .dropdown-toggle,
  .navbar .dropdown-item {
    font-size: 1rem;
    text-align: center;
  }
}


/* Hero Section */
.header-hero {
  background-image:  url("../img/jpg/pueto.webp");
  background-size: cover;
  height: 100vh;
  position: relative;
}

/* Contenedor central */
.content-box {
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

/* Logo hero */
.logo-hero {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Ajuste de desplazamiento */
section {
  padding-top: 70px; /* Asegura que no se tapen los títulos del contenido */
}

/* Estilos predeterminados (Modo Claro) */
body {
    background-color: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

/* Modo oscuro */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

a, .navbar, .footer, .card {
    transition: all 0.3s ease;
}

/* Estilo de los enlaces y elementos en el modo oscuro */
body.dark-mode a,
body.dark-mode .navbar,
body.dark-mode .footer {
    color: #ffffff;
}

body.dark-mode .card {
    background-color: #2c2c2c;
    color: #e0e0e0;
}

/* Ajustes adicionales para los colores de fondo y botones */
body.dark-mode .btn {
    background-color: #333;
    color: #fff;
}

body.dark-mode .btn:hover {
    background-color: #555;
}

/* ============================ */
/* TIPOGRAFÍAS Y ESTILOS GENERALES */
/* ============================ */
body {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', cursive;
  color: white;
  text-align: center;
}

h2 {
  margin-bottom: 40px;
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E9CD91;
  margin: 10px auto 0;
  border-radius: 5px;
}

.bg-grey-corp {
  background-color: #EDEDED;
}

/* Utilidades de espaciado */
.p-top-1 { padding-top: 1rem; }
.p-top-2 { padding-top: 2rem; }
.p-top-3 { padding-top: 3rem; }
.p-top-4 { padding-top: 4rem; }

.m-top-1 { margin-top: 1rem; }
.m-top-2 { margin-top: 2rem; }
.m-top-3 { margin-top: 3rem; }
.m-top-4 { margin-top: 4rem; }



/* Texto descriptivo */
.text-description {
  color: white;
}
#sobre h2 {
    text-align: center;
    font-family: 'Bebas Neue';
    font-size: 3rem;
      color: #E9CD91; /* blanco */
      margin-bottom: 1rem;
}
    h1 {
      font-size: 2.5rem;
    }
    h2 {
      font-size: 2.5rem;
    }
    h3 {
      font-size: 1.8rem;
    }





#galeria h2 {
     text-align: center;
    font-family: 'Bebas Neue';
    font-size: 3rem;
      color: #E9CD91; 
      margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  #detalle-zona .row:nth-child(1) .col-md-8 img {
    margin-bottom: 10px; /* Reduce el margen inferior de la imagen */
    margin-top: 10px; /* Añade margen superior si es necesario */
  }

  #detalle-zona .row:nth-child(2) .col-md-4 img {
    margin-bottom: 10px; /* Ajusta el margen de las imágenes pequeñas */
  }

  #detalle-zona .row:nth-child(2) .col-md-8 > div {
    margin-top: 20px; /* Añade margen superior al texto del párrafo */
    padding-top: 20px; /* Alternativamente, usa padding */
  }
}


/* Estilo para dispositivos grandes (≥768px) */
@media (min-width: 768px) {
  #caracteristicas .container {
    display: flex; /* Organiza en una fila horizontal */
    flex-wrap: nowrap; /* Evita que los elementos se dispongan en múltiples filas */
    justify-content: space-between; /* Espaciado uniforme entre los elementos */
    align-items: center; /* Centra los elementos verticalmente */
  }

  #caracteristicas .caracteristica {
    flex: 1; /* Asigna proporciones iguales */
    text-align: center; /* Centra el contenido */
  }
}
.caracteristica {
    transition: transform 0.3s ease, color 0.3s ease;
}

.caracteristica:hover {
    transform: scale(1.05); /* Amplía ligeramente el tamaño */
    color: #E9CD91; /* Cambia el texto a amarillo corporativo */
}


/* Equipamientos y Servicios */
#equipamiento-servicios h2 {
    font-size: 2.2rem; /* Tamaño del título principal */
    color: #E9CD91; /* Amarillo corporativo */
    text-align: center; /* Centrado del título */
    margin-bottom: 2rem; /* Espaciado inferior */
}

#equipamiento-servicios h3 {
    font-size: 1.7rem; /* Tamaño de los subtítulos */
    color: #02A5B5; /* Turquesa corporativo */
    text-align: center; /* Subtítulos centrados */
    margin-top: 1rem; /* Espaciado superior */
    margin-bottom: 1rem; /* Espaciado inferior */
}

#equipamiento-servicios ul {
    font-size: 1rem; /* Tamaño estándar del texto de las listas */
    margin-top: 1rem; /* Espaciado superior entre título y lista */
    text-align: left; /* Alineación izquierda predeterminada */
}

#equipamiento-servicios ul li {
    margin-bottom: 0.5rem; /* Espaciado entre cada elemento de la lista */
}

/* Elementos no disponibles */
.text-muted.text-decoration-line-through {
    color: #999999; /* Color gris para servicios no disponibles */
    font-style: italic; /* Cursiva para diferenciación visual */
}

/* Responsividad para dispositivos pequeños */
@media (max-width: 767.98px) {
    #equipamiento-servicios h3 {
        text-align: center; /* Centra los subtítulos en dispositivos pequeños */
    }

    #equipamiento-servicios ul {
        text-align: center; /* Centra las listas en dispositivos pequeños */
    }
}

/* Elementos no disponibles */
.text-muted.text-decoration-line-through {
    color: #999999; /* Color gris para elementos no disponibles */
    font-style: italic; /* Diferenciación visual */
}

/* Responsividad para dispositivos pequeños */
@media (max-width: 767.98px) {
    #equipamiento-servicios .row {
        justify-content: center; /* Centra las columnas en las filas */
    }

    #equipamiento-servicios .col-md-4 {
        text-align: center; /* Centra el contenido */
        margin-bottom: 20px; /* Espaciado inferior entre las columnas */
    }

    #equipamiento-servicios h3 {
        margin-top: 10px; /* Separación adicional para los títulos */
    }

    #equipamiento-servicios ul li {
        font-size: 0.9rem; /* Ajuste de tamaño para dispositivos pequeños */
    }
}

/* Hover dinámico en los títulos h3 */
#equipamiento-servicios h3:hover {
    transform: translateY(-5px); /* Eleva ligeramente el título */
    transition: all 0.3s ease; /* Transición suave */
    color: #E9CD91; /* Cambia el color al amarillo corporativo */
}

/* Ícono dentro del h3 dinámico */
#equipamiento-servicios h3 i {
    transition: transform 0.3s ease, color 0.3s ease; /* Transición fluida */
}

#equipamiento-servicios h3:hover i {
    transform: scale(1.2); /* Aumenta el tamaño del ícono */
    color: #E9CD91; /* Ícono cambia al amarillo corporativo */
}

/* Títulos cercanos */
#sitios-cercanos h2 {
    font-size: 2.5rem; /* Tamaño más destacado */
    color: #E9CD91; /* Amarillo corporativo */
    text-align: center; /* Centrado global */
    margin-bottom: 2rem; /* Espaciado inferior */
}

#sitios-cercanos h3 {
    color: #02A5B5; /* Turquesa corporativo */
    font-size: 2rem; /* Tamaño destacado */
    margin-top: 2rem; /* Espaciado superior */
    margin-bottom: 1rem; /* Espaciado inferior */
    text-align: center; /* Centrado global */
}

#sitios-cercanos h5 {
    display: flex; /* Alinear íconos con el texto */
    align-items: center;
    font-size: 1.2rem; /* Ajuste de tamaño */
    margin-bottom: 1rem; /* Espaciado inferior */
    color: #02A5B5; /* Turquesa corporativo */
}

#sitios-cercanos h5 i {
    margin-right: 0.5rem; /* Espaciado entre el ícono y el texto */
}

/* Estilo para las tarjetas de sitios cercanos */
#sitios-cercanos .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave para el tamaño y sombra */
}

#sitios-cercanos .card:hover {
    transform: scale(1.05); /* Aumenta ligeramente el tamaño en hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Sombra más profunda y prominente */
    z-index: 1; /* Eleva la carta sobre las demás al hacer hover */
    border-radius: 10px; /* Bordes redondeados para un efecto más suave */
}

#sitios-cercanos .card-title {
    font-size: 1.2rem; /* Ajuste de tamaño */
    color: #02A5B5; /* Turquesa corporativo */
}

#sitios-cercanos .card-img-top {
    height: 200px; /* Ajusta la altura */
    object-fit: cover; /* Recorta la imagen manteniendo el enfoque */
}
    

    /* Colores corporativos */
    .bg-corporate {
      background-color: #02A5B5; /* Fondo teal */
      color: #FFFFFF; /* Texto blanco */
    }
    .btn-primary {
      background-color: #02A5B5;
      border-color: #02A5B5;
      color: #FFFFFF; /* Texto blanco */
    }
    .btn-primary:hover {
      background-color: #FBD217; /* Amarillo corporativo */
      border-color: #FBD217;
      color: #000000; /* Texto negro */
    }
    .text-corporate-yellow {
      color: #E9CD91;
    }

    /* Espaciado y diseño de imágenes */
    .img-fluid {
      max-height: 500px; /* Evita imágenes demasiado grandes */
      object-fit: cover;
    }


.text-corporate {
  color: #02A5B5; /* Azul turquesa corporativo */
}

.card-title i {
  color: #02A5B5; /* Icono turquesa para consistencia */
}

.card {
  border: none;
}

.card:hover {
  transform: scale(1.02); /* Efecto al pasar el ratón */
  transition: transform 0.3s ease-in-out;
}


/* Títulos en amarillo corporativo */
h2.text-corporate-yellow {
  color: #E9CD91; /* Amarillo corporativo */
  
}


.actividades-populares {
    margin-top: 4rem;
    margin-bottom: 4rem;
  position: relative;
  background-image: url("../img/jpg/tortugas.webp");
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  background-position: center center;
  padding: 60px 0;
  color: #fff;
}

/* Capa oscura translúcida sobre la imagen */
.actividades-populares::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Fondo oscuro con opacidad */
  z-index: 1;
}

/* Contenido dentro, sobre la capa oscura */
.actividades-populares .container {
  position: relative;
  z-index: 2;
}

/* Títulos y textos */
.actividades-populares h3,
.actividades-populares h5,
.actividades-populares p {
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Si quieres destacar algunos textos en turquesa */
.actividades-populares .text-corporate {
  color: #02A5B5;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}


/* Hover en enlaces del formulario y mapa */
.nav-link:hover, 
.btn-primary:hover {
  color: #E9CD91 !important; /* Amarillo corporativo para hover */
  background-color: transparent !important; /* Sin fondo para botones */
  border-color: #E9CD91 !important; /* Si es un botón con borde */
}

/* Botón en estado normal */
.btn-primary {
  background-color: #02A5B5; /* Turquesa corporativo */
  color: #ffffff; /* Texto blanco */
  border: none; /* Sin borde adicional */
  transition: all 0.3s ease-in-out; /* Suaviza la transición entre estados */
}


/* Botón en estado hover */
.btn-primary:hover {
  background-color: #028A96; /* Turquesa más oscuro para el hover */
  color: #E9CD91; /* Texto en amarillo corporativo durante el hover */
  border: none; /* Sin borde */
}


/* Centrar los textos de la información de contacto */
.contact-info, .contact-phone, .contact-email, .social-media {
  text-align: center; /* Centra el contenido */
}
@media (max-width: 768px) {
      #contacto .col-md-6:last-child {
        margin-top: 2rem !important;
      }
    }

/* Ajustar el tamaño del texto turquesa */
/* Estilo del enlace del teléfono */
.contact-link {
  color: #000000; /* Color negro para el texto */
  text-decoration: underline; /* Subrayado */
  text-decoration-color: #E9CD91; /* Subrayado en amarillo corporativo */
  font-size: 1rem; /* Tamaño de fuente moderado */
  font-weight: bold; /* Negrita */
}

.contact-link:hover {
  text-decoration-color: #D7A866; /* Subrayado más oscuro en hover */
}
.contact-phone p, .contact-email p {
  font-size: 1rem; /* Reduce el tamaño del texto turquesa */
  
}

/* Tamaño reducido para los h3 */
.contact-info h3, 
.contact-phone h3, 
.contact-email h3, 
.social-media h3 {
  font-size: 1.45rem; /* Reduce el tamaño de los h3 */
  
 
  margin-bottom: 10px; /* Espaciado inferior ajustado */
}



/* Contenedor general de redes sociales */
.social-media {
  margin-top: 20px; /* Espaciado superior */
  text-align: center; /* Centra horizontalmente el contenido */
}

/* Iconos SVG: Estilo genérico */
.social-icon {
  height: auto; /* Mantiene proporciones */
  display: inline-block; /* Asegura alineación adecuada */
  vertical-align: middle; /* Centra verticalmente los iconos */
  filter: grayscale(100%); /* Escala de grises por defecto */
  opacity: 0.8; /* Apariencia sutil */
  transition: all 0.3s ease-in-out; /* Transición suave en hover */
}

/* Ancho específico para cada icono */
.instagram-icon {
  width: 30px; /* Ancho del icono de Instagram */
}

.tripadvisor-icon {
  width: 40px; /* Ancho del icono de TripAdvisor */
}

/* Hover: cambia a amarillo corporativo */
.social-icon:hover {
  filter: grayscale(0%); /* Recupera color original */
  opacity: 1; /* Visibilidad completa */
  transform: scale(1.1); /* Ampliación ligera */
  fill: #E9CD91; /* Aplica amarillo corporativo */
}

/* Espaciado entre enlaces */
.social-link {
  margin-right: 15px; /* Separación entre iconos */
  text-decoration: none; /* Sin subrayado */
}

.social-link:last-child {
  margin-right: 0; /* Sin margen en el último icono */
}

/* Ajustes del mapa */
.map-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0; /* Sin márgenes laterales */
}

.map-container iframe {
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

.map-container .ratio {
  height: 40vh; /* Ajusta la altura del mapa */
  max-height: 350px; /* No exceder esta altura en pantallas grandes */
}

/* ============================ */
/* RESERVAS */
/* ============================ */

/* ====== Sección RESERVA AHORA ====== */
#reserva-ahora {
  background-color: #004165; /* azul corporativo sólido */
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 196, 204, 0.3);
  position: relative;
  overflow: hidden;
  color: white;
  padding: 2rem 2.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Texto general blanco */
#reserva-ahora p,
#reserva-ahora ul,
#reserva-ahora li {
  color: white;
  font-weight: 500;
  line-height: 1.5;
}

/* Primer nivel: V naranja */
#reserva-ahora ul.list-unstyled > li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.9em;
  font-size: 1.1rem;
}

#reserva-ahora ul.list-unstyled > li::before {
  content: "✔";
  color: #f7931e; /* naranja corporativo */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
}

/* Segundo nivel: punto cuadrado azul claro */
#reserva-ahora ul ul {
  list-style-type: none;
  margin-left: 1.7em;
  padding-left: 0;
}

#reserva-ahora ul ul > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  color: #a4dede;
  font-size: 1rem;
}

#reserva-ahora ul ul > li::before {
  content: "▪";
  color: #a4dede;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  font-size: 1.1em;
  line-height: 1;
}

/* Tercer nivel: guion celeste */
#reserva-ahora ul ul ul {
  list-style-type: none;
  margin-left: 1.5em;
  padding-left: 0;
}

#reserva-ahora ul ul ul > li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
  color: #cde9eb;
  font-size: 0.95rem;
}

#reserva-ahora ul ul ul > li::before {
  content: "–";
  color: #cde9eb;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  font-size: 1em;
  line-height: 1;
}

/* ===== Botones dentro de la sección ===== */
#reserva-ahora .btn-warning {
  background: #f7931e;
  border: none;
  transition: background-color 0.3s ease;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(247, 147, 30, 0.5);
}

#reserva-ahora .btn-warning:hover {
  background-color: #e17b12;
}

#reserva-ahora .btn-info {
  background: #00c4cc;
  border: none;
  transition: background-color 0.3s ease;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 196, 204, 0.5);
}

#reserva-ahora .btn-info:hover {
  background-color: #00a6aa;
}

#reserva-ahora .btn-outline-light {
  border-color: #d0f0f2;
  color: #d0f0f2;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

#reserva-ahora .btn-outline-light:hover {
  background-color: #d0f0f2;
  color: #004165;
  border-color: #d0f0f2;
}

/* ===== Modal de reserva ===== */
.modal-content {
  box-shadow: 0 0 30px #00c4ccaa;
  background: #004165 !important;
  color: white !important;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
}

.modal-content .btn-close {
  filter: invert(1);
}

/* Formulario SOLO dentro de sección o modal */
#reserva-ahora .form-control,
#reserva-ahora .form-label,
.modal-content .form-control,
.modal-content .form-label {
  color: white;
  background-color: #005a85;
  border: 1px solid #00c4cc;
  border-radius: 8px;
  font-weight: 500;
}

#reserva-ahora .form-control::placeholder,
.modal-content .form-control::placeholder {
  color: #bcdcdc;
}

#reserva-ahora .form-control:focus,
.modal-content .form-control:focus {
  border-color: #00c4cc;
  box-shadow: 0 0 8px #00c4cc66;
  background-color: #007aad;
  color: white;
}




/* Estilo General del Footer */
/* General del Footer */
.footer {
  background-color: #031D38;
  color: white;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

/* Fondo con la onda */
.footer-wave-background {
  background-image: url("../img/svg/onda.svg"); /* Asegúrate de poner la ruta correcta de la onda */
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 80px; /* Ajusta la altura del fondo según sea necesario */
  position: relative;
  z-index: 0;
}

/* Títulos del Footer */
.footer-title {
  color: #E9CD91;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Enlaces del Footer */
.footer-link {
  color: #E9CD91;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* Redes Sociales */
.social-link {
  font-size: 1.5rem;
  color: #E9CD91;
  margin-right: 10px;
}

.social-link:hover {
  color: white;
}

/* Línea Divisoria */
.footer-divider {
  border-top: 1px solid white;
  margin: 2rem 0;
}

/* Para asegurarse de que el contenido del footer tenga buena visibilidad */
.footer .container {
  position: relative;
  z-index: 2;
}

/* Botón de WhatsApp (flotante en la esquina inferior derecha) */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* Color verde de WhatsApp */
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

/*ESTILOS COCKIES*/
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: #0066cc;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 1rem;
}
.cc-window {
    background-color: #031D38 !important;
    font-family: 'Montserrat', sans-serif !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
  }
  .cc-message { color: #fff !important; font-size: 1rem !important; }
  .cc-btn {
    background-color: #E9CD91 !important;
    color: #000 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase !important;
  }
  .cc-btn:hover { background-color: #fff !important; }
  .cc-link {
    color: #02A5B5 !important;
    text-decoration: underline !important;
    margin-left: 0.5rem !important;
  }