/* ============================================================
   NÚMEROS INSTITUCIONAIS — IDEX Home
   Prefixo: .numeros-*
   ============================================================ */

.numeros {
    background: #d8d8d8;
    padding: 26px 54px 84px;
}

.numeros__container {
    max-width: 1280px;
    margin: 0px auto -160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.numeros__item {
    background: #fff;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    padding: 26px 26px 32px;
    align-content: flex-start;
    align-items: flex-start;
}

.numeros__titulo {
    font-size: 12px;
    font-weight: 700;
    color: #010101;
    line-height: 10px;
    display: block;
}

.numeros__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.numeros__numero {
    text-align: left;
    font-size: 60px;
    font-weight: 400;
    color: #0080ff;
    line-height: 48.5px;
    letter-spacing: -0.03em;
    display: block;
}

.numeros__subtitulo {
    font-size: 12px;
    font-weight: 400;
    color: #010101;
    opacity: 0.40;
    line-height: 10px;
    display: block;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
    .numeros {
        padding: 32px 20px 48px;
    }

    .numeros__container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
    }

    .numeros__item {
        min-height: 160px;
        padding: 20px;
    }

    .numeros__numero {
        font-size: 42px;
        line-height: 36px;
    }

    .numeros__titulo {
        font-size: 11px;
    }
}