
:root {
  /* Colores de Marca y Acento */
  --bs-primary-border-subtle: rgba(255, 255, 255, 0.3); /* Borde tipo cristal (blanco translúcido) */
  --bs-accent-gold: #B8952E;        /* El dorado para detalles de lujo, usado con moderación */
  
  /* Textos: Máxima legibilidad sobre Blur */
  --bs-primary-text-title: #FFFFFF;  /* Blanco puro para que brille sobre el cristal */
  --bs-primary-text: #E0E0E0;       /* Gris plata suave para párrafos, evita la fatiga visual */
  
  /* Estados y Acción */
  --bs-active: #00D1FF;             /* Un cian eléctrico "hielo" que combina con el concepto cristal */
  
  /* Fondos y Capas */
  --bs-background-primary: #05070A; /* Negro azulado profundo (base para que el cristal resalte) */
  --bs-primary-dark: #112240;       /* Azul marino profundo para contenedores secundarios */

  /* Fuentes */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Extra PRO: La variable del efecto cristal */
  --glass-bg: rgba(255, 255, 255, 0.1); 
  --glass-blur: blur(12px);
}

/* ==========================================================================
   ESTILOS GLOBALES Y UTILIDADES
   ========================================================================== */
* {
    font-family: var(--font-body);
    font-style: normal;
}

body {
    background-color: var(--bs-background-primary);
    color: var(--bs-primary-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    
    /* 1. Sombra Base: Asegura que CUALQUIER texto sea legible sobre el parallax */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* 2. Títulos: Aquí aplicamos el "Efecto Profundidad" Doble */
h1, h2, h3, .text-glass-title {
    font-family: var(--font-display);
    color: var(--bs-primary-text-title);
    letter-spacing: 2px; /* Un poco de aire ayuda a la sombra */
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8), /* Definición del borde */
        0 4px 12px rgba(0, 0, 0, 0.4); /* Profundidad ambiental */
}

/* 3. Párrafos: Sombra más ligera para que la lectura sea fluida */
p, .text-glass-description {
    color: var(--bs-primary-text);
    line-height: 1.8; 
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Sombra única para no emborronar */
}

/* 4. Excepciones: Elementos que NO deben llevar sombra (Iconos o inputs) */
.bi, i, .btn, .nav-link {
    /* Los iconos y botones suelen verse mejor sin sombra de texto 
       porque ya tienen sus propios efectos de luz/borde */
    text-shadow: none !important; 
}
.text-footer-active{
    color: var(--bs-active)
}
/* Estilos para la sección hero */
/* ==========================================================================
   HERO SECTION CON VIDEO DE FONDO
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh; /* O el alto que estés manejando (ej. 800px) */
    width: 100%;
    overflow: hidden; /* Fundamental para que el video no desborde la pantalla */
}

/* El Video de Fondo */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%); /* Centrado perfecto */
    object-fit: cover; /* Evita que el video se estire o deforme */
    z-index: 0; /* Al fondo del todo */
}

/* El Overlay (Tu filtro oscuro) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Un gradiente oscuro le da más misterio que un color sólido */
    background: linear-gradient(180deg, rgba(5,7,10,0.4) 0%, rgba(5,7,10,0.8) 100%);
    z-index: 1; /* Sobre el video, debajo del contenido */
}

/* Asegurar que el contenido flote */
.hero-section .container {
    z-index: 2; /* Sobre el overlay */
}
/* Estilos para el botón personalizado - Usamos especificidad para evitar !important */
body .btn-outline-light {
    /* Fondos y Transparencias */
    background: rgba(255, 255, 255, 0.05); /* Base sutil de cristal */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Bordes y Texto */
    border: 1px solid var(--bs-primary-border-subtle);
    color: var(--bs-primary-text-title); /* Usamos el blanco brillante del título */
    
    /* Forma y Espaciado */
    border-radius: 50px; /* Forma de burbuja perfecta */
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Animación iOS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Efecto HOVER: Igual al Navbar */
body .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bs-active); /* El cian eléctrico que te gustó */
    transform: scale(1.05) translateY(-2px); /* Crece y sube un poco */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Efecto ACTIVE / CLICK: Resplandor */
