.stats-container {
    background-color: #00ABED;
    border-radius: 50px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.stat-column {
    text-align: center;
    flex: 0 0 25%; /* Máx 4 por fila */
    margin: 10px 0;
    position: relative;
    min-width: 150px;
    padding: 0 15px; 
    box-sizing: border-box;
}

/* Linea divisoria blanca vertical por defecto */
.stat-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -5px;
    height: 70%;
    width: 2px;
    background-color: white;
    opacity: 0.7;
    z-index: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: -7px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: -15px;
}

.stat-text {
    font-size: 18px;
}


/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        border-radius: 0px;
    }
    

    .stat-column {
        flex: 0 0 100%; 
        padding: 15px 0;
    }
    
    /* Linea divisoria blanca vertical por defecto */
.stat-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0px;
    height: 0%;
    width: 0px;
    opacity: 0;
    z-index: 0;
}

}