*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: "Playfair Display", serif;
}



header{
    display: flex;
    justify-content: space-between;
    height: 45px;
    background-color: black;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.253);
    width: 100%;
    align-items: center;
}


header #primeiro-p{
    font-size: 1.2em;
    padding: 5px 15px;
    
}

header #segundo-p{
    font-size: 1.2em;
    margin-right: 10px;
    
}

#icon1 {
    width: 1.2em;
    height: 1.2;  
    fill: #f7f7f7;
    margin-top: 4px;
}

#icon1:hover{
    fill: gray;
}

header img{
    width: 33px;
    height: 33px;
    margin-top: 7px;
    margin-left: 0px;
}


header a{
    color: #fff;

}

header a:hover{
    color: white;
    text-decoration: none;
}




  


/*-=============================================================================================-*/








main{
    color: rgba(226, 226, 226, 0.952);
    height: auto;
    display: grid;
    grid-template-columns: 51px auto 51px;
    grid-template-rows: 50px 300px 123px 105px 40px;
    height: auto ;
    overflow: hidden;
    position: relative;
    background-image: url(1-folha\ 1\ imagem\ otimizada_1x.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    object-fit: cover;
}

main h1{
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-size: 2.8em;
    font-family: "Playfair Display", serif;
    z-index: 1;
}

main p{
    grid-column: 2/3;
    grid-row: 3/4;
    text-align: center;
    font-size: 1.1em;
    z-index: 1;
    margin-top: 17px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.918);
}

main #main-a{
    grid-column: 2/3;
    grid-row: 4/5;
    text-decoration: none;
    border: 1px solid black;
    justify-self: center; 
    align-self: center;   
    padding: 10px 20px;
    z-index: 1;
    background-color: rgba(219, 219, 219, 0.952);
    border-radius: 5px;
    color: black;
    box-shadow: 8px 7px 5px rgba(255, 255, 255, 0.253);
    position: relative;
    overflow: hidden;
}



main #main-a::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color:rgb(170,170,170);
    transition: all 0.3s ease;
    z-index: -1;
}

main #main-a:hover::before{
    left: 0;
    background-color:rgb(170, 170, 170);
    
}




/*-=============================================================================================-*/





.container-carrossel {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
    margin-top: 0;
    grid-column: 1/4;
    grid-row: 1/2;
    align-self: start
}


.carrossel-infinite {
    display: flex;
    width: max-content; 
    gap: 2rem;
    animation: slide-infinito 25s linear infinite;
}


.card {
    flex-shrink: 0;
    color: #fff;
    font-family: serif; 
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9; 
}

@keyframes slide-infinito {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carrossel-infinite:hover {
    animation-play-state: paused;
}



/*-=============================================================================================-*/




section{
    color: white;
    height: auto;
    display: grid;
    grid-template-columns: 15px 1fr 15px;
    grid-template-rows: 40px 70px 300px 160px 50px;
    background-image: url(2-\ trabalho\ otimizado\ 1276px_1x.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    
}

section h1{
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 2.2em;
    text-align: center;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

section p{
    grid-column: 2/3;
    grid-row: 3/4;
    font-size: 1.2em;
    text-align: center;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

section strong{
    color: rgba(255, 255, 255, 0.774);
}

section #quadrado1{
    grid-column: 2/3;
    grid-row: 4/5;
}

section img{
    border-radius: 5px;
    width: 83px;
    height: 83px;
    grid-row: 4/5;
}

section #imagens{
    display: grid;
    grid-column: 2/3;
    grid-row: 4/5;
    display: flex;
    justify-content: center;
}   

section #quadrado11, #quadrado33{    
    justify-content: center;
    align-self: flex-start;
    animation: balanca-baixo 10s ease infinite;
}

section #quadrado22, #quadrado44{
    justify-content: center;
    align-self: flex-end;
    animation: balanca-cima 10s ease infinite;
    
}

@keyframes balanca-baixo{
    0%,100% {transform: translateX(0);}
    50% {transform: translateY(20px);}
}

@keyframes balanca-cima{
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(-40px);}
}





/*-=============================================================================================-*/

