.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    border: none; 
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 2rem 3rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    font-size: 1.3rem;

    
    div {
        width: 100%; 
    }
}

.mobile-menu a {
    display: block;
    padding: 2rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu.hide {
    transform: translateX(100%);
}

#menu-hamburguesa {
    height: 30px;
}

#mobileMenu a.touched {
    background-color: #f0f0f0;
    transition: background-color 0.2s;
}