
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Orbitron:wght@400..900&display=swap');


body {
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
    line-height: 1;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: "Orbitron", sans-serif;
    line-height: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly
}

.center {
    justify-content: center
}

.between {
    justify-content: space-between
}

.wrap{
    flex-wrap: wrap;
    gap: 30px;
}

.column{
    flex-direction: column;
}

main, section, footer{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


h1{
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

p{
    color: #000;
}

.infos{
    max-width: 500px;
}

p.categoria{
    background: #dea602;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 10px;
    display: inline-block;
    margin: 40px 0 10px;
}

section .container h2{
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

main{
    background: url(../img/bg-amarelo.webp) center top no-repeat;
    background-size: cover;
}

main .container{
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 80%);
    padding: 50px;
}

main p{
    font-size: 1.4rem;
}

.foto{
    min-width: 300px;
}

main .foto{
    max-width: 550px;
    transform: scale(1.3);
    transform-origin: right center;
}

#bloco2{
    background: #353535;
}


#bloco2 .container{
    background: linear-gradient(90deg, rgba(242,185,16,0) 0%, rgba(242,185,16,0) 95%, rgba(242,185,16,1) 95%);
    padding: 50px;
}



#bloco2 h2{
    border-left: solid 5px #f2b910;
    padding-left: 10px;
}

#bloco2 p{
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
}

#bloco3{
    background: #201f1f;
    position: relative;
}

#bloco3 .container{
    padding: 50px 0;
}

#bloco3::after{
    content: "";
    background: #f2b910;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
}


#bloco3 .container .flex{
    justify-content: center;
    gap: 30px;
}

#bloco3 h2{
    border-left: solid 5px #f2b910;
    padding-left: 10px;
}

#bloco3 p{
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
}

#bloco3 .foto{
    max-width: 500px;
}

#bloco4{
    background: #cfcfcf;
    text-align: left;
}

#bloco4 .container{
    padding: 50px;
}

#bloco4 h2{
    color: #000;
    border-left: solid 5px #f2b910;
    padding-left: 10px;
}

#bloco4 .infos{
    max-width: 400px;
    text-wrap: balance;
}

#bloco4 .foto{
    max-width: 500px;
}

#bloco4 p{
    font-size: 1.2rem;
    line-height: 1.2;
}



#bloco5 .container{
    padding: 50px;
}

#bloco5 h2{
    border-left: solid 5px #f2b910;
    padding-left: 10px;
    color: #000;
    display: inline-block;
    margin-bottom: 30px;
}

#bloco5 .infos{
    max-width: none;
    text-align: center;
}

#bloco5 p{
    color: #000;
    font-size: 1.2rem;
    line-height: 1.2;
}

footer{
    background: #fff;
}

footer .container{
    padding: 50px;
}


@media screen and (max-width: 1170px) {

    #bloco3 .container{
        padding: 50px;
    }

    #bloco3 .container .flex{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #bloco3 h2{
        border-left: none;
        padding: 20px 0 0;
        border-top: solid 5px #f2b910;
    }

    main .foto{
        transform: scale(1);
    }

}




@media screen and (max-width: 700px) {

    main .flex{
        margin-top: 30px;
    }

    main .container{
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 80%); 
    }

}

@media screen and (max-width: 480px) {
    h1{
        font-size: 2.4rem;
    }

    section .container h2{
        font-size: 1.6rem;
    }

    p.categoria{
        font-size: 1rem;
    }

    .foto{
        min-width: auto;
    }
}

