.title_person {
    background: linear-gradient(341deg, #C2318F 7.95%, #92256C 92.05%);
}

.regras>span {
    color: #C2318F;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 30px;
}

.regras .titulo_premiacoes {
    color: #C2318F;
}


li::before {
    content: "✔";
    color: #C2318F;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
    transform: translateY(-50%);
}

.num_ativo {
    border: 1px solid #C2318F;
    background: linear-gradient(341deg, #C2318F 7.95%, #92256C 92.05%);
    color: #fff;
    font-weight: 600;
}

.historico {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
}

/* Largura da barra */
.historico::-webkit-scrollbar {
    width: 8px;
}

/* Cor do fundo da barra */
.historico::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

/* Cor do scroll */
.historico::-webkit-scrollbar-thumb {
    background: #C2318F;
    border-radius: 4px;
}

/* Cor ao passar o mouse */
.historico::-webkit-scrollbar-thumb:hover {
    background: #92256C;
}

.btt_habilitado {
    color: #92256C;
    border: 2px solid #92256C;
    cursor: pointer;
}

.btt_habilitado:hover {
    scale: 1.05;
}

.btt_habilitado_2 {
    color: #fff;
    font-family: Poppins;
    font-weight: 700;
    background: linear-gradient(341deg, #C2318F 7.95%, #92256C 92.05%);
    border-radius: 10px;
    border: 2px solid #92256C;
    font-size: 1.125rem;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.btt_habilitado_2:hover {
    scale: 1.05;
}

@media (max-width: 500px) {
    .historico {
        max-height: none;
        overflow-y: visible;
    }
}