/* ---------------------------------------- */
/* ESTILOS DE LA SECCIÓN DE CONTADOR CORREGIDOS */
/* ---------------------------------------- */

#stats-contador {
    /* CAMBIO: Fondo neutro para que el verde no canse la vista */
    background-color: #f8f9fa; 
    padding: 60px 20px;
    text-align: center;
}

.stats-card-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    /* Sombra más profesional */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stats-card-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-items-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex-basis: 22%;
    min-width: 200px;
    padding: 20px;
    text-align: center;
    /* CAMBIO: Borde lateral sutil para separar */
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 3em;
    /* 🟢 APLICANDO VERDE WHATSAPP AL ICONO */
    color: #25D366; 
    margin-bottom: 15px;
    display: block;
}

.stat-item h2.counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2em;
    font-weight: 900;
    /* 🟢 NÚMERO EN AZUL CORPORATIVO PARA CONTRASTE */
    color: #333777; 
    margin: 5px 0;
}

.stat-item p {
    font-size: 0.9em;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsivo corregido */
@media (max-width: 768px) {
    .stat-item {
        flex-basis: 45%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}
