
/* Estilos banners publicitarios */
.banner-lateral {
    position: absolute;
    width: 200px;
    height: 1045px;
    top: 16px;
    /* Puedes ajustar la altura inicial */
    z-index: 9999;
    border: none;
}

#adlateralizq {
    left: -380px;
}

#adlateralder {
    right: -380px;
}

.banner-lateral img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* Banner móvil */
.banner-movil {
    display: none;
    position: fixed;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 65px;
    background: #fff;
    z-index: 9999;
    text-align: center;
}   

.banner-movil img {
    height: 100%;
    object-fit: contain;
}

/* Responsive: ocultar banners laterales en pantallas pequeñas */
@media screen and (max-width: 768px) {
    .banner-movil {
        display: block !important;
    }
}

/*Medidas portatiles*/
@media (max-width: 1366px) and (min-width: 1280px) {
    .banner-lateral {
       width: 180px;
    }
    #adlateralizq {
       left: -190px;
    }
    #adlateralder {
       right: -190px;
    }
}

/* Ocultar en pantallas pequeñas */
@media only screen and (max-width: 1300px) {
    .banner-lateral {
        display: none !important;
    }
}