/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2026 | 05:50:09 */
/* ======================================================
   NAVBAR & NAVEGACIÓN
   ====================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 11, 22, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(204, 255, 0, 0.3);
}

.dot { color: var(--accent-color); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent-color); }

/* --- RESPONSIVIDAD NAVBAR --- */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color, #ffffff);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
        left: 0;
    }

    .menu-icon {
        display: block;
        z-index: 1002;
    }

    /* 👇 ESTADO OCULTO FORZADO (MÓVIL) */
    ul.nav-links {
        display: flex !important; /* Mantenemos la estructura activa */
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        background: rgb(2, 11, 22); /* Fondo 100% sólido, sin rgba */
        text-align: center;
        padding: 20px 0;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        
        /* Ocultamiento a prueba de fallos */
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-20px) !important;
        transition: all 0.4s ease-in-out;
        z-index: 999;
    }

    /* 👇 ESTADO VISIBLE FORZADO (MÓVIL) */
    ul.nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* Animación de la hamburguesa a una X (Intacta) */
    .menu-icon.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-icon.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-icon.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}