
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
}

html{
    background: #f7f7f7;
}


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

body h1,
body h2,
body h3,
body h4 {
    font-family: "Montserrat", 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;
}

footer{
    padding: 50px;
}

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


h1{
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #00b7e8;
    text-wrap: balance;
}

p{
    color: #707070;
}

.infos{
    max-width: 500px;
}

.foto{
    max-width: 500px;
}

main{
    padding: 50px;
}

main .logo{
    margin-bottom: 30px;
}


#bloco02{
    background: #e4e4e6;
    padding: 50px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    text-align: center;
}

#bloco02 .imagem{
    margin: 0 auto 30px;
}

.icones{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
}

.icone{
    text-align: center;
    width: 180px;
}

.icone img{
    margin-bottom: 10px;
}

.icone h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #001041;
}

.icone p{
    font-size: 1rem;
    color: #001041;
}


#bloco03{
    padding: 50px;
    text-align: center;
}

#bloco03 h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #00b7e8;
    font-weight: 900;
}

#bloco03 .icone h3{
    margin-bottom: 5px;
}

#bloco03 .icone{
    border-bottom: solid 5px #001041;
    padding-bottom: 10px;
}

#bloco04{
    border-radius: 30px;
    background: #001041;
    padding: 50px;
}

#bloco04 h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #00b7e8;
    font-weight: 900;
}

#bloco04 p{
    color: #fff;
    font-size: 1.2rem;
}

#bloco05{
    border-radius: 30px;
    background: #fff;
    padding: 50px;
    margin: 20px auto;
}

#bloco05 h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #00b7e8;
    font-weight: 900;
}

#bloco05 p{
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#bloco06{
    border-radius: 30px;
    background: rgb(234,234,234);
    background: linear-gradient(270deg, rgba(234,234,234,1) 0%, rgba(247,247,247,1) 100%);
    padding: 20px 50px;
    margin: 20px auto;
}

#bloco06 .foto img{
    max-width: 300px;
    scale: 1.2;
}

#bloco06 h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #00b7e8;
    font-weight: 900;
}

#bloco06 p{
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#bloco06 p a{
    color: #000;
    text-decoration: underline;
    line-height: 1.2;
    font-size: 1rem;
}


#bloco06 .app{
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#bloco06 .app .lojas{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


#comparativo{
    padding: 50px 0;
}

#comparativo p{
    color: #000;
}

#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.4rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    background: #00b7e8;
    color: #fff;
    padding: 10px;
    user-select: none;
    display: block;
    transition: all 0.3s;
}

.produto h3 a:hover{
    background: #22275b;

}

.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: 1rem;
    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;
}


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

    #bloco06{
        text-align: center;
        background: linear-gradient(0deg, rgba(234,234,234,1) 0%, rgba(247,247,247,1) 100%);
    }

    #bloco06 .foto img{
        scale: 1;
    }

    #bloco06 .app{
        justify-content: center;
    }
}


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

    .produto{
        cursor:col-resize;
    }

    #bloco03 h2, #bloco04 h2, #bloco05 h2, #bloco03 h6{
        font-size: 1.4rem;
    }
}

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

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

    .foto{
        min-width: auto;
    }
}


