.menu-nav{
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
    padding: 3rem 0 1rem;
    font-family: ChampagneLimousinesBold;
    transition: 400ms;
}
.hamburger-menu{
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    border: solid 1px var(--azulO);
    width: 65px;
    height: 65px;
    padding: 15px;
    border-radius: 50%;
    background: rgb(29,76,249);
    background: radial-gradient(circle, rgba(29,76,249,1) 0%, rgba(129,104,247,1) 60%);
    cursor: pointer;
}
.hamburger-menu img{
    object-fit: contain;
    width: 100%;
}

@media (max-device-width:850px){
    .hamburger-menu{
        display: block;
    }
    .menu-nav{
        position: fixed;
        width: 100%;
        height: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        left: -100%;
        background-color: rgba(76, 58, 156, 0.9);
        border-bottom-right-radius: 800px;
    }
    .menu-nav.menu-active{
        height: 100%;
        left: 0;
        border-radius: 0;
        padding: 5% 0;
    }
    .menu-nav .menu-div{
        text-align: center;
    }
}