.investimento-popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25b6da81;
    z-index: 1000;
}

.investimento-popup-content {
    background-color: var(--highlight);
    width: 75%;
    max-height: 75vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
}

.investimento-popup-content::-webkit-scrollbar {
    display: none;
}

.investimento-popup-close {
    display: flex;
    justify-content: flex-end;
}

.investimento-popup-close button {
    font-size: 1em;
    background-color: var(--error);
    border: none;
    color: var(--highlight);
    border-radius: 5px;
    cursor: pointer;
}

.investimento-popup-header {
    border-bottom: 2px solid var(--alt-text);
}

.valores {
    color: var(--success);
    font-weight: bold;  
}

.parcelas {
    color: var(--aux-text);
    font-weight: bold;
    font-size: 1.5em;
}