.banners-duplos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px; 
}

.banner-wrapper {
    width: 100%; 
    max-width: 625px;
    min-width: 0; 
}

.banner-duplo-carousel {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.banner-duplo-carousel img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    display: block;
}

@media screen and (max-width: 768px) {
    .banners-duplos-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .banners-duplos-container .desktop {
        display: none;
    }
    .banners-duplos-container .mobile {
        display: block;
    }
    
    .banner-duplo-carousel,
    .banner-duplo-carousel img {
        height: 250px;
    }
}

@media screen and (min-width: 769px) {
    .banners-duplos-container .desktop {
        display: block;
    }
    .banners-duplos-container .mobile {
        display: none;
    }
}