.home_video {
    position: relative;
    width: 100%;
    height: 70vh; /* altura de 70% da viewport */
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cobre toda a área sem distorcer */
}

@media (max-width: 52em) {
    .home_video {
        height: auto; /* altura automática em dispositivos móveis */
    }
}