/* ==========================================================================
   VALKYROS - ESTILOS CONSOLIDADOS
   --------------------------------------------------------------------------
   Objetivo:
   - Centralizar los estilos que antes estaban repetidos dentro de cada HTML.
   - Mantener la estética actual sin cambiar el contenido funcional.
   - Facilitar el mantenimiento por parte de futuros desarrolladores.

   Estructura:
   01. Variables y base
   02. Textos, gradientes y animaciones generales
   03. Navegación y hero
   04. Botones reutilizables
   05. Formularios
   06. Componentes de inicio
   07. Componentes de servicios
   08. Componentes de metodología
   09. Componentes de contacto y footer
   10. Utilidades responsive
   ========================================================================== */


/* ==========================================================================
   01. VARIABLES Y BASE
   ========================================================================== */

/* Tipografía principal utilizada en todo el sitio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #050505;
    --bg-footer: #030303;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-soft: #cbd5e1;
    --brand-purple: #a855f7;
    --brand-purple-soft: #d8b4fe;
    --brand-orange: #f97316;
    --brand-red: #ef4444;
}

/* Base visual del sitio */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mejora de renderizado en imágenes */
img {
    max-width: 100%;
    height: auto;
}

/* Ajuste general para párrafos de contenido */
p {
    line-height: 1.625;
}


/* ==========================================================================
   02. TEXTOS, GRADIENTES Y ANIMACIONES GENERALES
   ========================================================================== */

/* Texto con gradiente estático de marca */
.gradient-text,
.gradient-text-alt {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-orange) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Texto con gradiente animado utilizado en titulares */
.gradient-text-flow {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-orange) 50%, var(--brand-purple) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 6s linear infinite;
}

@keyframes textFlow {
    to {
        background-position: 200% center;
    }
}

/* Animación de aparición al hacer scroll */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Animación de aparición para componentes dinámicos */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación suave usada en elementos decorativos */
.animate-bounce-slow {
    animation: bounce-slow 4s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mejora de contraste para textos decorativos violeta sobre fondo oscuro */
.text-purple-400,
.font-mono.text-purple-400 {
    color: var(--brand-purple-soft) !important;
    text-shadow: 0 0 10px rgba(216, 180, 254, 0.15);
}


/* ==========================================================================
   03. NAVEGACIÓN Y HERO
   ========================================================================== */

/* Navbar con efecto esmerilado */
.glass-nav {
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contenedor principal de portada de cada página */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 75vh;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Imagen de portada por página.
   Se usan clases en <body> para evitar redefinir .hero-container en cada HTML. */
body.page-inicio .hero-container {
    background-image:
        linear-gradient(to bottom, rgba(5, 5, 5, 40) 0%, rgba(5, 5, 5, 0.2) 55%, var(--bg-dark) 100%),
        url('assest/img/ros1.png');
    background-position: center 8%;
}

body.page-contacto .hero-container {
    background-image:
        linear-gradient(to bottom, rgba(5, 5, 5, 40) 0%, rgba(5, 5, 5, 0.2) 55%, var(--bg-dark) 100%),
        url('assest/img/v-contacto.png');
    background-position: center 20%;
}

body.page-servicios .hero-container {
    background-image:
        linear-gradient(to bottom, rgba(5, 5, 5, 40) 0%, rgba(5, 5, 5, 0.2) 55%, var(--bg-dark) 100%),
        url('assest/img/servicios.png');
    background-position: center 8%;
}

body.page-soluciones .hero-container {
    background-image:
        linear-gradient(to bottom, rgba(5, 5, 5, 40) 0%, rgba(5, 5, 5, 0.2) 55%, var(--bg-dark) 100%),
        url('assest/img/soluciones.png');
    background-position: center 10%;
}


/* ==========================================================================
   04. BOTONES REUTILIZABLES
   ========================================================================== */

/* Botón con borde gradiente usado para Valkyros Risk Radar */
.btn-gradient-border {
    padding: 1px;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient-border:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
}

.btn-content {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 20px;
    border-radius: 9999px;
    background: var(--bg-dark);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-gradient-border:hover .btn-content {
    background: transparent;
}

/* Botón específico de la tarjeta Valkyros Risk Radar */
.btn-matrix {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 100px;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-matrix:hover {
    background: var(--brand-orange);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}


/* ==========================================================================
   05. FORMULARIOS
   ========================================================================== */

/* Inputs oscuros reutilizados en formularios */
.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-orange);
    outline: none;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}


/* ==========================================================================
   06. COMPONENTES DE INICIO
   ========================================================================== */

/* Estado activo del selector de problemas */
.active-tab {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Tarjeta visual del bloque Risk Radar */
.matrix-card {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

/* Movimiento vertical del texto estilo terminal */
.matrix-text-flow {
    animation: text-scroll 10s linear infinite;
}

@keyframes text-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}


/* ==========================================================================
   07. COMPONENTES DE SERVICIOS
   ========================================================================== */

/* Oculta visualmente la barra de scroll horizontal de las pestañas */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}

.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Contenido de pestañas de servicios */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   08. COMPONENTES DE METODOLOGÍA
   ========================================================================== */

/* Sección responsive: cards en mobile, timeline alternado en desktop */
.metodologia-section {
    background-color: var(--bg-dark);
}

.metodologia-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Línea central visible solo en desktop */
.metodologia-line {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        rgba(249, 115, 22, 0.8),
        rgba(168, 85, 247, 0.8),
        transparent
    );
}

.metodologia-step {
    position: relative;
    width: 100%;
}

.metodologia-card {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border: 1px solid;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.metodologia-card:hover {
    transform: translateY(-3px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
}

/* Ícono interno para evitar superposición con títulos */
.metodologia-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 1rem;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.04);
}

.metodologia-number {
    display: block;
    margin-bottom: 0.35rem;
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.metodologia-card h3 {
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.metodologia-card p {
    color: var(--text-soft) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.metodologia-output {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.25rem;
    font-family: monospace;
    font-size: 0.78rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ==========================================================================
   09. COMPONENTES DE CONTACTO Y FOOTER
   ========================================================================== */

/* Botón principal de emergencia en sección contacto */
.emergency-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(127, 29, 29, 0.08)),
        rgba(255, 255, 255, 0.02);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(239, 68, 68, 0.08);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.emergency-button:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.75);
    background:
        linear-gradient(135deg, rgba(239, 68, 68, 0.24), rgba(127, 29, 29, 0.12)),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 22px 60px rgba(239, 68, 68, 0.16);
}

.emergency-button__icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 113, 113, 0.35);
    border-radius: 0.9rem;
    background: rgba(239, 68, 68, 0.14);
    color: #f87171;
}

