#mobile-menu {
    position: fixed;
    height: 100%;
    top: 0;
    background-color: #fff;
    right: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 47px;
    padding: 32px 15px;
    transition: transform 0.3s;
    transform: translateY(-100%);
}

#mobile-menu ul {
    display: grid;
    gap: 24px;
    list-style: none;
}

#mobile-menu ul li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#mobile-menu .icon-background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: var(--VERDE-MEDIO, #E0ECE9);
}

#mobile-menu h2 {
    color: #000;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
}

#mobile-menu.open {
    transform: translateY(0px);
}