/* === Container do Swiper === */
.bt-ads-slider,
.swiper.bt-anuncios-slider {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* вл margin removido daqui e movido pro mobile */
}

/* Swiper base */
.swiper {
    width: 100%;
    height: auto;
}

/* Wrapper */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0 !important;
    row-gap: 0 !important;
}

/* Slide base */
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
    z-index: 2;
    margin: 0 !important;
    padding: 0 !important;
}

/* Banner base */
.bt-ad-banner {
    display: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background-color: #fff;
    z-index: 3;
    margin: 0 !important;
    padding: 0 !important;
}

/* Visibilidade */
.bt-ad-banner.bt-desktop-only {
    display: block;
}

.bt-ad-banner.bt-mobile-only {
    display: none;
}

/* === TOPO desktop fixo === */
.bt-anuncios-slider[data-local*="Topo"] .swiper-slide {
    height: 180px;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.bt-anuncios-slider[data-local*="Topo"] .bt-ad-banner.bt-desktop-only {
    width: 1456px;
    height: 180px;
}

/* === LATERAL === */
.bt-anuncios-slider[data-local*="Lateral"] .swiper-slide {
    margin-bottom: 6px !important;
    padding: 0 !important;
}

.bt-anuncios-slider[data-local*="Lateral"] .swiper-slide:last-child {
    margin-bottom: 0 !important;
}

.bt-anuncios-slider[data-local*="Lateral"] .bt-ad-banner {
    width: 1080px;
    height: auto;
}

/* === MOBILE === */
@media (max-width: 768px), (max-width: 480px) {
    .bt-ads-slider,
    .swiper.bt-anuncios-slider {
        margin: 0 auto !important;
    }

    .bt-ad-banner.bt-desktop-only {
        display: none !important;
    }

    .bt-ad-banner.bt-mobile-only {
        display: block !important;
    }

    .bt-anuncios-slider[data-local*="Topo"] .swiper-slide,
    .bt-anuncios-slider[data-local*="Topo"] .swiper-slide.swiper-slide-duplicate {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .bt-anuncios-slider .bt-ad-banner.bt-mobile-only {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        background-color: #fff !important;
    }

    .bt-anuncios-slider[data-local*="Lateral"] .swiper-slide {
        margin-bottom: 6px !important;
    }

    .bt-anuncios-slider[data-local*="Lateral"] .swiper-slide:last-child {
        margin-bottom: 0 !important;
    }
}

