/**
 * Estadísticas y barra de progreso
 */

.stats-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-card {
    background: #131929;
    border: 1px solid #1e2d45;
    border-radius: 14px;
    padding: 14px 22px;
    text-align: center;
    min-width: 110px;
}

.stat-card .num {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}

.stat-card .lbl {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
}

.progress-card {
    background: #131929;
    border: 1px solid #1e2d45;
    border-radius: 14px;
    padding: 14px 22px;
    min-width: 220px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.progress-header .lbl {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.progress-header .pct {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4ade80;
}

.progress-bar {
    background: #1e2d45;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #10b981);
    transition: width 0.6s ease;
}

.progress-sub {
    font-size: 0.7rem;
    color: #475569;
    margin-top: 6px;
}
