/* ==========================================================================
   ESTILOS GENERALES Y ANIMACIONES CYBERPUNK
   ========================================================================== */
html { scroll-behavior: smooth; }
body {
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 50% 50%, #1a0a1a 0%, #000 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png') !important;
    background-attachment: fixed !important;
    margin: 0; padding: 0; color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    cursor: crosshair;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding-top: 100px;
}

/* Bloquear cursor text en toda la web excepto en inputs y textareas */
* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Permitir selección SOLO en inputs, textareas y elementos específicos */
input, textarea, .contacto-form input, .contacto-form textarea {
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
}

/* Evitar que aparezca cursor text al seleccionar */
p, h1, h2, h3, h4, h5, h6, span, div, section, nav, header, footer, a, button {
    cursor: auto !important;
    user-select: none !important;
}
/* EFECTO DE ESCANEO */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1) 50%);
    background-size: 100% 4px; pointer-events: none; opacity: 0.1; z-index: 1001;
}

/* ONDAS DE LUZ ANIMADAS */
body::after {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 204, 0.02) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: waveBackground 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(4, 6, 8, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 40px; box-sizing: border-box; z-index: 1000;
    animation: pulseBorder 4s infinite ease-in-out;
}
@keyframes pulseBorder {
    0%, 100% { border-bottom: 1px solid rgba(0, 255, 204, 0.1); }
    50% { border-bottom: 1px solid rgba(0, 255, 204, 0.3); }
}