nav{
    height: auto;
    color: rgba(255, 255, 255, 0.829);
    display: grid;
    grid-template-columns: 15px 1fr 15px;
    grid-template-rows: 70px 90px 20px auto 20px auto 70px auto;
    background-image: url(4-\ grafico\ otimizado_1x.webp);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid white;
} 

nav h1{
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: center;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffffd8;;
    font-size: 2.2em;
    margin-bottom: 25px;
}

nav p{
    grid-column: 2/3;
    grid-row: 4/5;
    text-align: center;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-size: 1.3em;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:  1px 0px 5px 0px rgba(0, 162, 255, 0.26);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav #p2{
    grid-column: 2/3;
    grid-row: 6/7;
    text-align: center;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 1.3em;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: "Playfair Display", serif;
}

/*=========================================================*/


footer{
    height: auto;
    display: grid;
    grid-template-columns: 15px 1fr 15px;
    grid-template-rows: 50px auto 40px auto 40px auto 40px auto 50px 1px;
    background-image: url(3-\ ambiente\ janela\ 1920px\ _1x.webp);
    background-size: cover;
    background-position: center;
}


footer #quadra-1{
    grid-column: 2/3;
    grid-row: 2/3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}


footer #quadra-2{
    grid-column: 2/3;
    grid-row: 4/5;
    border: 2px solid rgba(255, 255, 255, 0.2);
}


footer #quadra-3{
    grid-column: 2/3;
    grid-row: 6/7;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

footer #quadra-4{
    grid-column: 2/3;
    grid-row: 8/9;
    display: none;

}


footer h2{
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 1.4em;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

footer p{
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.605);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    font-size: 1.2em;
}

footer a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.815);
    min-height: 46px;
    line-height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2em;
    color: white;
    text-decoration: none;
}

footer a:hover{
    background-color: white;
    color: black;
    transition: 0.7s;
    
}

footer i{
    font-size: 0.8em;
}


footer .seta{
    width: 1em;
    height: 1em;
    vertical-align: middle; 
    margin-left: 8px;    
    fill: currentColor;
}






/*-============================================================-*/



article{
    display: grid;
    grid-template-columns: 11px auto 11px;
    grid-template-rows: 10px 80px auto auto auto 60px 30px;
    background-image: url(5-\ agua\ caindo\ 1920px_1x.webp);
    background-color: black;
    background-position: center;
    background-size: cover;
    row-gap: 20px;
    
}

article h1{
    text-align: center;
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 2.2em;
    color: #ffffffd8;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-self: center;
    padding: 10px;
    
}

article p{
    text-align: center;
    grid-column: 2/3;
    grid-row: 4/5;
    font-size: 1.1em;
    text-align: center;
    justify-content: center;
}

article .fotos{
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

article #foto1{
    grid-column: 2/3;
    grid-row: 3/4;
    border: 2px solid rgba(255, 255, 255, 0.2);
    
}

article #foto2{
    grid-column: 2/3;
    grid-row: 4/5;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

article #foto3{
    grid-column: 2/3;
    grid-row: 5/6;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

article #foto4{
    border: 2px solid rgba(255, 255, 255, 0.2);
}   

article #pp2{
    grid-column: 2/3;
    grid-row: 6/7;
    color: white;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.601);
    height: 40px;
    line-height: 1.2;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}   

article a{
    color: rgb(255, 255, 255);
}

article a:hover{
    color: #ffffffb0;
}

@keyframes pulse{
    0% {transform: scale(1);}
    50% {transform: scale(0.9)}
    100% {transform: scale(1);}
}


















/*-==============================================================================================-*/

aside{
    display: grid;
    height: auto;
    grid-template-columns: 15px 1fr auto 1fr 15px;
    grid-template-rows: 45px auto 50px auto 50px auto 20px auto 20px auto 20px auto auto 60px;
    text-align: center;
    background-color: rgb(0, 0, 0);
    background-image: url(6-\ janela\ atras\ 1920px_1x.webp);
    background-size: cover;
    background-position: center;
}


aside h1{
    grid-column: 3/4;
    grid-row: 2/3;
    font-size: 2.1em;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border-radius: 15px;
    padding: 10px;
}

aside a{
    grid-column: 3/4;
    grid-row: 4/5;
    color: white;
    text-decoration: none;

}

