/* 1. ELIMINAR LA BARRA ROSA GIGANTE DE ARRIBA (PORTADA) */
#site-header-portada, 
.site-header-portada, 
#site-header-banner {
    display: none !important;
}

/* 2. QUITAR EL FONDO ROSA DE LOS COSTADOS (MÁRGENES Y FONDO GLOBAL) */
body, 
#site-wrapper, 
#site-content, 
.site-content, 
.body-container, 
#body-container {
    background-color: #09090b !important;
    background: #09090b !important;
    background-image: none !important;
}

/* 3. MENÚ DE NAVEGACIÓN EN MÓVILES (Menos de 480px) */
@media (max-width: 480px) {
    .navbar .navbar-inner {
        background-color: #000000 !important; /* Fondo negro para contraste */
        color: #ffffff !important; /* Texto blanco para mejor visibilidad */
        border: none !important;
    }
    
    .navbar .navbar-inner a {
        color: #ffffff !important; /* Texto blanco */
        font-weight: bold !important; /* Texto más grueso */
        transition: color 0.2s ease; /* Hover más suave */
    }

    .navbar .navbar-inner a:hover {
        color: #e6007e !important; /* Fucsia oficial de UEU al pasar el cursor */
    }
}