body .btn-outline-light:active {
    background: rgba(0, 209, 255, 0.2);
    border-color: var(--bs-active);
    color: var(--bs-active);
    transform: scale(0.98); /* Efecto de presión al hacer clic */
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.4);
}

/*Header */


.header-floating {
    position: fixed; /* O absolute si no quieres que te siga al bajar */
    top: 20px;       /* Despegado de la parte superior */
    left: 0;
    right: 0;
    z-index: 1000;   /* Por encima de la imagen del hero */
    display: flex;
    justify-content: center;
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur); /* Soporte para Safari */
    border: 1px solid var(--bs-primary-border-subtle);
    border-radius: 50px; /* Bordes redondeados para un look moderno */
    padding: 10px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

/* Estilo de los links */
/* Reset de los links para que funcionen como contenedores de la burbuja - Usamos body para ganar especificidad */
body .nav-link {
    color: var(--bs-primary-text-title);
    font-family: var(--font-body);
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 50px; /* Forma de burbuja */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Curva de transición suave */
    position: relative;
    border: 1px solid transparent; /* Evita saltos visuales al aparecer el borde */
}

/* Efecto HOVER: La burbuja aparece al acercar el puntero */
body .nav-link:hover {
    background: rgba(255, 255, 255, 0.1); /* Fondo sutil */
    backdrop-filter: blur(8px);           /* Desenfoque dentro de la burbuja */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bs-active);   /* El color que te gustó */
    transform: scale(1.05);               /* Un ligero crecimiento muy iOS */
}

/* Efecto ACTIVE: Cuando el link está seleccionado */
body .nav-link.active {
    background: rgba(0, 209, 255, 0.15); /* Fondo basado en tu bs-active con transparencia */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bs-active);  /* El borde resalta con el color activo */
    color: var(--bs-active);
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3); /* Resplandor exterior */
}
.navbar-brand{
    max-width: 50px;
}

/************************ SECCIÓN CARTA (ESTILO PREMIUM) ************************/

#carta {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* MEJORA: Combinamos la imagen con un degradado oscuro (como en el Hero) */
    /* El degradado va primero para que actúe como filtro sobre la imagen */
    background:
        linear-gradient(
            to bottom,
            rgba(5, 7, 10, 0.9) 0%,   /* Oscuro arriba para separar secciones */
            rgba(5, 7, 10, 0.6) 50%,  /* Un poco de luz en el centro para ver la piedra */
            rgba(5, 7, 10, 0.9) 100%  /* Oscuro abajo */
        ),
        url('/assets/img/img-sections/menu/menu-section.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Orbe Cian - Lo hacemos mucho más sutil (como una neblina) */
#carta::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 900px;
    height: 900px;
    /* Bajamos la opacidad de 0.25 a 0.08 para que sea un susurro de color */
    background: radial-gradient(circle, rgba(11, 193, 206, 0.08) 0%, transparent 70%);
    filter: blur(100px); /* Más blur para suavizar los bordes */
    z-index: 1;
    pointer-events: none;
}

/* Orbe Blanco - Lo movemos para que solo ilumine un borde del cristal */
#carta::after {
    content: "";
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 1000px;
    height: 1000px;
    /* Bajamos la opacidad a 0.04 (blanco muy tenue) */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

/* Ajuste del contenedor de cristal */
.pdf-viewer-container {
    background: rgba(255, 255, 255, 0.03); /* Más transparente */
    backdrop-filter: blur(30px); /* Más desenfoque para que la piedra se vea "esmerilada" */
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6); /* Sombra más pesada para dar profundidad */
    position: relative;
    z-index: 5;
}
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--bs-primary-border-subtle);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}