aside .social-links {
    grid-column: 3/4;
    grid-row: 4/5;
    display: flex;            
    justify-content: center; 
    gap: 30px;               
    align-items: center;
}

aside a:hover{
    background-color: rgba(255, 255, 255, 0.205);
}


aside #insta, #ttk, #whats{
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none;
    padding: 4px;
    
}

aside #ttk{
    color: purple;
    grid-column: 3/4;
    justify-content: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px;
    background-color: #070707;
}

aside #ttk2{
    width: 58px;
    height: 54px;
    fill: purple;
}

aside #insta{
    color: rgb(243, 112, 134);
    grid-column: 3/4;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px;
    background-color: #070707;
}

aside #insta2{
    width: 58px;
    height: 54px;
    fill: rgb(243, 112, 134);;
}

aside #whats{
    color: green;
    grid-column: 3/4;
    justify-content: flex-end;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px;
    background-color: #070707;
    
}

aside #whats2{
    width: 58px;
    height: 54px;
    fill: green;
}

aside #whats:hover{
    background-color: rgba(128, 128, 128, 0.592);
}

aside #ttk:hover{
    background-color: rgba(128, 128, 128, 0.592);
}

aside #insta:hover{
    background-color: rgba(128, 128, 128, 0.592);
}



aside #inicio-final{
    grid-column: 3/4;
    grid-row: 6/7;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 15px;
    background-color: rgba(22, 22, 22, 0.493);
    
}

aside #inicio-final2{
    grid-column: 3/4;
    grid-row: 8/9;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 15px;
    background-color: rgba(22, 22, 22, 0.493);
    
}

aside #inicio-final3{
    grid-column: 3/4;
    grid-row: 10/11;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 15px;
    background-color: rgba(22, 22, 22, 0.493);
    
}

aside #inicio-final4{
    grid-column: 3/4;
    grid-row: 13/14;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 15px;
    background-color: rgba(22, 22, 22, 0.493);
}

aside #inicio-final, #inicio-final2, #inicio-final3, #inicio-final4{
        font-size: 1.2em;
}

aside #inicio-final:hover{
    background-color: white;
    color: #070707;
    transition: 0.6s;
}

aside #inicio-final2:hover{
    background-color: white;
    color: #070707;
    transition: 0.6s;
}

aside #inicio-final3:hover{
    background-color: white;
    color: #070707;
    transition: 0.6s;
}

aside #inicio-final4:hover{
    background-color: white;
    color: #070707;
    transition: 0.6s;
}






aside i{
    font-size: 45px;
}



img{
    width: 100%;
    height: 100%;
}   



@media (min-width: 1px) and (max-width: 344px){
    article #pp2{
        font-size: 0.9em;
    }

    #a11{
        font-size: 1.9em;
        margin-bottom: 5px;
    }

    section{
        grid-template-columns: 15px 1fr 15px;
        grid-template-rows: 40px 70px 300px 1px 50px;
    }

    section img{
        display: none;
        
        
    }

    section h1{
        margin-top: 10px;
    }

    section p{
        margin-top: 40px;
    }
}

@media (min-width: 394px) and (max-width: 423px){

    #pp2{
        font-size: 0.95em;
    }

}


@media (min-width: 345px) and (max-width: 393px){
    article #pp2{
        font-size: 0.95em;
    }

    #a11{
        font-size: 2em;
    }
}


@media (min-width:497px){
    section img{
    border-radius: 5px;
    width: 102px;
    height: 102px;
    grid-row: 4/5;
    object-fit: cover;
}
}   

@media (min-width: 704px) and (max-width: 900px) {

    main{
        background-image: url(1-folha\ 1\ imagem\ otimizada_1x.webp);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        
        object-fit: cover;
    }

    main h1{
        font-size: 3.3em;
    }

    section img {
        border-radius: 5px;
        width: 115px;
        height: 115px;
    }

    article .fotos{
        width: 90%;
        height: 100%;
        align-self: center;
        justify-self: center;
    }


}




