:root{

    --preto: rgb(30,30,30);
    --branco: #f3f3f3;
}

section.video_destaque{
    background-color: #2d2d2d;
    display: flex;
     align-content: center;
     justify-content: center;
     flex-direction: column;
     flex-wrap: wrap;
    padding: 5vh 0 10vh 0;
    /* margin-top: 12vh; */

    background-color: var(--branco);
    color: var(--preto);
}

section.video_destaque h2{
    color: var(--branco);
    font-size: 1.9em;
    margin-bottom: 30px;
    text-align: center;

    color: var(--preto);

}



.video-container {
    max-width: 50vw;
    width: 100%;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

@media screen and (orientation:portrait){
    .video-container {
        max-width: 90vw;
        width: 100%;
    }
}