.hero-stats {
    background-image: url('../img/background/banner_3.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: white;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6,32,51,.8);
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.2);
    border: 3px solid #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-circle i {
    font-size: 3rem;
    color: #0d6efd;
}

.stat-number {
    font-size: 3.5rem; /* Tamaño aumentado de 2.5rem a 3.5rem */
    font-weight: 700;
    margin: 15px 0;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}