 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    .hero-gradient {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(114, 53, 53, 0.6) 100%);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .card-hover {
      transition: all 0.3s ease;
    }

    .card-hover:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .btn-success:hover {
      background: #f3b302 !important;
    }

    /* Animation for booking form */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.5s ease-out forwards;
    }



    /* Custom CSS */

    /* Estilo base para los enlaces de navegación */
    .navbar-nav .nav-link {
      color: var(--bs-white) !important;
      position: relative;
      /* Necesario para posicionar el pseudo-elemento */
      padding-bottom: 0.25rem;
      /* Ajusta el espacio debajo del texto para la línea */
      overflow: hidden;
      /* Oculta la parte de la línea que aún no se ve */
      text-decoration: none;
      /* Asegura que no haya un subrayado predeterminado */
      transition: color 0.3s ease;
      /* Transición suave solo para el color del texto si cambia */
    }

    /* Pseudo-elemento para la línea de subrayado */
    .navbar-nav .nav-link::after {
      content: '';
      /* Obligatorio para pseudo-elementos */
      position: absolute;
      bottom: 0;
      /* Posiciona la línea en la parte inferior del enlace */
      left: 0;
      width: 100%;
      /* La línea abarca todo el ancho del enlace */
      height: 2px;
      /* Grosor de la línea */
      background-color: var(--bs-warning);
      /* Color de la línea (amarillo de Bootstrap) */
      transform: translateX(-100%);
      /* Inicialmente, la línea está fuera de la vista a la izquierda */
      transition: transform 0.3s ease-out;
      /* Animación de 300ms de izquierda a derecha */
      /* Puedes ajustar los milisegundos (0.3s) y el tipo de ease (ease-out, ease-in-out, linear) */
    }

    /* Estado hover y focus para la animación del subrayado */
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after {
      transform: translateX(0);
      /* Al hacer hover, la línea se mueve a su posición original */
    }

    /* Opcional: Cambiar el color del texto al hacer hover */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: var(--bs-warning) !important;
      /* Cambia el color del texto a warning también */
    }



    /* Asegúrate de que este CSS esté cargado después de Bootstrap si estás utilizando sus clases */

    /* Estilos base para el contenedor del switch */
    .language-switch {
      /* Puedes ajustar el color del texto si tu fondo de cabecera cambia */
      color: var(--bs-white);
      /* Usa la variable de color de Bootstrap */
      /* Flexbox para alinear el texto y el switch */
      display: flex;
      align-items: center;
      gap: 0.5rem;
      /* Espacio entre el texto ES/EN y el switch */
      font-size: 1rem;
      /* Ajusta el tamaño de la fuente si lo necesitas */
    }

    /* Ajustar el tamaño del switch si es necesario */
    .language-switch .form-check-input {
      height: 1.25em;
      /* Altura del switch */
      width: 2.25em;
      /* Ancho del switch */
      margin-left: 0;
      /* Elimina el margen izquierdo predeterminado si es necesario */
    }

    /* Estilos para el texto de los idiomas (ES/EN) */
    .language-switch .form-check-label {
      margin-bottom: 0;
      /* Elimina el margen inferior predeterminado de Bootstrap */
      display: flex;
      /* Para alinear ES y EN horizontalmente */
      gap: 0.25rem;
      /* Espacio entre ES y EN */
    }

    /* Ocultar el texto del idioma inactivo (opcional, para un look más limpio) */
    .language-switch .lang-es.hidden,
    .language-switch .lang-en.hidden {
      display: none;
    }

    /* Ajuste para mobile si el switch se ve apretado, usa media queries */
    @media (max-width: 767.98px) {
      .language-switch {
        /* Puedes ajustar la posición o el margen si está dentro del menú colapsable */
        justify-content: flex-end;
        /* Alinear a la derecha en móviles si está separado */
        width: 100%;
        /* Ocupar todo el ancho si es un elemento independiente */
        padding-right: 15px;
        /* Pequeño padding si está al final de una fila */
      }
    }

    /* Custom CSS for the hero section background image and gradient */
    .hero-section-bg {
      background-size: cover;
      background-position: center;
      position: relative;
      /* Para una transición suave al cambiar la imagen */
      transition: background-image 1s ease-in-out;
      min-height: 70vh;
      /* Ajusta la altura mínima para que se vea bien en diferentes pantallas */
      display: flex;
      /* Para centrar el contenido verticalmente */
      align-items: center;
      /* Centra el contenido verticalmente */
    }

    /* El pseudo-elemento para el degradado */
    .hero-section-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 0;
    }

    /* Para asegurar que el contenido esté por encima del degradado */
    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
      /* Asegura que el contenido ocupe el ancho del contenedor */
    }



    .info-bar-container {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1000px;
      padding: 1.5rem 2rem;
      background-color: var(--bs-white);
      border-radius: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-around;

      /* Media query para pantallas más pequeñas */
      @media (max-width: 767.98px) {
        padding: 1rem 1.5rem;
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        text-align: center;
      }
    }

    .info-bar-item {
      display: flex;
      align-items: center;
      color: var(--bs-black);
      white-space: nowrap;
      margin-right: 2rem;

      @media (max-width: 767.98px) {
        margin-right: 0;
        margin-bottom: 0.8rem;
        flex-direction: column;
      }
    }

    .info-bar-item:last-of-type {
      margin-right: 0;
    }

    .info-bar-item .icon-wrapper {
      width: 2.5rem;
      height: 2.5rem;
      border: 2px solid var(--bs-info);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      flex-shrink: 0;

      @media (max-width: 767.98px) {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }

    .info-bar-item .icon-wrapper .fas {
      color: var(--bs-info);
      font-size: 1.1rem;
    }

    .info-bar-item .info-text {
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .info-bar-item .info-value {
      font-weight: bold;
      color: var(--bs-info);
    }

    .info-bar-button .btn {
      min-width: 150px;
      font-weight: bold;
      padding: 0.75rem 1.5rem;

      @media (max-width: 767.98px) {
        width: 100%;
        margin-top: 0.5rem;
      }
    }


    /* Estilo para el círculo del icono, si no se logra con utilidades de Bootstrap */
    .icon-circle {
      width: 3.5rem;
      /* ~w-14 */
      height: 3.5rem;
      /* ~h-14 */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      /* mb-4 de Tailwind */
      flex-shrink: 0;
      /* Evita que el círculo se encoja */
    }

    /* Efecto de hover para las tarjetas */
    .service-card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card-hover:hover {
      transform: translateY(-5px);
      /* Lift effect */
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
      /* Larger shadow on hover */
    }



     /* Custom CSS for the active tab state (Tailwind's border-b-2 border-black effect) */
    .nav-tabs .nav-link.active {
      border-color: #000000 !important;
      /* Tailwind's text-black */
      color: #000000 !important;
      font-weight: 500;
      /* Medium font-weight */
    }

    /* Custom CSS for card hover effect */
    .destination-card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destination-card-hover:hover {
      transform: translateY(-5px);
      /* Lift effect */
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
      /* Larger shadow on hover */
    }

    /* Ensure image covers and is centered */
    .card-img-top-cover {
      width: 100%;
      height: 12rem;
      /* h-48 equivalent (48 * 0.25rem = 12rem) */
      object-fit: cover;
    }


     /* Custom CSS for circular image container */
    .avatar-circle {
      width: 3rem;
      /* w-12 equivalent (12 * 0.25rem = 3rem) */
      height: 3rem;
      /* h-12 equivalent */
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      /* Prevents the circle from shrinking in flex container */
    }

    /* Custom CSS for testimonial card hover effect */
    .testimonial-card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card-hover:hover {
      transform: translateY(-5px);
      /* Lift effect */
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
      /* Larger shadow on hover */
    }



     /* Custom CSS for a more prominent shadow similar to Tailwind's shadow-lg */
    .card-shadow-lg-custom {
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
      /* Bootstrap's shadow-lg is slightly different */
    }

    /* Custom focus styles for form inputs to mimic Tailwind's focus:ring-2 focus:ring-black */
    .form-control:focus,
    .form-select:focus {
      border-color: #000000;
      /* Black border on focus */
      box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
      /* Black ring on focus */
      outline: 0;
    }

    /* Custom styling for checkboxes if needed, or let Bootstrap handle it */
    /* If you need a specific accent color for checkboxes */
    /* .form-check-input:checked {
        background-color: #000000;
        border-color: #000000;
    } */

    /* Animation placeholder - Bootstrap does not have direct equivalent.
       You would need a CSS animation library or define keyframes here. */
    /* @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in-bootstrap {
        animation: fadeIn 1s ease-out forwards;
    } */


    /* Custom CSS for the circular icon backgrounds */
    .icon-circle {
      width: 3.5rem;
      /* w-14 equivalent (14 * 0.25rem = 3.5rem) */
      height: 3.5rem;
      /* h-14 equivalent */
      background-color: #000;
      /* bg-black */
      color: #fff;
      /* text-white */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      /* mb-4 equivalent */
      flex-shrink: 0;
      /* Prevent shrinking in flex containers */
    }

    .icon-circle .fas {
      font-size: 1.5rem;
      /* text-2xl equivalent */
    }

    /* Custom focus styles for form inputs to mimic Tailwind's focus:ring-2 focus:ring-black */
    .form-control:focus,
    .form-select:focus,
    .form-check-input:focus {
      border-color: #000000;
      /* Black border on focus */
      box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
      /* Black ring on focus */
      outline: 0;
    }

    /* ELIMINAMOS EL ESTILO PARA EL MAPA, YA QUE LO VAMOS A QUITAR */
    /* .iframe-map-container {
      height: 100%;
      min-height: 250px;
    } */

    /* NUEVO: Estilo para los elementos de contacto para que se vean bien apilados a la izquierda */
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      /* Alinea los íconos con la parte superior del texto */
      margin-bottom: 1.5rem;
      /* Espacio entre cada elemento de contacto */
    }

    .contact-info-item:last-child {
      margin-bottom: 0;
      /* No hay margen inferior en el último elemento */
    }

    .contact-info-item .icon-circle {
      margin-right: 1rem;
      /* Espacio entre el círculo y el texto */
      margin-bottom: 0;
      /* Anulamos el margin-bottom preexistente */
    }


    /* Custom style for the fixed back-to-top button */
    #back-to-top-bootstrap {
      position: fixed;
      bottom: 2rem;
      /* Equivalent to bottom-8 (8 * 0.25rem = 2rem) */
      right: 2rem;
      /* Equivalent to right-8 */
      display: none;
      /* Hidden by default, JavaScript will toggle */
      z-index: 1030;
      /* Above most Bootstrap components */
      border-radius: 50%;
      /* Make it circular */
      width: 3.5rem;
      /* Adjust size if needed */
      height: 3.5rem;
      /* Adjust size if needed */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Custom style for specific font awesome icon size */
    .footer-brand-icon .fas {
      font-size: 1.5rem;
      /* text-2xl equivalent */
    }

    /* Custom style for iframe to ensure 100% height within its container */
    .map-iframe-container {
      height: 100%;
    }

    .map-iframe-container iframe {
      height: 100%;
      /* Ensure the iframe fills its parent height */
      width: 100%;
      /* Ensure the iframe fills its parent width */
    }


    /* Estilos adicionales para el Breadcrumb */

/* Contenedor del Breadcrumb (la barra completa) */
.breadcrumb-container-custom {
    background-color: var(--bs-light-subtle); /* Usar la variable de Bootstrap para un color consistente */
    padding: 1rem 0; /* Un padding vertical consistente */
    border-bottom: 1px solid var(--bs-border-color-translucent); /* Línea sutil en la parte inferior */
}

/* Lista ordenada del Breadcrumb */
.breadcrumb {
    /* Si Bootstrap ya lo centra con .container, no necesitas más aquí */
    /* margin-left: auto; */
    /* margin-right: auto; */
    /* max-width: 1320px; /* Ajusta esto al ancho máximo de tu contenedor principal si es diferente */ 
    padding-left: 1rem; /* Asegura un padding izquierdo si no usas .container con px-x */
    padding-right: 1rem; /* Asegura un padding derecho */
}

/* Ítems individuales del Breadcrumb */
.breadcrumb-item {
    font-size: 0.95rem; /* Un tamaño de fuente ligeramente más pequeño */
    color: var(--bs-secondary); /* Un color de texto más sutil para los ítems no activos */
}

/* Enlaces dentro del Breadcrumb */
.breadcrumb-item a {
    color: var(--bs-primary); /* Color del enlace principal de Bootstrap, o puedes elegir otro */
    text-decoration: none; /* Quitar el subrayado predeterminado */
    transition: color 0.3s ease; /* Transición suave para el hover */
}

.breadcrumb-item a:hover {
    color: var(--bs-dark); /* Color más oscuro al pasar el ratón */
    text-decoration: underline; /* Subrayar al pasar el ratón para indicar interactividad */
}

/* Ítem activo (la página actual) */
.breadcrumb-item.active {
    font-weight: 600; /* Texto más negrita para la página actual */
    color: var(--bs-dark); /* Color más oscuro para el ítem activo */
}

/* Ajustes para pantallas pequeñas (opcional, si necesitas un diseño específico) */
@media (max-width: 767.98px) {
    .breadcrumb-container-custom {
        padding: 0.75rem 1rem; /* Menos padding en móviles */
    }
    .breadcrumb-item {
        font-size: 0.85rem; /* Fuente un poco más pequeña en móviles */
    }
}

/* CSS para controlar la altura de las imágenes dentro del carrusel de múltiples ítems */
#multiItemCarousel .carousel-item img {
    height: 250px; /* Altura predeterminada para desktop */
    object-fit: cover; /* Asegura que la imagen cubra el espacio sin distorsionar */
}

@media (max-width: 991.98px) { /* Para tablets (col-lg) */
    #multiItemCarousel .carousel-item img {
        height: 200px; /* Altura más pequeña en tablets */
    }
}

@media (max-width: 767.98px) { /* Para móviles (col-md) */
    #multiItemCarousel .carousel-item img {
        height: 180px; /* Altura aún más pequeña en móviles */
    }
}