@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
	
}

}
html{
    scroll-behavior: smooth;
}

.container{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.container1{ 

    max-width: 100%;
    margin: 0 auto;
	display: flex;
    align-items: center;
}

header{
    background-color: #267526;
    width: 100%;
    padding: 15px 4%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo{
    width: 25%;
}

.logo img{
    width: 200px;
    cursor: pointer;
}

.menu{
    width: 50%;
}

.menu nav a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding-right: 30px;
    padding-bottom: 8px;
    position: relative;
	font-family: Arial, Helvetica, sans-serif;
}

.menu nav a::after{
    content: " ";
    width: 0px;
    height: 4px;
	font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(45deg , #76A818, #0099CC);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.menu nav a:hover::after{
    width: 60px;
}

.menu nav a:hover{
    color: #ffffff;
}

.social{
    width: 25%;
}

.social button{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border: 0;
    cursor: pointer;
    background-image: linear-gradient(45deg , #76A818, #76A818);
    border-radius: 5px;
    transition: transform 0.5s;
}

.social button i{
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

.social button:hover{
    transform: scale(0.9);
}

/* estilização do conteúdo */

section{
    padding: 90px 4%;
    border-bottom: 1px solid #ccc;
}

section h2{
    font-size: 2em;
    margin-bottom: 25px;
}

section p{
    font-size: 20px;
}

.menu-mobile{
    background-color: #000000;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 77px;
    right: 0;
    width: 100%;
    height: 0;
	display: none;
    visibility: hidden;
    z-index: 1000;
    transition: 0.5s;
    overflow: hidden;
}

.menu-mobile nav a{
    display: block;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 20px;
    text-decoration: none;
}

.menu-mobile nav a:hover{
    background-color: #383838;
}

#btn-menu,
#btn-menu-close{
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1030px) {
    .menu,
    .social{
     display: none;
    }

    .logo{
        width: 100%;
    }

    #btn-menu,
    #menu-mobile{
        display: block;
    }

    #menu-mobile.active{
        height: calc(100vh - 77px);
        visibility: visible;
    }
}


/*--------------------------------------------------------------------------------------------------------------------------------------*/
/*Estiliza��o do Menu Mobile*/
/*--------------------------------------------------------------------------------------------------------------------------------------*/

.menu-mobile
{
background-color: #000000;
backdrop-filter: blur(10px);
position: absolute;
top: 77px;
left: 0px;
transition: width 0.5s;
width: 100%;
height: 0;
visibility: hidden;
transition: 0.5s;
overflow: hidden;

}

.menu-mobile nav a
{
color: #fff;
text-decoration: none;
display: block;
padding: 20px 30px;
font-size: 16pt;
}

.menu-mobile nav a:hover
{
background-color: #000000;

}

@media screen and (max-width: 830px){
.menu, .sociais{
display: none;
}
.logo{
width: 100%;
}

#btn-menu
 {
display: block;
    }


}

button {
    width: 50px;
    height: 50px;
    border: 4x solid #ccc;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;    
    }
	

    .linha
    { 
        position: relative;
        height: 3px;
        background-color: #fff;
        width: 25px;
        display: block;
        margin: 5px auto;
        transform-origin: center;
        transition: .2s;
    }
#btn-menu.ativar
{
    border: 2px solid red;
}
#btn-menu.ativar .linha:nth-child(1){
transform: translateY(8px) rotate(-45deg);
background-color: red;

}
.menu-mobile.abrir
{
visibility: visible;
height: calc(100vh - 77px);
}