.menu{
    position: fixed;
    top:0px;
    left: 0px;
    width: 100%;
    padding: 40px;
    color: #fff;
    transition: all .5s ease;
    z-index: 999;
}
nav.scrolled {
    padding: 20px 40px;
    background: rgb(35,17,214);
    background: linear-gradient(66deg, rgba(35,17,214,1) 0%, rgba(77,51,164,1) 53%, rgba(185,101,38,1) 100%);
    border-bottom: 2px solid var(--laranja);
}

.menu .logo_mobile{
    display: none;
}

.menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}

.menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
}
.menu-list .logo {
    height: 40px;
}

.menu-list li {
    margin: 0 10px;
    display: block;
    cursor: pointer;
}

.menu-list li:first-child{
    margin-right: auto;
}

.menu-close {
    position: fixed;
    top: 10px;
    right: 10px;
    display: none;
    cursor: pointer;
    color: #fff;
    z-index: 99999;
}

@media (max-width: 768px) {

    nav.scrolled {
        padding: 40px;
    }

    .menu .logo_mobile{
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
    }
    .menu .logo_mobile img{
        height: 30px;
    }

    .menu-list {
        flex-direction: column;
        align-items: center;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(218deg, #2311d6, #60428e, #c36a24);
        z-index: 1;
    }

    .menu-list.active {
        display: flex;
        justify-content: center;
    }

    .menu-list li {
        margin: 10px 0;
    }

    .menu-list li:first-child {
        margin-right: inherit;
    }

    .menu-toggle {
        display: block;
    }
}