.indices-desempenho {
    background: #d8d8d8;
    padding: 48px 0 52px;
}
.indices-desempenho__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 54px;
}
.indices-desempenho__title,
.indices-desempenho__subtitle {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 10px;
    color: #010101;
}
.indices-desempenho__kpis {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.indices-desempenho__kpi {
    background: #dcdcdc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-height: 120px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.indices-desempenho__kpi-label {
    margin: 0 0 8px;
    color: #010101;
    font-size: 10px;
    line-height: 10px;
}
.indices-desempenho__kpi-value {
    margin: 0;
    color: #0080ff;
    font-size: 30px;
    font-weight: 400;
    line-height: 23.5px;
}
.indices-desempenho__subtitle {
    margin-top: 26px;
}
.indices-desempenho__chart-wrap {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 14px;
}
.indices-desempenho__chart {
    width: 100%;
    height: auto;
    display: block;
}
.indices-desempenho__split {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.indices-desempenho__split-card {
    min-height: 236px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #010101;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
}
.indices-desempenho__actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.indices-desempenho__btn {
    min-height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: #d8d8d8;
    color: #010101;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.indices-desempenho__btn:hover {
    background: #ffffff;
    color: #010101;
    border-color: rgba(0, 0, 0, 0.25);
}
.indices-desempenho__btn:active {
    background: #0080ff;
    color: #ffffff;
    border-color: #0080ff;
}
.indices-desempenho__btn--primary {
    background: #0080ff;
    color: #fff;
    border-color: #0080ff;
}
.indices-desempenho__btn--primary:hover {
    background: #ffffff;
    color: #010101;
    border-color: rgba(0, 0, 0, 0.25);
}
.indices-desempenho__btn--primary:active {
    background: #0080ff;
    color: #ffffff;
    border-color: #0080ff;
}
@media (max-width: 1024px) {
    .indices-desempenho__kpis {
        grid-template-columns: repeat(2, 1fr);
    }
    .indices-desempenho__actions {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .indices-desempenho__container {
        padding: 0 20px;
    }
    .indices-desempenho__split,
    .indices-desempenho__actions {
        grid-template-columns: 1fr;
    }
}