/**
 * Banner hero vídeo: overlay e fallback mobile.
 * Vídeo é ocultado em <768px via .d-none .d-md-block; poster é exibido via .d-block .d-md-none no template.
 */
.banner-hero-wrap {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.banner-hero-wrap .banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-hero-wrap .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .banner-hero-wrap .banner-video {
        display: none !important;
    }
}
