* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

body {
    /* background-color: #354255; */
    background-color: #E3E3E3;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Estilo do header */

header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    transition: .5s;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 150px;
}
/*Estilo do menu dinamico*/

header .logo img.logo-preta {
    display: none;
}

header.rolar{
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 0 8px #00000061;
}

header.rolar .menu-desktop nav ul li a{
    color: #477737;
}

header.rolar .btn-contato button{
    border: 1px solid #477737;
    color: #477737;
}

header.rolar .btn-contato button:hover {
    background-color: #477737;
    color: #fff;
}

header.rolar .logo .logo-branca{
    display: none;
}

header.rolar .logo .logo-preta{
    display: block;
}

/*----------------------------------*/


header .menu-desktop nav ul {
    list-style-type: none;
}

header .menu-desktop nav ul li {
    display: inline-block;
    margin: 0 40px;
}


header .menu-desktop nav ul li a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.menu-desktop nav a:hover {
    transform: scale(1.05);
}

header .btn-contato button{
    width: 140px;
    height: 50px;
}

header .btn-contato button, .hero-site button, .sobre button {

    font-size: 18px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;

}

header .btn-contato button:hover, .hero-site button:hover, .sobre button:hover {
    background-color: #fff;
    color: #354255;
}

/* Estilo do botão do menu mobile */

header .btn-menu-mob{
    display: none;
    position: relative;
    z-index: 99999999999999999999;
}


header .btn-menu-mob div{
    background-color: #fff;
    height: 3px;
    margin: 10px 0;
    transition: .2s;
}

header .btn-menu-mob .line-menumob-1{
    width: 30px;

}

header .btn-menu-mob .line-menumob-2{
    width: 20px;

}

header.rolar .btn-menu-mob div{
    background-color: #d07541;
}

header .btn-menu-mob .line-menumob-1.ativo1{
    transform: rotate(45deg) translate(30%);
}

header .btn-menu-mob .line-menumob-2.ativo2{
    transform: rotate(-45deg) translate(30%);
    width: 30px;
}


/* ------------------------------------------------- */

/* Estilo do menu mobile */

header .menu-mobile{
    width: 0;
    height: 0;
    background-color: #354255;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .5s;

}

header .menu-mobile nav{
    width: 100%;
}

header .menu-mobile nav ul{
    list-style-type:    none;
}


header .menu-mobile nav a{
    font-size: 24px;
    text-decoration: none;
    color: #d07541;
    padding: 20px 0;
    display: block;
    transition: .5s;
}

header .menu-mobile nav a:hover{
    background-color: #d07541;
    color: #354255;
    box-shadow: 0 0 20px #d07541;
}

header .menu-mobile.abrir{
    width: 100%;
    height: 100vh;
}

body.no-overflow{
    overflow: hidden;
}

/* /Estilo do menu mobile */



/* Estilo do Hero */

section.hero-site {
    height:98vh;
    background-image: url(/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    
}

.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .txt-hero h1{
    color: #99bd41;
    font-size: 3em;
    line-height: 60px;
    font-weight: 200;
    margin: 20px;
    
}
.hero-site .txt-hero h1 span{
    display: block;
    font-weight: 800;
    
}

.hero-site .txt-hero p{
    font-size: 20px;
    font-weight: 300;
    margin: 20px;
}

.hero-site .txt-hero p span{
    display: block;
}

.hero-site button{
    width: 220px;
    height: 60px;
    margin: 20px;
    font-size: 20px;
}

/* estilo dos serviços */

section.servicos{
    padding: 80px 0;
    margin: 50px;

        
}

.servicos .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.servicos .itens-container .img-itens img{
    max-width: 360px;
}

.servicos .itens-container .txt-itens h3{
    font-size: 2em;
    line-height: 50px;
    margin-bottom: 20px;
    
}
.itens-container .txt-itens h3 span{
    font-weight: 300;
}

/* Estilo dos botoes de contato*/
section.contato{
    background-color: #d8d8d8;
    padding: 80px 0;
}

.txt-contato, .icons-contato{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3{
    font-size: 2.5em;
    line-height: 50%;
    font-weight: 300;
    margin-bottom: 30px;
}
.contato .txt-contato h3 span{
    display: block;
    font-weight: 700;
    
}

.contato .icons-contato a{
    text-decoration: none;
}

.contato .icons-contato button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: transparent;
    border: 2px solid #000;
    cursor: pointer;
    transition: .5s;
}

.contato .icons-contato button i{
    font-size: 20px;
}
.contato .icons-contato button:hover{
    background-color: #000;
}
.contato .icons-contato button:hover i, .contato .icons-contato button:hover p{
    color: #fff;
}

/*Estilo da sessão sobre*/

section.sobre{
    height: 600px;
    background-image: url(images/bg_desc.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    color: #fff;
}

.sobre > .overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000c2;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sobre > .interface{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    position: relative;
}

.sobre h3{
    font-size: 2em;
    line-height: 20px;
    font-weight: 200;
}

.sobre h3 span{
    display: block;
    font-weight: 600;
}

.sobre p{
    margin: 20px 0;
    font-size: 18px;
    font-weight: 100;
}

.sobre button{
    width: 220px;
    height: 60px;
}

/* estilo da sessão como funciona */
section.como-funciona{
    padding: 80px 0;
}
.txt-funciona, .instrucoes{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.como-funciona .txt-funciona{
    position: sticky;
    top: 50%;
    padding-bottom: 22px;
}

.como-funciona .txt-funciona h3{
    font-size: 3em;
    line-height: 60px;
    font-weight: 300;
}
.como-funciona .txt-funciona h3 span{
    display: block;
    font-weight: 700;
}

.instrucoes .instru-box{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border: 2px solid #000;
    padding: 20px;
}

.instrucoes .instru-box img{
    max-width: 50px;
}
.instrucoes .instru-box h4{
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.instrucoes .instru-box h4 span{
    font-weight: 300;
}

.instrucoes .instru-box p{
    font-size: 15px;
    line-height: 20px;
}

/* estilo footer */

footer{
    background-color: #161616;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

footer .top-footer button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    color: #ffff;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    transition: .5s;
}
footer .top-footer button:hover{
    background-color: #fff;
    color: #000;
}

footer .middle-footer{
    margin: 20px 0;
}
footer .middle-footer a{
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 10px;

}
footer .bottom-footer{
    border-top:  2px solid #fff;
    }

footer .bottom-footer p{
    color: #fff;
    margin-top: 10px;
}

footer .cidade{
    color: #99bd41;
    font-size: 12px;
}

/* Botão flutuante Whats */

.whats{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999999999999999999999999999999999;
  
}
/* /Botão flutuante whats */


/*maps*/

.maps{
    padding: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    
 
}

.end{
    font-weight: 600;
    color: #477737;
    padding: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 600px;
    justify-content: center;
}