/* ==================== Stats Container (Nuevo Diseño) ==================== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espaciado-md);
    margin-top: var(--espaciado-md);
}

.stat-card-modern {
    background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-header) 100%);
    border-radius: 16px;
    padding: var(--espaciado-md);
    display: flex;
    align-items: center;
    gap: var(--espaciado-md);
    box-shadow: var(--sombra-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 84, 76, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content {
    flex: 1;
    color: white;
}

.stat-label-small {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-main {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-card-modern {
        padding: var(--espaciado-sm);
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-number-large {
        font-size: 2rem;
    }
}