*{
    margin: 0;
    padding: 0;
}


.nave{
    display: flex;
    padding: 16px;
    font-family: sans-serif;
    color:rgb(48, 47, 47);
    align-items: center;
}
.logo{
    font-size: 25px;
    font-weight: bold;
}
.Navbar_Items{
    display: flex;
}
.navbar_link{
    padding-right: 8px;
}
.navbar_link a{
    text-decoration: none;
    color: black;
}
.Navbar_Items--right a{
    background: black;
    color: white;
    padding: 10px;
    border-radius: 10px;
    transition: all .3s ease;
}
.Navbar_Items--right a:active{
    padding: 12px;
}
.navbar_link :hover{
    text-decoration: dashed;
    cursor: pointer;
    color: rgb(53, 53, 219);

}
.Navbar_Items--right{
    margin-left: auto;
}
.navbar_link-toggle{
    display: none;
}
.menu-img{
    position: relative;
}
.foto-menu{
    height: 450px;
}
.foto-menu img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.menu-img-titulo{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    background-color: rgba(0, 0, 0, 0.589);
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-img-titulo h2{
    color: white;
    font-size: 40px;
}

#LoginPop-up{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    background-color: rgba(0, 0, 0, 0.589);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.pop-up{
    width:400px;
    height: 500px;
    background: white;
    color: black;
    border-radius: 10px;
    box-shadow: 1px 16px 16px rgb(56, 56, 56);

}
.f{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px;
} 
.fechar{
    border-radius: 10px;
    padding-right: 10px;
    cursor: pointer;
    width:10px;

}
.Login{
}
.title-login{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.input{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.pop-up input{
    width: 99%;
    height: 40px;margin-bottom: 12px;
    border-radius: 5px;
    background: rgb(241, 240, 240);
}
.Enviar{
    border-radius: 15px;
    background: black;
    color: white;
    
}
.diser{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}

@media screen and (max-width:768px) {
     .Navbar_Items,.nave{
        flex-direction: column;
        align-self: flex-start;
     }
     .Navbar_Items{
        display: none;
     }
     .Navbar_Items--right{
        margin-left: 0;
     }
     .navbar_ToggleShow{
        display: flex;
     }
     .logo{
        align-self: flex-start;
     }
     .navbar_link-toggle{
        display: initial;
        align-self: flex-end;
        position: absolute;
        cursor: pointer;
     }
     
}