.dropdown.open .user-menu {
    /* Sobrescrever o bootstrap */
    display: flex;
    max-height: calc(100vh - 100px);
    overflow: overlay;
}

.user-menu__header {
    padding: 1.2rem 1.9rem 0.5rem 1.9rem;
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: center;
    gap: 1.2rem;
}
.user-menu__profile {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-menu__profile :is(small, strong) {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu_avatar {
    height: 4rem;
    width: 4rem;
    border-radius: 2rem;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.user-menu_avatar a {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000044;
    opacity: 0;
    cursor: pointer;

    transition: opacity 0.2s;
}
.user-menu_avatar:hover a {
    opacity: 1;
}

.user-menu {
    gap: 0.25rem;
    flex-direction: column;
    overflow-y: overlay;
    overflow-x: hidden;

    /* padding: 0rem 0 2.1rem 0; */
    padding-bottom: 2.1rem;

    border-radius: 17.5px;
    color: #000000;
    min-width: 230px;

    background: rgba(255, 255, 255);
}

.user-menu__line-button > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    font-weight: normal;
}
.user-menu__line-button > a > span {
    font-weight: bold;
}

.user-menu strong > a {
    font-size: 1.75rem;
    padding: 0 1.9rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.user-menu__line-button,
.user-menu > strong {
    font-weight: normal;
    width: 100%;
    padding: 0.25rem 1.9rem;
    transition: box-shadow 0.2s;
}

.user-menu__line-button:hover {
    box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.05);
}

/* --------- */

.user-menu__button {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--nl-orange);
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    transition: background-color 0.2s;
    margin: 0 1.5rem;
    text-decoration: none;
}

.user-menu__button:hover {
    color: var(--nl-orange);
    text-decoration: none;
    background-color: #fff0d3;
}