@keyframes waveBackground {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* Animación de caída de Matrix */
@keyframes matrixFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Animación de parpadeo de estrellas */
@keyframes twinkleStar {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    25% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

.section {
    padding: 80px 20px 40px 20px; display: flex; flex-direction: column; align-items: center;
    min-height: auto; position: relative;
    animation: fadeIn 1.5s ease-out forwards;
}
.section.hero {
    padding-bottom: 20px;
    min-height: auto;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.section-title {
    font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900; letter-spacing: 5px;
    text-align: center; margin-bottom: 60px;
    animation: flicker 3s infinite alternate;
}
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; opacity: 1; }
    20%, 22%, 24%, 55% { opacity: 0.7; text-shadow: none; }
}

.cd-spinning {
    width: 80px; height: 80px; border-radius: 50%;
    animation: rotateCD 6s linear infinite;
    display: block; margin: 20px auto;
    border: 2px solid #00ffcc; box-shadow: 0 0 15px #00ffcc;
}
@keyframes rotateCD { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.isa-inicio-img {
    width: 140px !important; height: 140px !important; border-radius: 50%;
    border: 2px solid #ff00ff; display: block; margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}
.isa-inicio-badge { animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.neon-line {
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    background-size: 200% 100%;
    animation: moveLine 5s linear infinite; margin: 40px 0;
}
@keyframes moveLine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
/* ==========================================================================
   ESTRUCTURA ORIGINAL (BIO, GRID, CONTACTO, ETC.)
   ========================================================================== */
.nav-menu a { color: #fff; text-decoration: none; font-family: 'Orbitron', sans-serif; font-weight: 700; margin-left: 25px; font-size: 0.85rem; letter-spacing: 2px; transition: color 0.3s; }
.nav-menu a:hover { color: #00ffcc; text-shadow: 0 0 8px #00ffcc; }
.bio-container { max-width: 1100px; width: 100%; }
.bio-card { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.03); padding: 30px; border-radius: 12px; }
.tv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; width: 100%; margin-bottom: 60px; }
.contacto-form { background: rgba(255, 255, 255, 0.01); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.03); border-top: 3px solid #ff00ff; padding: 40px; border-radius: 12px; }
.input-group input, .input-group textarea { width: 100%; padding: 15px 18px; background: rgba(4, 6, 8, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; color: #fff; }
.form-submit-btn { background: linear-gradient(135deg, #ff00ff, #b300b3); color: #fff; border: none; padding: 16px; font-family: 'Orbitron', sans-serif; font-weight: 900; border-radius: 6px; cursor: pointer; }
.disco-card { background: rgba(255, 255, 255, 0.01); border: 1px solid rgba(0, 255, 204, 0.1); border-left: 3px solid #00ffcc; padding: 15px; border-radius: 12px; }
.footer-peke { width: 100%; padding: 40px 20px; background: rgba(4, 6, 8, 0.95); border-top: 1px solid rgba(0, 255, 204, 0.1); display: flex; justify-content: center; align-items: center; margin-top: 50px; }
*:focus { outline: none !important; }

/* ==========================================================================
   BIOGRAFÍA - ESTILOS CYBERPUNK
   ========================================================================== */
.bio-intro {
    max-width: 1100px;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.bio-intro p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.bio-intro strong {
    color: #00ffcc;
    text-shadow: 0 0 6px rgba(0, 255, 204, 0.4);
}

.tour-badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 10px 0;
}
.tour-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.05);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.1);
}
.tour-badge:hover {
    background: rgba(0, 255, 204, 0.12);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    transform: translateY(-2px);
}
.tour-title-badge {
    border-color: #ff00ff;
    color: #ff00ff;
    background: rgba(255, 0, 255, 0.05);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.1);
}
.tour-title-badge:hover {
    background: rgba(255, 0, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1100px;
}
.bio-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00ffcc;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.bio-card h3 i {
    margin-right: 8px;
}
.bio-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #aaa;
}
.bio-card strong {
    color: #fff;
}

.timeline-item {
    margin-top: 18px;
    padding: 12px 15px;
    border-left: 2px solid #ff00ff;
    background: rgba(255, 0, 255, 0.03);
    border-radius: 0 8px 8px 0;
}
.timeline-year {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff00ff;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.4);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.timeline-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

/* ==========================================================================
   RESPONSIVE MOBILE - CORRECCIONES PARA DISPOSITIVOS MÓVILES
   ========================================================================== */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        margin-left: 0;
        font-size: 0.75rem;
        padding: 8px 5px;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 60px 15px 30px 15px !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        letter-spacing: 3px;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bio-intro p {
        font-size: 0.95rem;
    }
    
    .tour-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    
    .contacto-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .contacto-form {
        width: 100%;
    }
    
    .discografia-grid, .sesiones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    #control-intro-flotante {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.6rem;
    }
    
    body {
        cursor: auto !important;
    }
    
    body, p, h1, h2, h3, h4, h5, h6, span, a {
        cursor: auto !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    header {
        padding: 10px 10px;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        margin-left: 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .isa-inicio-img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .input-group input, .input-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
}

/* ==========================================================================
   CORRECCION DE CURSOR - Evitar que aparezca cursor de texto donde no debe
   ========================================================================== */
html, body, div, section, nav, header, footer, a, button, span, h1, h2, h3, h4, h5, h6 {
    cursor: auto !important;
}

input, textarea {
    cursor: text !important;
}

a, button {
    cursor: pointer !important;
}

/* ==========================================================================
   CONTACTO - ESTILOS COMPLETOS Y RESPONSIVE
   ========================================================================== */
.contacto-container {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #00ffcc;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.contacto-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contacto-rrss-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-icon-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 6, 8, 0.7);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 8px;
    color: #00ffcc;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contacto-icon-link:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    transform: translateY(-3px);
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-contacto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    text-transform: uppercase;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
    color: #25d366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.1);
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.email-btn {
    background: rgba(255, 0, 0, 0.08);
    border-color: #ff3333;
    color: #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.1);
}

.email-btn:hover {
    background: #ff3333;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    transform: translateY(-2px);
}

/* ==========================================================================
   IMAGEN ISA - OPTIMIZACIÓN Y MEJORA DE PRESENTACIÓN
   ========================================================================== */
.isa-inicio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.isa-inicio-img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50%;
    border: 2px solid #ff00ff;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    object-fit: contain !important;
    background: rgba(255, 0, 255, 0.05);
    padding: 3px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.isa-inicio-link {
    text-decoration: none;
    display: block;
}

.isa-inicio-link:hover .isa-inicio-img {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: scale(1.05);
}

.isa-inicio-badge {
    animation: blink 2s infinite;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ff00ff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 0, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
}

/* ============================================================ 
   OPTIMIZACIONES MÓVIL - MENÚ COMPACTO 
   ============================================================ */

/* ============================================================
   MENÚ HAMBURGUESA - PROFESIONAL Y MODERNO
   ============================================================ */

/* Menú normal en escritorio */
.nav-menu {
    display: flex !important;
    gap: 25px !important;
    align-items: center !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
}

.nav-menu a {
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    border: none !important;
    display: inline-block !important;
    width: auto !important;
}

.nav-menu a:hover {
    color: #00ffcc !important;
    text-shadow: 0 0 8px #00ffcc !important;
}

/* Botón hamburguesa - solo en móvil */
.menu-toggle {
    display: none !important;
}

/* ============================================================
   RESPONSIVE - MÓVIL (768px y menos)
   ============================================================ */

@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(4, 6, 8, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(0, 255, 204, 0.1) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        box-sizing: border-box !important;
        z-index: 1000 !important;
        animation: pulseBorder 4s infinite ease-in-out !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 1 !important;
    }

    .logo img {
        width: 40px !important;
        height: 40px !important;
    }

    .logo span:first-child {
        font-size: 1.2rem !important;
    }

    .logo span:last-child {
        font-size: 0.8rem !important;
    }

    /* MOSTRAR botón hamburguesa */
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: none !important;
        border: none !important;
        color: #00ffcc !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        padding: 10px !important;
        transition: all 0.3s ease !important;
        z-index: 1001 !important;
    }

    .menu-toggle:hover {
        color: #ff00ff !important;
        transform: scale(1.1) !important;
    }

    .menu-toggle.active i::before {
        content: "\f00d" !important; /* Icono X */
    }

    /* MENÚ LATERAL - OCULTO POR DEFECTO */
    .nav-menu {
        position: fixed !important;
        top: 60px !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 300px !important;
        height: calc(100vh - 60px) !important;
        background: rgba(4, 6, 8, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border-left: 2px solid rgba(0, 255, 204, 0.2) !important;
        border-bottom: 1px solid rgba(0, 255, 204, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        overflow-y: auto !important;
        transition: right 0.3s ease !important;
        z-index: 999 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    }

    /* MENÚ ABIERTO */
    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu a {
        padding: 18px 25px !important;
        border-bottom: 1px solid rgba(0, 255, 204, 0.05) !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        color: #aaa !important;
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }

    .nav-menu a:hover {
        background: rgba(0, 255, 204, 0.08) !important;
        color: #00ffcc !important;
        text-shadow: 0 0 8px rgba(0, 255, 204, 0.4) !important;
        padding-left: 35px !important;
    }

    body {
        padding-top: 60px !important;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px !important;
    }

    .logo img {
        width: 35px !important;
        height: 35px !important;
    }

    .logo span:first-child {
        font-size: 1rem !important;
    }

    .menu-toggle {
        font-size: 1.1rem !important;
        padding: 8px !important;
    }

    .nav-menu {
        max-width: 280px !important;
    }

    .nav-menu a {
        padding: 14px 20px !important;
        font-size: 0.85rem !important;
    }

    body {
        padding-top: 55px !important;
    }
}
/* MENÚ HAMBURGUESA SIMPLE Y EFECTIVO */

/* ESCRITORIO - Normal */
@media (min-width: 769px) {
    #burger { display: none !important; }
    .nav-menu { display: flex !important; }
}

/* MÓVIL - Hamburguesa */
@media (max-width: 768px) {
    header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    #burger {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 60px !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 280px !important;
        height: calc(100vh - 60px) !important;
        background: rgba(4, 6, 8, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        border-left: 2px solid rgba(0, 255, 204, 0.2) !important;
        transition: right 0.3s ease !important;
        z-index: 999 !important;
        gap: 0 !important;
        margin: 0 !important;
    }
    
    .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 15px 25px !important;
        border-bottom: 1px solid rgba(0, 255, 204, 0.05) !important;
        color: #aaa !important;
        margin: 0 !important;
        width: 100% !important;
        transition: all 0.3s !important;
    }
    
    .nav-menu a:hover {
        background: rgba(0, 255, 204, 0.08) !important;
        color: #00ffcc !important;
        padding-left: 35px !important;
    }
}

@media (max-width: 480px) {
    #burger { font-size: 1.2rem !important; }
    .nav-menu { max-width: 250px !important; }
}