/* Ajustes específicos para dispositivos móviles */
@media only screen and (max-width: 767px) {
    /* Ajustes para el slider en móviles */
    #page-slider {
        height: auto !important;
    }
    
    #page-slider .row {
        height: auto !important;
    }
    
    #page-slider .col-sm-3 {
        height: auto !important;
        margin-bottom: 15px;
        width: 100%;
    }
    
    #page-slider article {
        height: auto !important;
        max-height: 250px;
    }
    
    #page-slider article > a > div {
        height: 250px !important;
    }
    
    /* Ocultar controles de navegación en móviles */
    #page-slider .slider-nav {
        display: none;
    }
    
    /* Ajustes para el header en móviles */
    #page-header-mobile {
        background-image: url(../../images/sitio/1981.jpg);
        background-size: cover;
        background-position: center;
        padding: 10px 0;
    }
    
    #page-header-mobile .row {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        margin: 0;
    }
    
    #page-header-mobile img {
        max-height: 50px;
    }
    
    /* Ocultar la botonera original en móviles */
    .app-sidebar, 
    .main-sidemenu,
    .side-menu,
    .app-sidebar__overlay {
        display: none !important;
    }
    
    /* Nueva botonera móvil simple */
    .mobile-nav {
        display: flex !important;
        width: 100% !important;
        background-color: #333 !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        justify-content: space-around !important;
    }
    
    .mobile-nav-button {
        display: inline-block !important;
        color: white !important;
        text-align: center !important;
        padding: 10px 15px !important;
        text-decoration: none !important;
        font-weight: bold !important;
        font-size: 16px !important;
        border-radius: 5px !important;
        background-color: #007bff !important;
        width: 30% !important;
        box-sizing: border-box !important;
    }
}

/* Estilos para la nueva botonera móvil - se insertará con JavaScript */
.mobile-nav {
    display: none;
}

@media only screen and (max-width: 767px) {
    .mobile-nav {
        display: flex !important;
    }
}