/* =========================================
   Seção de Números (Estatísticas)
   ========================================= */

.numeros {
    width: 70%;
    background-image: url(../../assets/img/dados-bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 4rem 0;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.numeros-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Grid de 4 colunas */
.numeros-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.numero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;

    /* Estado inicial para animação de entrada */
    opacity: 0;
    transform: translateY(30px);
}

.numero-item.visivel {
    opacity: 1;
    transform: translateY(0);
}

.numero-valor {
    font-family: var(--fonte-principal);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cor-bg);
    line-height: 1;
    letter-spacing: -1px;
}

.numero-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.4;
}

/* Transições sequenciais por item */
.numero-item:nth-child(1) { transition-delay: 0s; }
.numero-item:nth-child(2) { transition-delay: 0.2s; }
.numero-item:nth-child(3) { transition-delay: 0.4s; }
.numero-item:nth-child(4) { transition-delay: 0.6s; }