.text-glass-title {
    font-family: var(--font-display);
    color: var(--bs-primary-text-title);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.text-glass-description {
    font-family: var(--font-body);
    color: var(--bs-primary-text);
    line-height: 1.8;
}


/* Envoltura del Iframe */
.glass-iframe-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid var(--bs-primary-border-subtle);
    border-radius: 20px;
    overflow: hidden; /* Para que el iframe respete los bordes redondeados */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    height: 800px; /* Altura ideal para leer el menú */
    transition: transform 0.4s ease;
}

.glass-iframe-wrapper:hover {
    transform: translateY(-5px);
}

.btn-menu-action-div {
    margin-top: 1rem;
}

.d-lg-none.bg-light {
    background-color: var(--bs-background-primary) !important;
    border-radius: 12px;
}

.bi-file-earmark-pdf.text-primary {
    color: var(--bs-primary-text-title) !important;
}

/* Contenedor de Descarga Móvil */
.glass-mobile-download {
    background: rgba(255, 255, 255, 0.03); /* Un cristal muy sutil */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bs-primary-border-subtle);
    border-radius: 25px; /* Esquinas redondeadas tipo App */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Efecto de luz interna para que la tarjeta no se vea plana */
.glass-mobile-download::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Estilo para el icono del PDF */
.icon-glass-glow {
    color: var(--bs-active);
    text-shadow: 0 0 20px rgba(0, 209, 255, 0.5); /* Resplandor de neón/cristal */
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Pequeña animación si el usuario toca el contenedor */
.glass-mobile-download:active .icon-glass-glow {
    transform: scale(0.9);
}

/* ==========================================================================
   SECCIÓN MOMENTOS (TESTIMONIOS)
   ========================================================================== */

#momentos {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;

    /* Fondo Parallax: Integra la imagen con el viñeteado oscuro para coherencia visual */
    background: 
        linear-gradient(
            to bottom, 
            rgba(5, 7, 10, 0.95) 0%,   /* Borde superior oscuro para enlazar suavemente con la Carta */
            rgba(5, 7, 10, 0.5) 50%,   /* Centro más claro para revelar la foto de Cartagena */
            rgba(5, 7, 10, 0.95) 100%  /* Borde inferior oscuro hacia el footer */
        ),
        url('/assets//img/img-sections/momentos/momentos-section.jpg'); /* Sugerencia: Una foto de luces de noche o cúpulas */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Foco de luz ambiental muy sutil detrás de las tarjetas */
#momentos::before {
    content: "";
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; 
    height: 80%;
    /* Un ligero resplandor del color de tu marca (cian) que no tapa la imagen */
    background: radial-gradient(circle, rgba(11, 193, 206, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ---------------- Tarjetas Glassmorphism ---------------- */

.glass-testimonial {
    /* Fondo translúcido un poco más oscuro para asegurar legibilidad de las reseñas */
    background: rgba(15, 20, 25, 0.3); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Bordes iluminados direccionalmente (Arriba e Izquierda más claros) */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Interacción Hover: Elevación suave y resplandor minimalista */
.glass-testimonial:hover {
    /* Reducimos el desplazamiento para que sea más natural */
    transform: translateY(-8px); 
    
    /* 1. Sombra de profundidad muy difuminada.
       2. Resplandor cian ultra sutil (opacidad al 12% en lugar de 25%).
    */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 20px rgba(0, 208, 255, 0.12); 
    
    /* Iluminamos solo el borde superior ligeramente para simular reflejo de luz */
    border-top-color: rgba(0, 209, 255, 0.3);
    border-left-color: rgba(0, 209, 255, 0.15);
    
    /* Un cambio de fondo casi imperceptible */
    background: rgba(255, 255, 255, 0.05);
    
    /* Suavizamos la transición para que se sienta "sedosa" */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Iconos y Textos Internos */
.icon-glass-quote {
    font-size: 2.8rem;
    color: var(--bs-active); /* Tu color principal */
    opacity: 0.8;
    display: inline-block;
    transform: rotate(-10deg);
    text-shadow: 0 0 15px rgba(11, 193, 206, 0.4);
}

/* Estilo para las fotos de los clientes */
.avatar-glass {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 2px; /* Crea un efecto de anillo alrededor de la foto */
    background-color: rgba(255, 255, 255, 0.05);
}

.border-top-glass {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/*GALERIA*/
/* ==========================================================================
   SECCIÓN ATMÓSFERA (GALERÍA Y FILTROS)
   ========================================================================== */

   #atmosfera {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    overflow: hidden;

    /* Fondo Parallax: Integra la imagen con el viñeteado oscuro para coherencia visual */
    background: 
        linear-gradient(
            to bottom, 
            rgba(5, 7, 10, 0.95) 0%,   /* Borde superior oscuro para enlazar suavemente con "Momentos" */
            rgba(5, 7, 10, 0.5) 50%,   /* Centro más claro para revelar la textura de fondo */
            rgba(5, 7, 10, 0.95) 100%  /* Borde inferior oscuro hacia la siguiente sección/footer */
        ),
        url('/assets/img/img-sections/atmosfera/atmosfera-2.jpg'); /* Sugerencia: Una foto de textura oscura, un muro del restaurante o luces desenfocadas */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Foco de luz ambiental súper sutil detrás de la galería */
#atmosfera::before {
    content: "";
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; 
    height: 800px;
    /* Un ligero resplandor de tu color cian que no ensucia la imagen */
    background: radial-gradient(circle, rgba(0, 209, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Filtros de cristal */
.glass-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px; /* Forma de píldora */
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.glass-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Estado activo del filtro (Usa tu #00d1ff) */
.glass-filter-btn.active {
    background: rgba(0, 209, 255, 0.15);
    border-color: rgba(0, 209, 255, 0.5);
    color: #00d1ff;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.2);
}

/* Tarjetas de Galería */
.glass-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Fijamos un aspect ratio para que todas las fotos se vean del mismo tamaño */
    aspect-ratio: 4 / 3; 
    background: #000;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Capa oscura que aparece en hover con el ícono de lupa */
.glass-gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 10, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Efectos al pasar el mouse (Hover) */
.glass-gallery-card:hover .gallery-img {
    transform: scale(1.1); /* Zoom suave a la foto */
}

.glass-gallery-card:hover .glass-gallery-overlay {
    opacity: 1; /* Aparece el cristal y el ícono */
}

.text-active {
    color: #00d1ff !important;
}

/* Ocultar items para el filtro */
.gallery-item.hide {
    display: none;
}

/* Animación de entrada para los filtros */
.gallery-item.show {
    animation: fadeInScale 0.5s ease-out forwards;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   VISOR LIGHTBOX (PANTALLA COMPLETA)
   ========================================================================== */
.glass-lightbox-container {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(25px); /* Fondo súper esmerilado */
    -webkit-backdrop-filter: blur(25px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-lightbox-container.active {
    display: flex;
    opacity: 1;
}

.glass-lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 209, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-lightbox-container.active .glass-lightbox-img {
    transform: scale(1);
}

.glass-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.glass-lightbox-close:hover {
    color: #00d1ff;
}

/* ==========================================================================
   SECCIÓN RESERVAS
   ========================================================================== */

#reservas {
    position: relative;
    padding: 140px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Fondo Parallax: Imagen de ambiente nocturno/atardecer íntimo */
    background: 
        linear-gradient(
            to bottom, 
            rgba(5, 7, 10, 0.95) 0%, 
            rgba(5, 7, 10, 0.4) 50%, 
            rgba(5, 7, 10, 0.95) 100%
        ),
        url('/assets/img/img-sections/reservas/reservas-2.jpg');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Tarjeta contenedora de la reserva */
.glass-reserve-card {
    background: rgba(15, 20, 25, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Botón de Reserva Estilo Glass-Pro */
.btn-glass-booking {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.btn-glass-booking::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    /* Efecto de barrido de luz */
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(0, 209, 255, 0.2), 
        transparent
    );
    transition: 0.6s;
}

/* Hover del Botón: El brillo cian dominante */
.btn-glass-booking:hover {
    color: #fff;
    transform: translateY(-5px);
    background: rgba(0, 209, 255, 0.08);
    border-color: rgba(0, 209, 255, 0.6);
    box-shadow: 0 15px 30px rgba(0, 209, 255, 0.15), 
                0 0 20px rgba(0, 209, 255, 0.1);
}

.btn-glass-booking:hover::before {
    left: 100%;
}

.tracking-widest {
    letter-spacing: 4px;
}

/* Pequeño detalle de luz detrás de la tarjeta */
#reservas::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}


/* ==========================================================================
   SECCIÓN ENCUÉNTRANOS
   ========================================================================== */

#encuentranos {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;

    /* Fondo Parallax: Continuidad con la noche cartagenera */
    background: 
        linear-gradient(
            to bottom, 
            rgba(5, 7, 10, 0.95) 0%, 
            rgba(5, 7, 10, 0.6) 50%, 
            rgba(5, 7, 10, 0.95) 100%
        ),
        url('/assets/img/img-sections/encuentranos/encuentranos-section.jpg'); /* Sugerencia: Una calle colonial de noche */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ---------------- Tarjetas de Contacto Individuales ---------------- */

.glass-contact-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-contact-item:hover {
    transform: translateX(10px); /* En lugar de subir, se mueve a la derecha suavemente */
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 209, 255, 0.3);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 209, 255, 0.08); /* Glow cian súper sutil */
}

/* Círculo que envuelve los íconos */
.contact-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00d1ff; /* Tu --bs-active */
    transition: all 0.4s ease;
}

.glass-contact-item:hover .contact-icon-wrap {
    background: rgba(0, 209, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.3);
    transform: scale(1.1);
}

/* Redes Sociales */
.social-glass-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #00d1ff;
    border-color: #00d1ff;
    background: rgba(0, 209, 255, 0.1);
    transform: translateY(-3px);
}

/* ---------------- Contenedor del Mapa ---------------- */

.glass-map-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Filtro CSS para oscurecer el mapa de Google y que encaje en el diseño Dark/Glass */
.glass-map-container iframe {
    filter: grayscale(80%) contrast(1.2) brightness(0.8);
    transition: filter 0.5s ease;
}

/* Al pasar el mouse por el mapa, recupera un poco su color original */
.glass-map-container:hover iframe {
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
}

/* Overlay opcional por si el mapa sigue brillando mucho en algunas pantallas */
.map-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 193, 206, 0.03); /* Un leve tinte cian */
    pointer-events: none; /* Para que el usuario pueda mover el mapa libremente */
    z-index: 1;
}



/*============================================================================= 
   MEDIAS Y ADAPTACINES MOVILES
  ============================================================================= 
   */

/* Ajuste para móviles */
@media (max-width: 768px) {
    .glass-iframe-wrapper {
        height: 500px; /* Más corto en móviles */
    }
    .text-glass-title {
        font-size: 2rem;
    }
}
/* =========================================
   ADAPTACIÓN MÓVIL (Menor a 992px)
   ========================================= */
@media (max-width: 991px) {
    /* 1. AJUSTE A LA BARRA PRINCIPAL (LOGO Y BOTÓN) */
    .glass-nav {
        margin-left: 15px;  /* Empuja la barra desde la izquierda */
        margin-right: 15px; /* Empuja la barra desde la derecha */
        padding: 10px 20px; /* Un padding un poco más pequeño para móvil */
    }
    /* Escondemos el menú por defecto y le damos formato de tarjeta flotante */
    .nav {
        position: absolute;
        top: 75px; /* Aparece justo debajo de tu contenedor glass-nav */
        right: 15px; /* Alineado a la derecha */
        flex-direction: column; /* Lo vuelve vertical */
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--bs-primary-border-subtle);
        border-radius: 20px; /* Bordes redondeados de la tarjeta */
        padding: 15px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        gap: 8px; /* Separación entre las burbujas */
       
        
        /* Animación para que aparezca suavemente */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Esta clase la agregará JS para mostrar el menú */
    .nav.show-mobile {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ajuste de tus burbujas para que se vean bien en vertical */
    .nav-link {
        text-align: center;
        width: 200px; /* Define un ancho fijo para que todas las burbujas midan lo mismo */
    }
}



/* ==========================================================================
   SECCIÓN 5: RESERVAS
   ========================================================================== */
.reservas-section {
    background-image: url('../img/img-sections/reservas/reservas.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.reservas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 249, 250, 0.85); 
    z-index: 1;
}

.btn-whatsapp-lg {
    background-color: #25D366;
    color: white !important;
    padding: 15px 40px;
    border-radius: 15px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: pulse-white 2s infinite;
    cursor: pointer;
}

.btn-whatsapp-lg:hover {
    transform: scale(1.05);
    background-color: #1ebe57;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4) !important;
}

.text-reservas {
    color: var(--bs-primary-text) !important;
}





/* ==========================================================================
   RECURSOS ADICIONALES Y CORRECCIONES PDF
   ========================================================================== */
@media (max-height: 800px) {
    embed {
        height: 600px;
    }
}

.bi-file-earmark-pdf {
    color: var(--bs-primary-text-title) !important;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA (REVEAL)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
/* ==========================================================================
   WHATSAPP FLOTANTE GLASSMORPHISM
   ========================================================================== */

/* Contenedor Fijo en la esquina inferior derecha */
.whatsapp-glass-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ---------------- Botón Principal Flotante ---------------- */

.wa-floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2); /* Verde WA con transparencia */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                0 0 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.wa-floating-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: rgba(37, 211, 102, 0.3);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(37, 211, 102, 0.4);
}

/* Pulso animado detrás del botón */
.wa-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: waPulseAnim 2s infinite;
}

@keyframes waPulseAnim {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* ---------------- Ventana de Chat (Pre-Chat) ---------------- */

.wa-glass-chat {
    width: 320px;
    margin-bottom: 20px;
    background: rgba(15, 20, 25, 0.6); /* Oscuro como el resto del sitio */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    
    /* Oculto por defecto con transición */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Clase activa para mostrar la ventana */
.wa-glass-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Cabecera */
.wa-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
}
.chat-icon{
    font-size: 2rem;
}

.wa-avatar-wrap {
    position: relative;
}

.wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 10%;
    object-fit: cover;
}

.wa-online-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 12px; height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #0f1419;
}

.wa-status-text {
    color: #25D366;
    font-size: 0.75rem;
}

.wa-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.wa-close-btn:hover {
    color: #fff;
}

/* Cuerpo */
.wa-body {
    padding: 20px;
    background: linear-gradient(to bottom, transparent, rgba(37, 211, 102, 0.03));
}

.wa-message-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px; /* Forma de burbuja de chat */
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

/* Pie y Botón de Inicio */
.wa-footer {
    padding: 15px 20px 20px 20px;
}

.btn-wa-start {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 0;
    border-radius: 50px; /* Estilo píldora */
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-wa-start:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* ==========================================================================
   FOOTER PRO (Variables integradas)
   ========================================================================== */

.pro-footer {
    background-color: var(--bs-background-primary); /* #05070A */
    border-top: 1px solid var(--bs-primary-border-subtle);
    overflow: hidden;
}

/* Brillo ambiental de fondo (Cyan + Dark Blue) */
.footer-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 80vw; height: 500px;
    background: radial-gradient(ellipse at center, rgba(17, 34, 64, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Tipografía Utility */
.display-font { font-family: var(--font-display); }
.body-font { font-family: var(--font-body); }
.text-light-silver { color: var(--bs-primary-text); }
.text-gold { color: var(--bs-accent-gold); }
.text-cyan { color: var(--bs-active); }
.tracking-wide { letter-spacing: 2px; }

/* -----------------------------------------
   NIVEL 1: Newsletter Glass Card
   ----------------------------------------- */
.glass-newsletter-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--bs-primary-border-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.glass-input-group {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid var(--bs-primary-border-subtle);
}

.glass-input {
    background: transparent !important;
    border: none !important;
    color: var(--bs-primary-text-title) !important;
    box-shadow: none !important;
    padding-left: 20px;
    font-family: var(--font-body);
}

.glass-input::placeholder { color: rgba(224, 224, 224, 0.5); }

.btn-glass-submit {
    background: var(--bs-active); /* Cyan #00D1FF */
    color: #000 !important; /* Contraste sobre el cyan */
    border-radius: 50px;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-glass-submit:hover {
    box-shadow: 0 0 15px var(--bs-active);
    color: #fff !important;
    transform: scale(1.05);
}

/* -----------------------------------------
   NIVEL 2: Enlaces y Elementos
   ----------------------------------------- */
.italic-signature {
    font-style: italic;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

/* Enlaces Pro */
.footer-pro-link {
    color: var(--bs-primary-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    position: relative;
}

.footer-pro-link:hover {
    color: var(--bs-active);
    transform: translateX(5px); /* Efecto magnético hacia la derecha */
}

/* Esferas Sociales */
.glass-orb {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--bs-primary-border-subtle);
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary-text-title);
    text-decoration: none;
    transition: all 0.4s ease;
}

.glass-orb:hover {
    background: rgba(0, 209, 255, 0.1);
    border-color: var(--bs-active);
    color: var(--bs-active);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.2);
}

/* -----------------------------------------
   NIVEL 3: Copyright y Firma WillyTech
   ----------------------------------------- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.willytech-link {
    color: var(--bs-active);
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.willytech-link::after {
    content: '';
    position: absolute;
    width: 100%; height: 1px;
    bottom: -2px; left: 0;
    background: var(--bs-active);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.willytech-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   ADMIN LOGIN PRO (STANDALONE)
   ========================================================================== */

.admin-login-section {
    background-color: var(--bs-background-primary); /* #05070A */
}

/* -----------------------------------------
   Orbes Animadas de Fondo (La magia del Glass)
   ----------------------------------------- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrbs 15s infinite alternate ease-in-out;
    z-index: 1;
}

.orb-cyan {
    width: 400px; height: 400px;
    background: var(--bs-active); /* #00D1FF */
    top: -10%; left: -10%;
}

.orb-gold {
    width: 300px; height: 300px;
    background: var(--bs-accent-gold); /* #B8952E */
    bottom: -5%; right: 10%;
    animation-delay: -5s;
}

.orb-dark {
    width: 500px; height: 500px;
    background: var(--bs-primary-dark); /* #112240 */
    top: 40%; left: 40%;
    animation-duration: 20s;
}

@keyframes floatOrbs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* -----------------------------------------
   Contenedor Principal de Cristal
   ----------------------------------------- */
.glass-login-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--bs-primary-border-subtle);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Columna Izquierda (Branding) */
.brand-side {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.4) 0%, rgba(5, 7, 10, 0.8) 100%),
                url('assets/img/img-sections/encuentranos/street-bg.jpg') center/cover;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 7, 10, 0.6); /* Oscurece la imagen de fondo */
    z-index: 1;
}

.bg-glass-gold {
    background: rgba(184, 149, 46, 0.1) !important;
}

/* -----------------------------------------
   Formulario e Inputs Glass
   ----------------------------------------- */
.form-side {
    background: rgba(5, 7, 10, 0.3); /* Un poco más oscuro para que resalte el input */
}

/* Contenedor del Input con Icono */
.glass-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--bs-active);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.15);
}

.icon-box {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bs-primary-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.glass-input-wrapper:focus-within .icon-box {
    color: var(--bs-active);
}

/* Sobrescribiendo el form-floating de Bootstrap para el Glassmorphism */
.glass-input-control {
    background: transparent !important;
    border: none !important;
    color: var(--bs-primary-text-title) !important;
    box-shadow: none !important;
    padding-left: 0 !important;
}

.glass-input-control:focus ~ label,
.glass-input-control:not(:placeholder-shown) ~ label {
    color: var(--bs-active) !important;
    transform: scale(0.85) translateY(-0.75rem) translateX(0);
    background: transparent !important; /* Evita el fondo blanco por defecto de Bootstrap */
}

.input-box label {
    padding-left: 0 !important;
    color: rgba(224, 224, 224, 0.5) !important;
}

/* Botón Revelar Contraseña */
.btn-reveal-pass {
    background: transparent;
    border: none;
    color: var(--bs-primary-text);
    padding: 0 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-reveal-pass:hover { color: var(--bs-primary-text-title); }

/* -----------------------------------------
   Checkbox y Botones
   ----------------------------------------- */
/* Checkbox personalizado estilo neón */
.custom-check {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.custom-check:checked {
    background-color: var(--bs-active);
    border-color: var(--bs-active);
    box-shadow: 0 0 10px var(--bs-active);
}

.hover-cyan:hover {
    color: var(--bs-active) !important;
}

/* Botón Principal Animado */
.btn-admin-submit {
    background: var(--bs-active);
    color: #000 !important; /* Contraste negro para máxima legibilidad */
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-admin-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-admin-submit:hover {
    transform: translateY(-3px);
    color: var(--bs-primary-text) !important; 
    box-shadow: 0 15px 30px rgba(0, 209, 255, 0.3);
}

.btn-admin-submit:hover::before {
    left: 100%;
}
/* ==========================================================================
   MEDIA QUERIES (ADAPTACIÓN MÓVIL)
   ========================================================================== */

/* Móviles pequeños */
@media (max-width: 576px) {
    .whatsapp-tooltip {
        right: 85px;      
        bottom: 40px;     
        font-size: 12px;   
        padding: 5px 10px;
        margin-right: 10px; 
    }
    .head-div {
        justify-content: space-between !important;
    }
    .logo {
        max-width: 150px; 
    }
    .navbar-div a {
        font-size: 18px !important;
    }
    .text-hero{
        font-size: 1.2rem !important; 
    }

    .glass-container{
        margin-bottom: 0px !important;
    }
    .text-glass-title{
        font-size: 1.8rem !important    ;
    }
    .text-glass-description{
        font-size: 1.2rem !important; 
    }
     
    .btn-reserva{
        font-size: 1rem !important;
    }
    .btn-descargar-movil{
        font-size: 1rem !important; 
        
    }

}

/* Tablets y Menú Colapsable */
@media (max-width: 991px) {
    .navbar-div ul {
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 15px;
    }
    .header-scrolled .logo {
        max-height: 80px;
        width: auto;
    }
    .header-scrolled .bi-list {
        font-size: 1.8rem !important;
        transition: all 0.4s ease-in-out;
    }
    .logo {
        max-width: 150px; 
    }
    .navbar-div a {
        font-size: 18px !important;
    }
    .head-div {
        justify-content: space-between !important;
    }
    .map-container {
        height: 350px !important;
        margin-top: 30px;
    }
}

/* Efectos de Scroll (Header Inner) */
#main-header.header-scrolled .header-inner {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

#main-header.header-scrolled .logo-transition {
    transform: scale(0.9);
}

/* Animación de pulso para el botón de WhatsApp */
@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
