/* Faixa de fatos operacionais — substitui os números fictícios da prova social.
   Mecânica de grade herdada de social-proof.css, com nomes próprios (.fact-*)
   porque .stat-item / .stat-number / .stat-label são classes globais. */

.facts {
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(2.5rem, 7vh, 4rem) 0;
    display: flex;
    justify-content: center;
}

.facts-container {
    max-width: 520px;
    width: 90%;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 5vw, 2rem);
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.fact-number {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.fact-label {
    font-size: clamp(0.78rem, 2.8vw, 0.9rem);
    font-weight: 400;
    color: #cfcfcf;
    line-height: 1.3;
}

/* Tablets */
@media (min-width: 768px) {
    .facts-container {
        max-width: 680px;
    }

    .facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .facts-container {
        max-width: var(--content-max, 1200px);
    }

    .fact-number {
        font-size: 2.4rem;
    }
}
