*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

h1, h2, h3{
    font-weight: normal;
}

body, html{
    height: 100%;
    overflow-x: hidden;
}

/*
    *GLOBAIS
*/

input[type=number]::-webkit-inner-spin-button { 
    -webkit-appearance: none;
    
}
input[type=number] { 
   -moz-appearance: textfield;
   appearance: textfield;

}

.container{
    max-width: 1200px;
    width: 100%;
    padding: 0 3%;
    margin: 0 auto;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: #FFCC00;
    transition: 0.3s;
}

/*
    *MENU MOBILE
*/

nav.mobile{
    display: none;
    color: #706F6F;
    margin: 20px 50px 0 0;
    cursor: pointer;
    
}

nav.mobile i{
    font-size: 57px;
    
}

nav.mobile .nav-icons{
    display: none;
}

nav.mobile ul{
    display: none;
    position: absolute;
    top: 99px;
    right: 0;
    width: 80%;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 2px 3px 24px rgba(0,0,0,0.40);
    border-radius: 10px;
    text-align: center;
    padding: 7px 30px 0 30px;
    z-index: 6;
}

nav.mobile li{
    padding: 15px;
    border-bottom: 2px solid #FFCC00;
    color: #706F6F;
}

nav.mobile li:last-child{
    border: 0;
}

nav.mobile .nav-icons-mobile i{
    font-size: 40px;
    padding: 15px;
    color: #706F6F;
}

nav.mobile .nav-icons-mobile a:hover i{
    color: #FFCC00;
}

/*
    * TOPO
*/

section.topo{
    height: 90%;
    position: relative;
    background-image: url("../images/bg1.jpg");
    background-size: cover;
    z-index: 0;
}

section.topo .layer{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 203, 8, 0.16);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

section.topo .container{
    position: relative;
    height: 100%;
}

section.topo .bg-menu{
    z-index: 2;
    background-color: white;
    width: 109%;
    height: 250px;
    position: absolute;
    left: -10px;
    top: -90px;
    box-shadow: 2px 3px 24px rgba(0,0,0,0.40);
    /*transform: translateX(-50%);*/
    transform: rotate(-7deg);
    border-radius: 20px;
}

header{
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    z-index: 6;
    position: relative;
}

