.dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--main-text);
    background-color: var(--highlight);
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.8em;
    border-radius: 5px;
    position: absolute;
}

.dropdown a:hover {
    transition: all 0.3s ease-in-out;
    color: var(--main-brand);
}

#dropdown-portal {
    top: 20%;
    right: 10%;
}

#dropdown-contato {
    top: 20%;
    right: 2.5%;
}


