/* ======================================================
   BLOQUE ESTADÍSTICAS — VERSIÓN MÁS PEQUEÑA
====================================================== */

.psw-stats-pro {
    width: 100%;
    max-width: 1150px;       /* antes 1250 */
    margin: 0 auto 20px auto;
    padding: 12px 16px;      /* antes 18px 20px */
    background: #ffffffd9;
    backdrop-filter: blur(12px);
    border-radius: 14px;     /* antes 16px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* más suave */
    gap: 14px;               /* antes 20px */
    animation: fadeIn .6s ease;
}

/* ITEM */
.psw-stat-item {
    flex: 1;
    text-align: center;
}

/* ICONOS — más pequeños (antes 34px → ahora 26px) */
.material-symbols-rounded.icon {
    font-size: 26px;
    font-variation-settings: 
        'FILL' 0, 
        'wght' 400, 
        'GRAD' 0, 
        'opsz' 40;
    display: block;
    margin: 0 auto 2px;     /* más compacto */
}

/* Colores personalizados (igual) */
.psw-stat-item:nth-child(1) .icon { color: #6a1b9a; }
.psw-stat-item:nth-child(2) .icon { color: #e65100; }
.psw-stat-item:nth-child(3) .icon { color: #2962ff; }
.psw-stat-item:nth-child(4) .icon { color: #bf8040; }

/* LABEL — más pequeño */
.psw-stat-item .label {
    font-size: 12px;         /* antes 14px */
    color: #555;
    font-weight: 500;
    margin: 1px 0 3px;
}

/* VALUE — un poco más pequeño */
.psw-stat-item .value {
    font-size: 20px;         /* antes 24px */
    font-weight: 700;
    color: #0f6b2d;
}

/* MOBILE */
@media (max-width: 768px) {
    .psw-stats-pro {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .psw-stat-item {
        padding: 6px 4px;
    }

    .material-symbols-rounded.icon {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .psw-stat-item .label {
        font-size: 11px;
        margin: 0;
    }

    .psw-stat-item .value {
        font-size: 15px;
    }

    /* Ocultar stats menos importantes en móvil */
    .psw-stat-item:nth-child(5),
    .psw-stat-item:nth-child(6) {
        display: none;
    }
}

/* Fecha: tipografía más discreta */
.psw-stat-date .value {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* Ajuste fino del icono */
.psw-stat-date .icon {
    margin-bottom: 4px;
}
