.navbar-nav {
    background-color: rgb(255, 255, 255);
    width: 22%;
    height: 100vh;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    padding-top: 3%;
}

.menu-ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 5px;
}

.menu-item {
    background-color: rgb(235, 235, 235);
    width: 100%;
    text-align: left;
    margin: auto;
    padding: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 20%;
    transition: 0.5s ease-in-out;
    text-decoration: none;
    color: #014e1f;
    font-weight: 600;
}

a {
    color: #333333;
}

.menu-item > i {
    line-height: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 12%;
    font-size: 1.2rem;
}

.menu-item:hover {
    background-color: #146433 !Important;
    cursor: pointer;
    color: white;
    transition: 0.5s ease-in-out;
}

.menu-item-custom:hover {
    background-color: #333333 !important;
    color: white !important;
}

.titulo {
    font-size: 2rem;
    font-weight: 700;
    padding: 20px;
}
