/* ===== Banner Expo ===== */

.expo-banner{
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen siempre centrada */
.expo-banner-img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
}

/* Desktop */
@media(min-width:992px){

    .expo-banner{
        max-height: 750px;
    }

    .expo-banner-img{
        width: 100%;
        height: auto;
    }

}

/* iPhone y móviles pequeños */
@media(max-width:768px){

    .expo-banner{
        padding: 0;
    }

    .expo-banner-img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}