.tab-toggle {
    width: 100%;
    position: relative;
    display: inline-flex;
    background: #222;
    padding: 5px;
    border-radius: 30px;
    overflow: hidden;
}

.tab-toggle .tab-toggle-button {
    width: 50%;
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    cursor: pointer;
    color: #ddd;
    transition: color .3s;
    user-select: none;
    background-color: none;
    text-align: center;
}

.tab-toggle .tab-toggle-button.active {
    color: #1b1b1b; /* AQUI está a cor pedida */
    font-weight: bold;
}

.tab-toggle .slider {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(50% - 10px);
    background: #00ff88;
    border-radius: 25px;
    z-index: 1;
    transition: all .35s ease;
}