
@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;
}

main .flex{
    align-items: flex-start;
}


h1{
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 30px 0 10px;
    color: #fff;
    border-top: solid 3px #4d5964;
    padding-top: 30px;
}

p{
    color: #fff;
}

.infos{
    max-width: 500px;
}

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

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

main{
    background: #fff url(../img/bg-branco-01.webp) center right no-repeat;
}

main .container{
    background: linear-gradient(270deg, rgba(238,117,51,0) 0%, rgba(238,117,51,0) 20%, rgba(238,117,51,1) 20%);
    padding: 50px;
}


main p{
    font-size: 1.4rem;
}

.foto{
    min-width: 300px;
}



#bloco2 .container{
    background: #ee7533;
    padding: 0;
}

#bloco2 h2{
    border-left: solid 5px #4d5964;
    padding-left: 10px;
    font-size: 2.4rem;
}

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

#bloco2 .infos{
    max-width: 300px;
    padding: 50px;
}

#bloco3{
    background: #fff url(../img/bg-branco-02.webp) center top no-repeat;
    background-size: cover;
}

#bloco3 .container{
    background: linear-gradient(270deg, rgba(238,117,51,0) 0%, rgba(238,117,51,0) 95%, rgba(238,117,51,1) 95%);
    padding: 50px;
}

#bloco3 h2{
    border-left: solid 5px #4d5964;
    padding-left: 10px;
    color: #ee7533;
}

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

#bloco4{
    background: #4d5964;
    text-align: center;
}

#bloco4 .container{
    padding: 50px;
}

#bloco4 h2{
    color: #fff;
    padding-top: 30px;
    position: relative;
}

#bloco4 .espaco{
    margin-top: 80px;
    background: url(../img/bg-branco-03.webp) center top no-repeat;
}

#bloco4 h2::before{
    content: "";
    background: #ee7533;
    width: 60px;
    height: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
}

#bloco4 .espaco .infos{
    text-wrap: balance;
    max-width: 500px;
    text-align: left;
}


#bloco4 .espaco h2::before{
    display: none;
}

#bloco4 .espaco h2{
    padding-top: 0;
    border-left: solid 5px #ee7533;
    padding-left: 20px;

}

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

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

#bloco5{
    background: url(../img/mouse-reaction-05.webp) center top no-repeat;
    background-size: cover;
    aspect-ratio: 1;
    text-align: left;
}

#bloco5 .container{
    padding: 50px;
}

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

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

footer{
    background: #fff;
}

footer .container{
    padding: 50px;
}


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

    #bloco2 .infos{
        max-width: none;
    }

    #bloco2 .foto{
        flex-grow: 1;
    }

    #bloco2 .foto img{
        width: 100%;
    }
}


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

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

    main .container{
        background: linear-gradient(0deg, rgba(238,117,51,0) 0%, rgba(238,117,51,0) 20%, rgba(238,117,51,1) 20%);
    }

    main{
        background-position: right bottom;
    }

}

@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;
    }
}

