:root {
    --bg-dark: #020617;       /* Azul noche profundo */

    --bg-darker: #020617;     /* Casi negro */
    --accent: #10B981;        /* Verde Esmeralda */
    --accent-glow: rgba(16, 185, 129, 0.4);
    --text-white: #F8FAFC;
    --text-gray: #94A3B8;
    --glass-dark: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), var(--bg-dark));
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* --- BOTONES PREMIUM --- */
.btn-premium {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-premium-filled {
    background: var(--accent);
    color: #fff;
    border: none;
}

/* --- CARDS & GLASSMORPHISM OSCURO --- */
.card-glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.card-glass:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- NAVBAR GLASS --- */
/* --- ESTILOS NAVBAR GLASS (Aislados) --- */

:root {
    --glass-bg: rgba(15, 23, 42, 0.75); /* Color base oscuro semitransparente */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-text: #e2e8f0;
    --glass-accent: #3b82f6; /* Azul tipo Tailwind, cámbialo a tu gusto */
    --glass-height: 70px;
}

/* Header contenedor principal */
.glass-header {
    position: fixed !important; /* Fija el header en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--glass-height);
    z-index: 9999; /* ¡CRUCIAL! Mantiene el menú encima de todo */
    background: var(--glass-bg);
    backdrop-filter: blur(12px); /* El efecto vidrio */
    -webkit-backdrop-filter: blur(12px); /* Soporte Safari */
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    /* Forzar visibilidad (evita que AOS lo oculte) */
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Si usas AOS, esta regla asegura que el header no se oculte */
[data-aos].glass-header {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.glass-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.glass-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.glass-brand img {
    height: 50px;
    width: auto;
    display: block;
}

/* Menú de Navegación (Desktop) */
.glass-ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.glass-link {
    text-decoration: none;
    color: var(--glass-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.glass-link:hover, .glass-link.active {
    color: white;
}

/* Línea animada bajo los links */
.glass-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.glass-link:hover::after {
    width: 100%;
}

/* Botón destacado (Ver Menú) */
.glass-btn {
    background: linear-gradient(135deg, var(--accent), #2563eb);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    color: white;
}

/* Menú Hamburguesa (Oculto en Desktop) */
.glass-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.glass-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- RESPONSIVE (MÓVIL) --- */
@media (max-width: 992px) {
    .glass-toggle {
        display: flex;
        z-index: 100000;
    }

    /* Menú móvil: panel desplegable debajo del header */
    .glass-nav {
        display: block !important;
        position: fixed;
        top: var(--glass-height);
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease;
        z-index: 99998;
        padding: 1.5rem 0 2rem;
    }

    .glass-nav.is-active {
        transform: translateY(0);
        opacity: 1;
    }

    .glass-ul {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    /* Links del menú más grandes en móvil */
    .glass-link {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 0.5rem 1rem;
    }

    /* Botón "Ver Menú" más grande */
    .glass-btn {
        font-size: 1.1rem;
        padding: 12px 32px;
    }

    /* Animación del botón hamburguesa a X */
    .glass-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .glass-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .glass-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
/* --- MAPA Y OPINIONES --- */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    filter: grayscale(100%) invert(0%); /* Mapa normal */
}
/* Si quieres mapa oscuro forzado, usa CSS filters más complejos o styled maps de Google API */

.review-stars {
    color: #F59E0B; /* Dorado */
    font-size: 1.2rem;
}

/* --- FOOTER --- */
.footer-modern {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}


 /* Gradiente de texto */
.text-gradient {
    background: linear-gradient(to right, #10B981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
        
}
.menu-category-btn.active {
    background-color: #10B981;
    color: #020617;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }


/* =========================================
ESTILOS GLASSMORPHISM (TARJETAS DE PLATILLOS)
========================================= */
.glass-card {
/* Eliminamos ancho y alto fijo para que se adapte a la columna de Bootstrap */
/* width: 240px;  <-- Lo quitamos para que sea responsive */
/* height: 360px; <-- Lo quitamos para que crezca según el contenido */
        
    background: rgba(255, 255, 255, 0.15); /* Un poco más opaco para que se lea el texto */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

/* Efecto Hover para que se sienta interactiva */
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.65);
    }

/* Destellos decorativos (Tu CSS original) */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    }

.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 1px; height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
    }

.glass-card-info {
/* Eliminamos ancho y alto fijo para que se adapte a la columna de Bootstrap */
/* width: 240px;  <-- Lo quitamos para que sea responsive */
/* height: 360px; <-- Lo quitamos para que crezca según el contenido */
        
    background: rgba(255, 255, 255, 0.621); /* Un poco más opaco para que se lea el texto */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgb(178, 178, 178);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
/* Ocultar scrollbar en filtros */
.no-scrollbar::-webkit-scrollbar {
    display: none;
    }
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    }