.indices-tabela {
    background: #d8d8d8;
    padding: 40px 0 12px;
}

.indices-tabela__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 54px;
}

.indices-tabela__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.indices-tabela__title {
    margin: 0;
    font-size: 12px;
    line-height: 10px;
    font-weight: 700;
    color: #000;
}

.indices-tabela__badge {
    margin: 0;
    font-size: 12px;
    line-height: 10px;
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.indices-tabela__badge-dot,
.indices-tabela__status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00e44e;
    display: inline-block;
}

.indices-tabela__status-dot--blue {
    background: #0080ff;
}

.indices-tabela__wrap {
    overflow-x: auto;
}

.indices-tabela__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    min-width: 980px;
    font-family: 'PP Neue Montreal', 'Sora', sans-serif;
}

.indices-tabela__table th,
.indices-tabela__table td {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #e1e1e1;
    color: #000;
    font-size: 18px;
    line-height: 42px;
    padding: 14px 12px;
    text-align: left;
}

.indices-tabela__table th {
    background: #cdcdcd;
    font-weight: 700;
}

.indices-tabela__table td {
    font-weight: 500;
}

.indices-tabela__indice {
    font-weight: 700;
    color: #2d2d2d;
}

.indices-tabela__pill {
    font-family: 'Sora', sans-serif;
    font-size: 12.44px;
    line-height: 15.56px;
    font-weight: 700;
    color: #010101;
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    background: #f1f1f1;
    margin-right: 10px;
}

.indices-tabela__criteria {
    margin: 12px 0 0;
    font-family: 'PP Neue Montreal', 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #595959;
    display: flex;
    align-items: center;
    gap: 10px;
}

.indices-tabela__criteria-dot {
    width: 12px;
    height: 12px;
    background: #2d2d2d;
    border-radius: 50%;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .indices-tabela__container {
        padding: 0 20px;
    }
}