/* ==========================================================================
   Stats Section
   ========================================================================== */
.iubello-stats {
    padding: 4rem 0;
    background: var(--color-azul);
    color: #fff;
}

.iubello-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.iubello-stats__item {
    padding: 1rem;
}

.iubello-stats__number {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.iubello-stats__label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .iubello-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .iubello-stats__grid {
        grid-template-columns: 1fr;
    }
}
