@import url(reset.css);

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

body{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333333;
    background: #333333;
    cursor: default;
}

.container{
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h2{
    text-transform: uppercase;
    font-size: 250%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FE9D6D;
}

.barra{
    width: 150px;
    margin: 0 auto;
    height: 2px;
    background: #dddddd;
}

.botao{
    text-align: center;
    margin-top: 50px;
}

.botao button{
    background: #FE9D6D;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.botao button:hover{
    background: #FE7E41;
}

/*menu*/

nav{
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 30px 0px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
}

h1 img{
    height: 60px;
}

.header__lista{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.header__item{
    margin-left: 30px;
    line-height: 40px;
    color: #ffffff;
    font-size: 120%;
    font-weight: bold;
    cursor: pointer;
}

.header__item:hover{
    color: #FE9D6D;
}

.header__menu{
    display: none;
}

.header__fechar{
    display: none;
}

/*banner*/

.banner{
    width: 100%;
    height: 600px;
    position: relative;
}

.banner__fundo{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.banner__box{
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 20;
    margin-top: 20px;
}

.banner__texto{
    color: #ffffff;
    font-size: 250%;
    margin-bottom: 10px;
    width: 40%;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 120%;
    text-transform: uppercase;
}

.banner__texto2{
    color: #ffffff;
    font-size: 120%;
    margin-bottom: 30px;
    width: 40%;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 120%;
    text-transform: uppercase;
}

.banner__botao{
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__whatsapp{
    background: #4BAF57;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    margin: 0px 10px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
}

.banner__whatsapp:hover{
    background: #40954A;
}

.banner__orcamento{
    background: #FE9D6D;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    margin: 0px 10px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
}

.banner__orcamento:hover{
    background: #FE7E41;
}

/*produtos*/

.produtos{
    background: #ffffff;
    padding: 80px 0px;
}

.produtos__lista{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.produtos__item{
    width: 30%;
    margin-top: 50px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.produtos__item .produtos__imagem{
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.produtos__item .produtos__imagem div{
    width: 100%;
    height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
}

.produtos__item:hover .produtos__imagem div{
    transform: scale(1.1);
}

.produtos__item .produtos__texto{
    background: #eeeeee;
    padding: 20px;
    box-sizing: border-box;
    
}

.produtos__item .produtos__nome{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 120%;
    height: 60px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 120%;
}

.produtos__item:hover .produtos__nome{
    color: #000000;
}

.produtos__item .produtos__valor{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.produtos__item .produtos__preco{
    font-size: 150%;
    font-weight: bold;
    color: #FE9D6D;
    width: 50%;
}

.produtos__item:hover .produtos__preco{
    color: #FE7E41;
}

.produtos__item .produtos__parcela{
    color: #999999;
    width: 50%;
    text-align: right;
}

.produtos__item:hover .produtos__parcela{
    color: #666666;
}

.produtos__div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.produtos__filtros{
    width: 25%;
    margin-top: 50px;
    border-radius: 5px;
    background: #eeeeee;
}

.produtos__filtros__titulo{
    padding: 20px;
    font-size: 120%;
    font-weight: bold;
    color: #FE9D6D;
}

.produtos__filtros__nome{
    font-size: 100%;
    padding: 20px;
    border-top: 1px solid #dddddd; 
    cursor: pointer;
}

.produtos__filtros__nome:hover{
    color: #FE9D6D;
}

.produtos__lista2{
    width: 70%;
}

.produtos__item2{
    width: 47%;
}

/*sobre*/

.sobre{
    background: #eeeeee;
    padding: 80px 0px;
    position: relative;
}

.sobre__div{
    width: 40%;
}

.sobre__imagem{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0px;
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.sobre__marca{
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 0%;
    right: 0%;
    background-image: url(../img/marca.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.sobre__texto{
    font-size: 120%;
    line-height: 150%;
    text-align: center;
    margin-top: 50px;
}

.sobre__lista{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sobre__item{
    width: 20%;
    margin-top: 50px;
    overflow: hidden;
    cursor: pointer;
}

.sobre__item div{
    width: 100%;
    height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
}

.sobre__item:hover div{
    transform: scale(1.1);
}

/*contato*/

.contato{
    background: #ffffff;
    padding: 80px 0px;
}

.contato__div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.contato__div2{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.contato__info{
    width: 50%;
}

.contato__form{
    width: 50%;
    position: relative;
}

.contato__icone{
    color: #FE9D6D;
    font-size: 200%;
    margin-right: 10px;
    width: 30px;
    text-align: center;
}

.contato__div2:hover .contato__icone{
    color: #FE7E41;
}

.contato__nome{
    font-size: 120%;
    font-weight: bold;
    line-height: 120%;
}

.contato__div2:hover .contato__nome{
    color: #000000;
}

.form{
    background: #eeeeee;
    padding: 20px;
    color: #333333;
    border: 0px;
    outline: none;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 120%;
    border-radius: 5px;
}

.form2{
    background: #ffffff;
    padding: 10px;
    color: #333333;
    border: 0px;
    outline: none;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    border-radius: 5px;
}

.view__form{
    margin-top: 20px;
    position: relative;
}

.view__fundo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(238,238,238,0.8);
    display: none;
}

.view__box{
    display: none;
    position: absolute;
    width: 90%;
    height: 40px;
    top: calc(50% - 20px);
    left: 5%;
    background: #FE9D6D;
    color: #ffffff;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
}

.contato__fundo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}

.contato__box{
    position: absolute;
    width: 80%;
    left: 10%;
    height: 50px;
    top: calc(50% - 25px);
    background: #FE9D6D;
    color: #ffffff;
    font-size: 100%;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    display: none;
    border-radius: 5px;
}

textarea.form{
    height: 100px;
    font-family: 'Roboto', sans-serif;
}

.contato .botao{
    margin-top: 0px;
}

/*footer*/

footer{
    background: #333333;
    padding: 80px 0px;
}

.footer__div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo{
    width: 30%;
}

.footer__logo img{
    height: 60px;
}

.footer__social{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__facebook{
    background: #4267B2;
    color: #ffffff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 120%;
    margin: 0px 10px;
    cursor: pointer;
    border-radius: 20px;
}

.footer__facebook:hover{
    background: #ffffff;
    color: #4267B2;
}

.footer__instagram{
    background: #DC004A;
    color: #ffffff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 120%;
    margin: 0px 10px;
    cursor: pointer;
    border-radius: 20px;
}

.footer__instagram:hover{
    background: #ffffff;
    color: #DC004A;
}

.footer__whatsapp{
    background: #4BAF57;
    color: #ffffff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 120%;
    margin: 0px 10px;
    cursor: pointer;
    border-radius: 20px;
}

.footer__whatsapp:hover{
    background: #ffffff;
    color: #4BAF57;
}

.footer__desenvolvido{
    text-align: right;
    width: 30%;
}

.footer__desenvolvido img{
    height: 40px;
}

.footer__texto{
    color: #999999;
    font-size: 90%;
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

.footer__wpp{
    background: #4BAF57;
    color: #ffffff;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 200%;
    cursor: pointer;
    border-radius: 30px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 95;
}

.footer__wpp:hover{
    background: #ffffff;
    color: #4BAF57;
}

.finalizacao{
    font-size: 150%;
    text-align: center;
    margin-top: 50px;
    line-height: 120%;
}

/*view*/

.view__div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 50px;
}

.view__galeria .view__div{
    margin-top: 0px;
    margin-bottom: 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.view__galeria{
    width: 55%;
}

.view__foto{
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

.view__foto__imagem{
    width: 100%;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.view__mini{
    width: calc(20% - 8px);
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    background-color: #eeeeee;
    margin-top: 20px;
    margin-right: 10px;
    box-sizing: border-box;
}

.view__mini:nth-child(5n){
    margin-right: 0px;
}

.view__info{
    background: #eeeeee;
    padding: 20px;
    box-sizing: border-box;
    width: 40%;
    border-radius: 5px;
}

.view__preco{
    font-size: 200%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FE9D6D;
}

.view__parcela{
    font-size: 120%;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.view__comprar{
    background: #FE9D6D;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    font-size: 150%;
    font-weight: bold;
}

.view__comprar:hover{
    background: #FE7E41;
}

.view__titulo{
    font-size: 150%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FE9D6D;
    text-transform: uppercase;
}

.view__texto{
    font-size: 120%;
    text-align: center;
    line-height: 120%;
}

.view__div2{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 7px 0 15px 0;
}

.view__div2 div:first-child{
    margin-right: 5px;
}

.view__div2 a{
    text-decoration: none;
    color: #333333;
    font-weight: bold;
}

.view__div2 a:hover{
    color: #FE9D6D;
}

/*checkout*/

.checkout__div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.checkout__box{
    width: 30%;
    background: #eeeeee;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
}

.checkout__box.off{
    background: #f9f9f9;
}

.checkout__titulo{
    font-size: 150%;
    font-weight: bold;
    padding-bottom: 20px;
    color: #FE9D6D;
    border-bottom: 1px solid #dddddd;
}

.off .checkout__titulo{
    color: #cccccc;
    border-bottom: 1px solid #eeeeee;
}

.checkout__form{
    background: #ffffff;
    padding: 10px 15px;
    color: #333333;
    border: 0px;
    outline: none;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    border-radius: 5px;
}

.off .checkout__form{
    color: #cccccc;
}

::placeholder {
    color: #cccccc;
}
  
:-ms-input-placeholder {
    color: #cccccc;
}
  
::-ms-input-placeholder {
    color: #cccccc;
}

.checkout__botao{
    background: #FE9D6D;
    color: #ffffff;
    padding: 10px 15px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    font-size: 120%;
}

.off .checkout__botao{
    background: #cccccc;
}

.checkout__voltar{
    background: #cccccc;
    color: #ffffff;
    padding: 10px 10px;
    text-align: center;
    border: 0px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    font-size: 100%;
}

.off .checkout__voltar{
    background: #ffffff;
    color: #cccccc;
}

.projetos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.projetos__item{
    width: calc(33.33% - 2vh);
    margin-right: 3vh;
    height: 30vh;
    margin-top: 3vh;
    overflow: hidden;
}

.projetos__item div{
    width: 100%;
    height: 30vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}

.projetos__item:hover div{
    transform: scale(1.2);
}

.projetos__item:nth-child(3n){
    margin-right: 0;
}

.projetos__item:last-child{
    margin-right: 0;
}

@media only screen and (orientation:portrait){
    h2{
        font-size: 200%;
    }
    .barra{
        width: 100px;
    }
    .botao button{
        padding: 10px 20px;
    }
    .header__lista{
        z-index: 99;
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: #333333;
    }
    .header__item{
        margin: 10px 0px;
        line-height: 100%;
        font-size: 200%;
    }
    .header__menu{
        display: block;
        color: #FE9D6D;
        font-size: 150%;
        cursor: pointer;
    }  
    .header__fechar{
        position: absolute;
        top: 20px;
        right: 20px;
        display: block;
        color: #FE9D6D;
        font-size: 150%;
        cursor: pointer;
    }  
    .banner{
        height: 400px;
    }
    .banner__texto{
        margin-top: 30px;
        font-size: 150%;
        width: 90%;
    }
    .banner__texto2{
        width: 90%;
        font-size: 70%;
    }
    .banner__botao{
        display: block;
    }
    .banner__whatsapp{
        padding: 10px 15px;
    }
    .banner__orcamento{
        margin-bottom: 20px;
        padding: 10px 15px;
    }
    .produtos__item{
        width: 100%;
    }
    .sobre{
        padding: 80px 0px 230px 0px;
    }
    .sobre__div{
        width: 100%;
    }
    .sobre__imagem{
        position: absolute;
        width: 100%;
        height: 150px;
        top: calc(100% - 150px);
        left: 0px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .sobre__item{
        width: 33.33%;
    }
    .sobre__item:nth-child(4){
        display: none;
    }
    .sobre__item:nth-child(5){
        display: none;
    }
    .contato__div{
        display: block;
    }
    .contato__div2{
        justify-content: center;
    }
    .contato__info{
        width: 100%;
    }
    .contato__form{
        width: 100%;
    }
    .form{
        padding: 10px;
    }
    .footer__div{
        display: block;
        justify-content: center;
    }
    .footer__logo{
        text-align: center;
        width: 100%;
    }
    .footer__social{
        margin: 30px 0;
        width: 100%;
    }
    .footer__desenvolvido{
        text-align: center;
        width: 100%;
    }
    .produtos__div{
        display: block;
    }
    .produtos__filtros{
        width: 100%;
        margin-top: 50px;
    }
    .produtos__lista2{
        width: 100%;
    }
    .produtos__item2{
        width: 100%;
    }
    .banner__mobile{
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .view__div{
        display: block;
    }
    .view__galeria .view__div{
        display: flex;
    }
    .view__galeria{
        width: 100%;
    }
    .view__foto{
        height: 250px;
    }
    .view__foto__imagem{
        height: 250px;
    }   
    .view__info{
        margin-top: 50px;
        width: 100%;
    }  
    .view__mini{
        height: 60px;
    } 
    .checkout__div{
        display: block;
        margin-top: 0px;
    }
    .checkout__box{
        margin-top: 50px;
        width: 100%;
    }
    .projetos__item{
        width: 100%;
        height: 25vh;
        margin-top: 3vh;
        overflow: hidden;
        margin-right: 0;
    }
    .projetos__item div{
        width: 100%;
        height: 25vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: all 0.5s ease;
        transform: scale(1);
    }
    .projetos__item:hover div{
        transform: scale(1.2);
    }
}