:root{
    --preto: #2d2d2d;
    --branco: #f3f3f3;
}

section.fotos_destaque{
    background-color: var(--branco);
    color: var(--preto);
    padding-inline: 10%;
    padding-top: 30px;
    padding-bottom: 8vh;
}

section.fotos_destaque h2{
    font-size: 1.9em;
    margin-bottom: 30px;
    text-align: center;
}

section.fotos_destaque .flex_container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

section.fotos_destaque .flex_container img{
    width: 450px;
    max-width: 95vw;
}


@keyframes fade {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@media screen and (orientation:portrait){

    section.fotos_destaque{
        background-color: var(--branco);
        color: var(--preto);
        padding-inline: 1%;
        padding-top: 30px;
        padding-bottom: 8vh;
    }

    section.fotos_destaque .box{
        animation: appear2 5s linear;
        animation-timeline: view();
        animation-range: entry -5% cover 25%;
    }


    section.fotos_destaque .flex_container img{
        width: 450px;
        max-width: 95vw;
        animation: fade 3s linear;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
}