.topo .logo{
    width: 170px;
    height: 172px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

nav.desktop{
    display: flex;
}

nav.desktop .nav-icons-mobile{
    display: none;
}

nav.desktop ul{
    padding: 13px 0;
    border-right: 1px solid #706F6F;
    height: auto;
}

nav.desktop li{
    display: inline-block;
    padding: 0 20px;
    font-size: 19px;
    font-weight: 500;
    color: #706F6F;
}

nav.desktop .nav-icons{
    padding-top: 5px;
    padding-left: 20px;
    font-size: 30px;
    color: #FFCB08;
}

nav.desktop .nav-icons i{
    padding: 0 3px;
}

nav.desktop .nav-icons a:hover{
    color: #706F6F;
    transition: 1s;
}

.form-topo{
    max-width: 400px;
    width: 100%;
    padding: 35px 27px 75px 27px; 
    position: absolute;
    bottom: -50px;
    right: 40px;
    z-index: 5;
    color: white;
    text-align: center;
}

.form-topo h2{
    font-size: 35px;
    font-weight: 600;
}

.form-topo p{
    padding: 5px 0 30px 0;
    font-weight: 300;
}

.form-topo .bg-form{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    border-radius: 13px;
    transform: skewY(-6deg);
    z-index: -1;
}

.form-topo .form-header{
    padding: 0 10px;
}

.form-topo input,
.form-topo textarea{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.form-topo input:focus,
.form-topo textarea:focus{
    border: 1px solid #FFCB08;
    outline: none;
    transition: .3s;
}

.form-topo input[type=submit]{
    display: block;
    width: 60%;
    margin: 20px auto 0 auto;
    font-weight: 600;
    background-color: #FDCF07;
    border: 2px solid transparent;
    cursor: pointer;
}

.form-topo input[type=submit]:hover{
    background-color: transparent;
    border: 2px solid #FFCC00;
    color: white;
    border-radius: 5px;
    transition: 0.4s;
}

.form-topo textarea{
    resize: none;
}

/*
    *SOBRE
*/

section.sobre{
    position: relative;
    padding: 100px 0;
    background-color: white;
    background-image: url('../images/bg2.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 137% 115%;
    z-index: 1;
    display: flex;
}

.sobre .img, .sobre .content{
    width: 50%;
}

.sobre .img{
    position: relative;
    height: auto;
    z-index: 1;
}

.sobre .img1{
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 350px;
    background-image: url('../images/img1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.sobre .img2{
    position: absolute;
    bottom: 40px;
    left: 15%;
    width: 70%;
    height: 290px;
    background-image: url('../images/img2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.sobre .missao-content, .sobre .sobre-content{
    position: relative;
}

.title-section{
    color: #706F6F;
    font-weight: 500;
    font-size: 35px;
}

.sobre .h2{
    position: absolute;
    top: -13px;
}

.sobre .sobre-content .h2{
    left: 150px;
}

.sobre .missao-content .h2{
    left: 15px;
}

.sobre .border{
    display: inline-block;
    border-bottom: 2px solid #FFCC00;
    height: 32px;
    vertical-align: bottom;
    position: relative;
}

.sobre .border1{
    width: 260px;
    border-right: 2px solid #FFCC00;
    left: -150px;
}

.sobre .border2{
    border-left: 2px solid #FFCC00;
    display: inline-block;
    width: 100%;
}

.sobre p{
    padding: 10px 150px 10px 0;
    color: #706F6F;
    line-height: 35px;
}

.sobre .missao-content{
    margin-top: 75px;
}

/*
    *Diferenciais
*/

section.diferenciais{
    padding: 80px 0;
    background-color: #f6f6f6;
}

.diferenciais .header{
    display: flex;
    flex-wrap: wrap;
}

.diferenciais .header .title{
    width: 30%;
    text-align: right;
    position: relative;
}

.diferenciais .header .title h2{
    position: absolute;
    top: -9px;
    right: 52px;
}

.diferenciais .header p{
    line-height: 25px;
    color: #706F6F;
    padding-left: 20px;
}

.diferenciais .header .content{
    width: 70%;
}

.border-yellow{
    height: 32px;
    width: 31%;
    border-bottom: 2px solid #FFCC00;
    border-right: 2px solid #FFCC00;
    position: relative;
    top: 40px;
    left: 0;
}

.diferenciais .bg-container{
    width: 100%;
    height: 480px;
    background-image: url('../images/bg-container.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-container .layer{
    position: absolute;
    top: 4%;
    left: 2.5%;
    width: 95%;
    height: 87%;
    margin: auto auto;
    background-color: rgba(255,204,0,0.50);
    z-index: -1;
}

.bg-container .icons-container{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.icons-container .container-single{
    width: 25%;
    text-align: center;
    color: white;
    padding: 0 50px;

}

.icon-single-container{
    width: 100%;
    height: 85px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.icons-container h3{
    margin-top: 20px;
    font-weight: 600;
    font-size: 21px;
}

/*
    *Galeria
*/

section.galeria{
    padding: 100px 0;
    position: relative;
    background-color: white;
    z-index: -2;
}

.galeria ul{
    padding-left: 40px;
    padding-top: 30px;
}

.galeria-bg1{
    width: 400px;
    height: 400px;
    background-image: url('../images/bg3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 130% 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.galeria-bg2{
    width: 400px;
    height: 400px;
    background-image: url('../images/bg2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -60% -60%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.galeria .border-box{
    position: absolute;
    width: 25%;
    top: 100px;
    right: 0;
}

.galeria .border-box .borda-yellow{
    border-bottom: 2px solid #FFCC00;
    border-left: 2px solid #FFCC00;
    height: 32px;
    padding-left: 25px;
}

.galeria .border-box .borda-yellow h2{
    position: relative;
    top: -15px;
    left: 0;
}

.galeria li{
    display: inline-block;
    padding: 0 20px;
    font-weight: 500;
}

.galeria li:first-child{
    display: inline-block;
    padding: 0 20px 0 80px;
}

.galeria .img-galeria{
    display: flex;
    flex-wrap: wrap;
    margin: 30px 3% 0 3%;
    z-index: 1;
}

.galeria .img-galeria .img-wraper{
    width: 33.3%;
    padding: 8px 12px;
}

.galeria .img-galeria .img-wraper .img{
    padding-top: 75%;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*
    *Message
*/

section.message{
    padding: 100px 0;
    text-align: center;
    background-image: url('../images/bg4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section.message h1{
    color: white;
    font-size: 40px;
    font-weight: 500;
}

.message .div-borda{
    height: 40px;
    width: 80%;
}

.message-borda1{
    border-top: 2px solid #FFCC00;
    border-right: 2px solid #FFCC00;

}

.message-borda2{
    margin-left: auto;
    border-bottom: 2px solid #FFCC00;
    border-left: 2px solid #FFCC00;
}

/*
    *Contato
*/

section.contato{
    padding: 100px 0;
    position: relative;
}

section.contato .line{
    text-align: center;
}

.contato .div-borda{
    width: 57%;
    border-bottom: 2px solid #FFCC00;
    border-right: 2px solid #FFCC00;
    height: 32px;
    position: relative;
    top: -27px;
    left: 0;
}

/*.contato .div-borda h2{
    position: absolute;
    top: -15px;
    right: 40px;
}*/

.contato .form-contato{
    max-width: 400px;
    padding: 10px;
    margin: 0 auto;
}

.form-contato input,
.form-contato textarea{
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #706F6F;
}

.form-contato textarea{
    resize: none;
}

.form-contato input:focus,
.form-contato textarea:focus{
    border: 1px solid #FFCB08;
    outline: none;
    transition: .3s;
}

.form-contato input[type=submit]{
    display: block;
    width: 70%;
    margin: 10px auto 0 auto;
    font-weight: 600;
    background-color: #FDCF07;
    border: 0;
    cursor: pointer;
    border: 2px solid transparent;
}

.form-contato input[type=submit]:hover{
    background-color: transparent;
    border: 2px solid #FFCC00;
    color: #3a3a3a;
    border-radius: 5px;
    transition: 0.4s;
}

.contato .contato-bg1{
    width: 400px;
    height: 400px;
    background-image: url('../images/bg6.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -30% 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.contato .contato-bg2{
    width: 400px;
    height: 400px;
    background-image: url('../images/bg5.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 130% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer{
    background-color: #706F6F;
}

footer .container{
    padding: 30px 5% 30px 5%; 
    display: flex;
    flex-wrap: wrap;
    color: white;
    font-size: 14px;
    line-height: 22px;
}

footer .logo{
    width: 150px;
    height: 152px;
    background-image: url('../images/logofooter.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

footer .footer-single{
    width: 25%;
    text-align: center;
}

.footer-wraper{
    display: inline-block;
    text-align: left;
}

footer .footer-single div{
    display: inline-block;
}

footer h3{
    font-weight: bold;
}

footer i{
    margin-right: 10px;
}

#icon-adress{
    position: relative;
    top: -20px;
    left: 0;
}

.footer-redes i{
    font-size: 25px;
    padding-top: 10px;
}

footer .last-line{
    text-align: center;
    border-top: 1px solid white;
    padding: 20px;
    color: white;
}

footer .last-line .text{
    display: inline-block;
}

footer .last-line p{
    display: inline-block;
}

footer .last-line .text span{
    display: inline-block;
    width: 51px;
    height: 16px;
    background-image: url('../images/logocamelo.png');
    background-size: contain;
    background-position: center;
    margin: 0 3px;
}

.alert-wraper{
    width: 100%;
    position: fixed;
    top: 20px;
    z-index: 1000;
    display: none;
}

.alert-wraper .container{
    display: flex;
    justify-content: center;
}

.alert{
    width: 80%;
    max-width: 400px;
    padding: 25px;
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    border-radius: 20px;
}

.success{
    background-color: #00a65a;
}

.error{
    background-color: #DD4B39;
}

.whats{
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 99999;
    background-image: url('../images/whats.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}