/* ============================================
   DASHBOARD - ClinicaSysExpert
   ============================================ */

/* Estilos específicos do dashboard */
.module-grid .module-card {
    transition: all 0.3s ease;
}

.module-grid .module-card:active {
    transform: scale(0.97);
}

/* Animações de loading */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsividade do dashboard */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}