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


body {
    font-size: 16px;
    color: #010101;
    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: 1182px;
    margin: 0 auto 30px;
}

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

.gap{
    gap: 30px;
}

.gapm{
    gap: 10px;
}

.gapg{
    gap: 50px;
}

.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;
    text-align: center;
}





#comparativo{
    padding: 50px 0;
}

#comparativo .container{
    overflow-x: auto;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    align-items: flex-start;
}

.produto{
    min-width: 300px;
    text-align: center;
    flex: 1;
}

.produto p{
    user-select: none;
}
 
.produto img{
    margin-bottom: 20px;
    padding: 0 40px;
}

.produto h3 a{
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    background: #F2B910;
    color: #fff;
    padding: 10px;
    user-select: none;
    display: block;
}

.produto h3 a:hover{
    color: #000;
}

.produto p.tit{
    font-size: 0.6rem;
    text-align: left;
    padding:10px 20px 2px;
    margin-bottom: 0;
    line-height: 1;
}

.produto p.data{
    font-size: 0.8rem;
    text-align: left;
    padding:0 20px 10px;
    margin-bottom: 0;
    border-bottom: solid 1px #576069;
    line-height: 1;
    text-wrap: balance;
    min-height: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.produto p.data:last-child{
    border: none;
}

main{
    text-align: center;
}

h1{
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #F2B910;
}

section h2{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #010101;
}

section p, main p{
    color: #010101;
    margin-bottom: 20px;
    font-size: 1.2rem;
}


section p strong{
    color: #F2B910;
}

section h3{
    color: #F2B910;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
}

section .info p strong{
    color: #010101;
    font-size: 3rem;
}

.separador{
    height: 80px;
    width: 1px;
    background: #010101;
}



p.categoria{
    color: #010101;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}


main .laranja{
    background: #F2B910;
    border-radius: 20px;
    padding: 20px 0;
}

main p{
    max-width: 900px;
    margin: 0 auto 20px;
    text-wrap: balance;
}

.logo{
    margin-bottom: 20px;
}

p.bignumber{
    display: flex;
    max-width: 400px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin: 0 auto;
}

p.bignumber strong{
    font-size: 6rem;
}

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

    .separador{
        display: none;
    }
}



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

    .produto{
        cursor:col-resize;
    }

    h1{
        font-size: 3rem;
    }
    
    section h2{
        font-size: 2rem;
    }

    main .laranja{
        padding: 20px;
    }
}

