/* ============================================================================
   ARQUIVO : /assets/css/home.css
   PROJETO : BomVendedor (.com)
   ORIGEM  : Extraído de /index.php (FASE 3A — centralização de CSS)
   DATA    : 14/07/2026
   NOTA    : Conteúdo movido byte a byte do bloco <style> original.
             Nenhuma regra foi alterada.
============================================================================ */
.home-top-slider-section {
    margin: 24px 0 8px;
}
.home-top-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid #dbe4ef;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.home-top-slider__track {
    position: relative;
    min-height: 320px;
}
.home-top-slider__slide {
    display: none;
    position: absolute;
    inset: 0;
}
.home-top-slider__slide.is-active {
    display: block;
    animation: homeTopSliderFade .45s ease;
}
.home-top-slider__link,
.home-top-slider__media {
    display: block;
    width: 100%;
    height: 100%;
}
.home-top-slider__media img,
.home-top-slider__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-top-slider__fallback {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 24px;
    text-align: center;
    color: #0f172a;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
}
.home-top-slider__fallback strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 10px;
}
.home-top-slider__fallback span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}
.home-top-slider__nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 12px;
}
.home-top-slider__btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.54);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(6px);
}
.home-top-slider__btn:hover {
    background: rgba(15, 23, 42, 0.72);
}
.home-top-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.home-top-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
    cursor: pointer;
}
.home-top-slider__dot.is-active {
    background: #ffffff;
    transform: scale(1.18);
}
@keyframes homeTopSliderFade {
    from { opacity: 0; transform: scale(1.01); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 1024px) {
    .home-top-slider__track,
    .home-top-slider__fallback {
        min-height: 280px;
    }
}
@media (max-width: 767px) {
    .home-top-slider-section {
        margin-top: 18px;
    }
    .home-top-slider {
        border-radius: 22px;
    }
    .home-top-slider__track,
    .home-top-slider__fallback {
        min-height: 220px;
    }
    .home-top-slider__btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .home-top-slider__fallback strong {
        font-size: 22px;
    }
}

.home-hero-showcase--ad {
    display: flex;
    align-items: stretch;
}
.home-hero-retangular-ad {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.home-hero-retangular-ad .bomads-slot,
.home-hero-retangular-ad .bomads-slot__link {
    width: 100%;
    height: 100%;
}
.home-hero-retangular-ad .bomads-slot__media,
.home-hero-retangular-ad .bomads-slot__card,
.home-hero-retangular-ad .bomads-slot__card img,
.home-hero-retangular-ad .bomads-slot__card video,
.home-hero-retangular-ad .bomads-slot img,
.home-hero-retangular-ad .bomads-slot video {
    width: 100%;
    height: 100%;
}
.home-hero-retangular-ad .bomads-slot img,
.home-hero-retangular-ad .bomads-slot video {
    object-fit: cover;
    border-radius: 24px;
}