@media (min-width: 900px) and (max-width: 1307px){


header{
    height: 45px;
}


/*=================================================*/


    main h1{
        font-size: 3.5em;
    }

    main p{
        font-size: 1.4em;
    }

    main a{
        font-size: 1.2em;
    }

    /*=================================================*/



    section{
        height: 800px;
        display: flex;
        align-content: stretch;
        flex-wrap: wrap;
        align-items: self-start;
    }

    section h1{
        flex: 1 0 100%;
        font-size: 3em;
    }

    section p{
        flex-direction: column;
        flex: 1 0 45%;
        justify-items: center;
        flex-wrap: wrap;
        display: flex;
        text-align: center;
        margin-left: 40px;
        font-size: 1.5em;
    }

    section #imagens{
        flex: 1 0 49%;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-content: space-around;
        gap: 3px;
    }

    section img{
        width: 140px;
        height: 140px;
    }

    @keyframes balanca-baixo{
        0%,100% {transform: translateX(0);}
        50% {transform: translateX(80px);}
}

    @keyframes balanca-cima{
        0%,100% {transform: translateX(0);}
        50% {transform: translateX(-80px);}
}
/*========================================================*/

    nav h1{
        font-size: 2.4em;
    }

    nav p{
        font-size: 1.4em;
    }

    nav #p2{
        font-size: 1.4em;
    }

    nav .quadras{
    flex-wrap: nowrap;
    width: 100%;
    height: 165px;
    border-radius: 15px;
    background-color: #1a1a1a;
    display: flex;
    text-align: center;
    
}

    nav .quadras h2{
        flex: 0 1 25%;
        height: 90%;
        text-align: center;
        align-content: center;
        font-size: 2.3em;
        border-right: 1px solid white;
    }

    nav .quadras p{
        flex: 0 1 75%;
        height: 70%;
    }

    nav .quadras a{
        flex: 0 1 70%;
        height: 30%;
        justify-content: center;
        align-content: center;
    }

    nav .espaco{
        height: 1%;
        flex: 0 1 25%;
    }

/*========================================================*/
    
    article{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }

    article h1{
        margin-top: 10px;
        font-size: 2.4em;
        width: 100%;
        
    }

    article .fotos{
        width: 80%;
        height: 450px;
        margin-bottom: 20px;
        border-radius: 10px;
        
    }

    article #pp2{
        padding: 60px;
        justify-self: flex-start;
        justify-content: flex-start;
        justify-items: flex-start;
        align-self: center;
        background-color: rgba(0, 0, 0, 0.7);
    }

    section p{
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 50px;
    }
}

@media (min-width:1307px) and (max-width: 1920px){

    section{
        height: 800px;
        display: flex;
        align-content: stretch;
        flex-wrap: wrap;
        align-items: self-start;
    }

    section h1{
        flex: 1 0 100%;
        font-size: 3em;
    }

    section p{
        flex-direction: column;
        flex: 1 0 45%;
        justify-items: center;
        flex-wrap: wrap;
        display: flex;
        text-align: center;
        margin-left: 40px;
        font-size: 1.5em;
        padding: 80px 5px;
    }

    section #imagens{
        flex: 1 0 49%;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-content: space-around;
        gap: 3px;
    }

    section img{
        width: 140px;
        height: 140px;
    }

}



@media (min-width: 919px) and (max-width: 1920px){
    nav{
        height: auto;
        display: grid;
        grid-template-columns: 40px 1fr 50px 1fr 40px;
        grid-template-rows: 100px auto 15px auto 100px;
        background-position: left;
    }

    nav h1{
        grid-column: 2/5;
        grid-row: 2/3;
        justify-content: end;
    }

    nav p{
        grid-column: 2/3;
        grid-row: 4/5;
        font-size: 1.5em;
        padding: 50px 10px;
        height: 100%;
    }

    nav #section-p{
        align-self: start;
    }   

    nav #p2{
        grid-column: 4/5;
        grid-row: 4/5;
        font-size: 1.5em;
        align-self: start;
        padding: 50px 10px;
    }


    header{
        height: 55px;
    }


}