.emergency-button__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.emergency-button__label {
    color: #fca5a5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.emergency-button__title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.emergency-button__arrow {
    margin-left: auto;
    color: #f87171;
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.emergency-button:hover .emergency-button__arrow {
    transform: translateX(4px);
}

/* Botón discreto de emergencia en footer */
.footer-emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 0.75rem;
    background: rgba(239, 68, 68, 0.06);
    color: #fca5a5;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-emergency-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(248, 113, 113, 0.8);
    background: rgba(239, 68, 68, 0.16);
    color: #ffffff;
}

.footer-emergency-btn i {
    font-size: 0.75rem;
}


/* ==========================================================================
   10. UTILIDADES RESPONSIVE
   ========================================================================== */

@media (min-width: 1024px) {
    .metodologia-timeline {
        gap: 3rem;
    }

    .metodologia-step {
        display: flex;
    }

    .metodologia-step-left {
        justify-content: flex-start;
        padding-right: calc(50% + 2rem);
    }

    .metodologia-step-right {
        justify-content: flex-end;
        padding-left: calc(50% + 2rem);
    }

    .metodologia-card {
        max-width: 460px;
        padding: 2rem;
    }

    .metodologia-step-left .metodologia-card {
        text-align: right;
    }

    .metodologia-step-left .metodologia-icon {
        margin-left: auto;
    }

    .metodologia-step-left .metodologia-output {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero-container {
        min-height: 90vh;
        background-position: center center;
    }

    .matrix-card {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .metodologia-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .metodologia-card {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    .metodologia-card h3 {
        font-size: 1.2rem;
    }

    .metodologia-card p {
        font-size: 0.95rem !important;
    }

    .metodologia-output {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .emergency-button {
        align-items: flex-start;
        padding: 0.9rem;
    }

    .emergency-button__icon {
        width: 2.4rem;
        height: 2.4rem;
        min-width: 2.4rem;
    }

    .emergency-button__title {
        font-size: 0.95rem;
    }

    .emergency-button__arrow {
        display: none;
    }
}
/* ==========================================================================
   AJUSTES MOBILE PARA FORMULARIOS
   Evita problemas de interacción en dispositivos táctiles.
   ========================================================================== */

/* Elementos decorativos no deben bloquear taps/clicks */
.sensory-glow,
.pointer-events-none {
    pointer-events: none;
}

/* Elementos funcionales siempre deben poder recibir interacción */
a,
button,
input,
textarea,
select,
label,
form {
    pointer-events: auto;
}

/* Evita zoom automático en iPhone/Safari al tocar inputs */
@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   11. RESPONSIVE - CORRECCIONES MOBILE / TABLET
   --------------------------------------------------------------------------
   Cambios realizados:
   - Se agrega .glass (alias de .glass-nav) porque el nav usa esa clase.
   - Se agrega sistema de menú hamburguesa (botón + overlay + panel).
   - Se corrigen backgrounds para mobile.
   - Se ajustan paddings del hero en mobile.
   ========================================================================== */

/* ------------------------------------------------------------------
   CORRECCIÓN: El nav usa clase .glass pero el CSS solo tenía .glass-nav
   Se unifica para que el backdrop blur funcione en ambos casos.
   ------------------------------------------------------------------ */
.glass {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ------------------------------------------------------------------
   BOTÓN HAMBURGUESA
   Visible solo en mobile/tablet (< 768px).
   Usa degradé naranja-violeta acorde a la identidad de Valkyros.
   ------------------------------------------------------------------ */
.hamburger-btn {
    display: none; /* oculto por defecto; se muestra vía media query */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple));
    cursor: pointer;
    z-index: 60;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hamburger-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

/* Icono hamburguesa (tres líneas) */
.hamburger-btn .bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}
.hamburger-btn .bar:nth-child(1) { transform: translateY(-5px); }
.hamburger-btn .bar:nth-child(2) { }
.hamburger-btn .bar:nth-child(3) { transform: translateY(5px); }

/* Estado activo (menú abierto): transforma en X */
.hamburger-btn.is-active .bar:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger-btn.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active .bar:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ------------------------------------------------------------------
   MENÚ MOBILE (panel desplegable)
   Cerrado por defecto. Se abre al agregar clase .is-open.
   ------------------------------------------------------------------ */
.mobile-nav {
    display: none; /* oculto en desktop */
    position: fixed;
    top: 64px; /* altura aproximada del nav */
    left: 0;
    right: 0;
    z-index: 49;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 1.5rem 1.75rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-x: hidden;
}

.mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Links dentro del menú mobile */
.mobile-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--brand-orange);
}

/* Botón Risk Radar en menú mobile */
.mobile-nav .mobile-risk-radar {
    display: block;
    margin-top: 1.25rem;
    text-align: center;
}

.mobile-nav .mobile-risk-radar .btn-gradient-border {
    width: 100%;
    display: flex;
}

.mobile-nav .mobile-risk-radar .btn-content {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
}

/* ------------------------------------------------------------------
   MEDIA QUERIES - MOBILE / TABLET (< 768px)
   ------------------------------------------------------------------ */
@media (max-width: 767px) {

    /* Mostrar hamburguesa, ocultar menú desktop */
    .hamburger-btn {
        display: flex;
        position: relative; /* necesario para las barras absolutas */
    }

    .mobile-nav {
        display: block; /* permite transición; el is-open controla visibilidad real */
    }

    /* Ocultar el menú de links desktop (ya tiene hidden md:flex en Tailwind,
       pero lo reforzamos aquí por si acaso) */
    nav .desktop-links {
        display: none !important;
    }

    /* Ocultar el botón Risk Radar del nav desktop en mobile
       (aparecerá en el menú hamburguesa) */
    nav .desktop-risk-radar {
        display: none !important;
    }

    /* Hero: reducir padding superior en mobile para no desperdiciar espacio */
    .hero-container > header,
    .hero-container > section > header {
        padding-top: 5.5rem !important;
        padding-bottom: 3rem !important;
    }

    /* Ajuste hero min-height mobile */
    .hero-container {
        min-height: 95vh;
    }

    /* Background mobile: oscurecer más para legibilidad del texto */
    body.page-inicio .hero-container {
        background-image:
            linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 50%, var(--bg-dark) 100%),
            url('assest/img/w1.png');
        background-position: center center;
    }

    body.page-contacto .hero-container {
        background-image:
            linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 50%, var(--bg-dark) 100%),
            url('assest/img/w2.png');
        background-position: center center;
    }

    body.page-servicios .hero-container {
        background-image:
            linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 50%, var(--bg-dark) 100%),
            url('assest/img/w3.png');
        background-position: center center;
    }

    body.page-soluciones .hero-container {
        background-image:
            linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 50%, var(--bg-dark) 100%),
            url('assest/img/w4.png');
        background-position: center center;
    }

    /* Formulario: campos más espaciosos para táctil */
    .form-input {
        min-height: 48px;
        padding: 0.85rem 1rem !important;
    }

    textarea.form-input {
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    /* Nombre de marca en nav: reducir tamaño para que quepa con logo + hamburguesa */
    nav .brand-name {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }
}

/* ------------------------------------------------------------------
   CORRECCIÓN ADICIONAL: ocultar items desktop en mobile sin depender
   solo de Tailwind, para garantizar que funcione correctamente.
   ------------------------------------------------------------------ */
@media (max-width: 767px) {
    .desktop-risk-radar {
        display: none !important;
    }
    .desktop-links {
        display: none !important;
    }
    /* Mostrar hamburguesa correctamente */
    .hamburger-btn {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    /* Asegurar que el menú mobile nunca se vea en desktop */
    .mobile-nav {
        display: none !important;
    }
    /* Asegurar que hamburguesa no se vea en desktop */
    .hamburger-btn {
        display: none !important;
    }
}
