*{
    font-family: "Roboto", sans-serif; 
}

/*variaveis*/
:root{
    --cor-primary:rgb(51, 228, 51);
}


/*Navegação*/
header {
    text-align: center;
    
}

/*botao*/
.hamberger{
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    margin-right: 20px;
    transition: 0.5s;
    z-index: 99;
}
.linha{
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background-color: white;
    display: block;
    margin: 6px auto;
    position: relative;
    transform-origin: center;
    transition: 0.7s;
    
}

button.ativar .linha:nth-child(1){
    transform: translateY(10px) rotate(-40deg);
}
button.ativar .linha:nth-child(2){
    opacity: 0;
}
button.ativar .linha:nth-child(3){
    transform: translateY(-8px) rotate(40deg);
}
/*fim botao*/

header .container-nav{
    position: fixed;
    width: 100%;
    z-index: 5;
    background-color: transparent;
    transition: 0.8s;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;

}
.container-nav.rolagem{
    backdrop-filter: blur(30px);
    padding-bottom: 5px;
    height: 100px;
}


.botao-nav {
    background:var(--cor-primary);
    margin-right: 20px;
    border: 2px solid var(--cor-primary);
    border-radius: 5px;
    text-align: center;
    transition: 0.5s;
    font-size: 18px;
    font-weight: 500;
    display: inline-block; 
    transition: 0.5s;
    height: 30px;
    
      
}
.botao-nav a{
    text-decoration: none;
    color: white;
    
}

.botao-nav:hover{
    background-color: transparent;
}

.diferenca::before{
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    border-radius: 4px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cor-primary);
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
}
.container-paragrafo li{
    position: relative;
    
}
.diferenca:hover:before{
    visibility: visible;
    width: 100%;
}

.diferenca a { 
    color: white;
    text-decoration: none;
    transition: 0.5s;
    display: inline-block; 
    transition: transform 0.3s;
    font-size: 18px;
    font-weight: 500;
    padding: 0 8px;
    padding-bottom: 5px;
    
   
}
.diferenca a:hover{ 
    color:var(--cor-primary);  
}
li{
    list-style: none;  
}
.texto p{
    font-size: 25px;
    font-weight: 500;
    padding-left: 20px;
    padding-top: 5px;
}

.texto a{
    text-decoration: none;
}
.texto img{
    width: 100px;
}
.texto p span{
    color: var(--cor-primary);
}
header .flex{
    justify-content: space-between;
    text-align: center; 
}
.container-paragrafo{
    display: flex;
    text-align: center;
    gap: 50px;
    margin-top: 10px;  
}
/*Mobile menu*/

.mobile-menu{
    transform:translateX(800px) ;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    z-index: 5;
    transition: 0.5s ease-in-out;
    opacity: 0;
    display: none;

}
.nav-links-mobile{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 1.2rem;
    width: 50%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.mobile-menu img{
    width: 150px;
}
.nav-links-mobile h2 span{
    color: var(--cor-primary);
}
.nav-links-mobile a{
    list-style: none;
    text-decoration: none; 
    color: white;
    transition: .5s;
}
.nav-links-mobile a:hover{
    color: var(--cor-primary);
}
.nav-links-mobile button{
    width: 60%;
}

.flex-menu{
    transform: translateX(0);
    opacity: 1;
}
@media (max-width:780px){
    .container-paragrafo{
        display: none;
    }
    .hamberger{
        display: block;
    }
    .close{
        display: block;
        
    }
    .nav-link-button{
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .nav-link-button button{
        padding: 0;
        margin: 0;
    }
    .texto p{
        padding-top: 0px;
    }
    .mobile-menu{
        display: flex;
    }

    
}
/*Fim mobile*/