@media (min-width: 873px) and (max-width:1920px){


    main p{
        font-size: 1.4em;
    }

    article{
        display: grid;
        grid-template-columns: 40px auto 15px auto 40px ;
        grid-template-rows: 45px auto 35px auto 35px auto 35px 50px 45px;
        gap: 0px;
    }

    article h1{
        grid-row: 2/3;
        grid-column: 2/5;
    }

    article #foto1{
        grid-row: 4/5;
        grid-column: 2/3;
        width: 100%;
        height: 100%;
    }

    article #foto2{
        grid-row: 4/5;
        grid-column: 4/5;
        width: 100%;
        height: 100%;
    }

    article #foto3{
        grid-column: 2/3;
        grid-row: 6/7;
        width: 100%;
        height: 100%;
        
    }

    article #foto4{
        grid-row: 6/7;
        grid-column: 4/5;
        width: 100%;
        height: 100%;
    }


    article #pp2{
        grid-column: 2/-2;
        grid-row: 8/9;
        border: 2px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px;
        height: 50px;
        align-self: center;
        justify-self: center;
        display: flex;
        justify-content: center; 
        align-items: center;   
        text-align: center;
    }

    article a{
        margin-left: 4px;
    }

    aside #inicio-final, #inicio-final2, #inicio-final3, #inicio-final4{
        width: 700px;
        height: 40px;
        font-size: 1.3em;
    }

    footer {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        grid-template-rows: auto auto; 
        gap: 10px; 
        padding: 40px 15px; 
        height: auto; 
    }

    
    footer #quadra-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: 100%; 
    }

    footer #quadra-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        height: 100%;
    }

    footer #quadra-3 {
        
        grid-column: 1 / 2; 
        grid-row: 2 / 3;
        height: 100%;
        margin-top: 10px;
    }

    footer #quadra-4{
        grid-column: 2/3;
        grid-row: 2/3;
        height: 100%;
        margin-top: 12px;
    }

    
    footer #quadra-1, 
    footer #quadra-2, 
    footer #quadra-3,
    footer #quadra-4 {
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        box-sizing: border-box; 
    }

    footer p {
        flex-grow: 1;
    }
}

    article p{
        font-size: 1.2em;
    }



@media (min-width: 1232px) and (max-width:1920px){
    main h1{
        font-size: 4em;
    }
}


@media (min-width: 1300px) and (max-width:1920px){

    header, main, section, nav, article, aside, footer {
        max-width: 1300px; 
        margin-left: auto;  
        margin-right: auto; 
        border-left: 1px solid rgba(255,255,255,0.1);
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    body {
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative; 
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fundo-cinza descarte.webp');
    background-repeat: repeat;
    background-size: cover; 
    filter: blur(8px); 
    z-index: -1; 
    transform: scale(1.1); 
}

    header{
        height: 62px;
        font-size: 1.2em;
    }

    header img{
        width: 37px;
        height: 37px;
        margin-top: 7px;
        margin-left: 0px;
    }

    

    main{
        grid-template-columns: 151px auto 151px;
        min-height: 750px;
        background-image: url(1-folha\ 1\ imagem\ otimizada_1x.webp);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: "Poppins", sans-serif;
        object-fit: cover;
    }
    
    main h1{
        font-size: 4em;
    }
    
    main p{
        font-size: 1.5em;
    }
    
    main img{
        object-fit: cover;
    }

    main a{
        font-size: 1.4em;
    }

    img {
    image-rendering: auto; 
    image-rendering: -webkit-optimize-contrast; 
}







    section{
        min-height: 850px;
        display: flex;
        align-content: stretch;
        flex-wrap: wrap;
        align-items: self-start;
        
    }

    section h1{
        flex: 1 0 100%;
        font-size: 3.2em;
    }

    section p{
        flex-direction: column;
        flex: 1 0 45%;
        justify-items: center;
        flex-wrap: wrap;
        display: flex;
        text-align: center;
        margin-left: 40px;
        font-size: 1.5em;
        margin-bottom: 80px;
    }


    

    section #imagens{
        flex: 1 0 49%;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-content: space-around;
        gap: 3px;
    }

    section img{
        width: 140px;
        height: 140px;
    }

    @keyframes balanca-baixo{
        0%,100% {transform: translateX(0);}
        50% {transform: translateX(80px);}
}

    @keyframes balanca-cima{
        0%,100% {transform: translateX(0);}
        50% {transform: translateX(-80px);}}



    article .fotos{
        width: 80%;
        height: 550px;
        margin-bottom: 20px;
        border-radius: 10px;
        justify-self: center;

    }
}


