.menu{
    position: fixed;
    top:0px;
    left: 0px;
    width: 100%;
    padding: 30px 40px;
    color: var(--rosa);
    font-size: 20px;
    transition: all .5s ease;
    z-index: 999;
    font-weight: 400;
    font-size: 20px;
}
.menu .logo img{
    height: 80px;
}
nav.scrolled {
    padding: 20px 40px;
    background: #FFF;
    color: var(--rosa);
    border-bottom: 1px solid var(--rosa);
}
nav.scrolled .logo img{
    height: 60px;
}

.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: var(--rosa);
    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: 60px !important;
        margin-top: -15px !important;
    }

    .menu-list {
        flex-direction: column;
        align-items: center;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }

    .menu-list.active {
        display: flex;
        justify-content: center;
        background-color: var(--rosa);
        color: var(--bege);
    }

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

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

    .menu-toggle {
        display: block;
    }
}