/* Hover effect para stat-card */
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(217, 119, 6, 0.3);
    border-left-width: 4px;
    border-left-color: #f59e0b;
}

/* Mejorar stat-icon */
.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
}