﻿
/*ANIMACION DE PUBLICIDAD PANTALLAS PEQUEÑAS*/
.contenedor-banner {
    height: 120px;
}

.contenedor-publicidad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.publicidad-movil {
    display: flex;
    position: fixed;
    padding: 8px 0px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}



.carousel-container-banner {
    width: 320px;
    height: 770px;
    overflow: hidden;
    /* Para ocultar las imágenes fuera del contenedor */
    border-radius: 16px;
}

.carousel-container {
    width: 320px;
    height: 100px;
    overflow: hidden;
    /* Para ocultar las imágenes fuera del contenedor */
    border-radius: 16px;
}

.carousel {
    display: flex;
    width: fit-content;
    /* Ajusta el ancho al contenido total de las imágenes */
    transition: transform 0.5s ease-in-out;
}

    .carousel img {
        width: 320px;
      
        border-radius: 16px;
    }





/*PANTALLAS ESCRITORIO*/
@media (min-width: 1190px) {

    /*ANIMACION DE PUBLICIDAD PANTALLAS PEQUEÑAS*/
    .contenedor-banner {
        display: none;
    }

    .contenedor-publicidad {
        display: none;
    }

    .banner {
        /*  position: fixed;
        top: auto;
        align-self: self-end;
        width: 320px;
        height: 720px;
        flex-shrink: 0;
        right: 0;*/

        display: flex;
        width: 320px;
        height: 720px;
    }
}

/*PANTALLAS ESCRITORIO*/
@media (max-width: 480px) {
    .carousel img {
        width: 320px;
        height: 100px;
        border-radius: 16px;
    }
}

@media (max-width: 1190px) and (min-width: 320px) {
    .banner {
        display: none;
    }
}
