/*
* SEÇÃO HERO DO VÍDEO
* - Container principal para o vídeo de fundo.
*/
.hero-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Oculta a versão mobile por padrão */
.hero-video-section-mobile {
    display: none;
}

.hero-video-section-desktop {
    height: 85vh; /* Altura para desktop */
}

/*
* VÍDEO DE FUNDO (DESKTOP)
* - Garante que o vídeo cubra toda a seção sem distorção.
*/
#heroVideoDesktop {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
height: 100%;
    object-fit: contain; /* Alterado para 'cover' para evitar bordas pretas */
    z-index: -2;
}

/*
* VÍDEO DE FUNDO (MOBILE)
* - Ajusta o vídeo para telas verticais
*/
#heroVideoMobile {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vw;
    height: auto;
    object-fit: cover;
    z-index: -2;
}

/*
* CAMADA DE SOBREPOSIÇÃO (OVERLAY)
* - Adiciona um filtro de cor sobre o vídeo para melhor legibilidade do texto.
*/
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/*
* MEDIA QUERIES PARA RESPONSIVIDADE
*/
@media (max-width: 768px) {
    /* Exibe a versão mobile e oculta a de desktop */
    .hero-video-section-desktop {
        display: none;
    }
    .hero-video-section-mobile {
        padding-top:200px;
        display: flex;
         height: 45vh; /* Ajusta a altura da seção para mobile */
    }
}