/* ==========================================
   DASHBOARD DO PROFESSOR
   ========================================== */

/* Botões de Ação Rápida */
.dashboard-quick-actions {
    animation: fadeInUp 0.6s ease-out;
}

.quick-action-btn {
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.quick-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quick-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.quick-action-btn:active {
    transform: translateY(-2px);
}

/* Cards de Estatísticas Melhorados */
.stat-card {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Cards de Agendamento - Visual Aprimorado */
.agendamento-mini-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.agendamento-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.agendamento-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.agendamento-mini-card.aulao {
    border-left-color: #8b5cf6;
}

.agendamento-mini-card.aulao::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.agendamento-mini-card.prova {
    border-left-color: #f59e0b;
}

.agendamento-mini-card.prova::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.agendamento-mini-card.plantao {
    border-left-color: #06b6d4;
}

.agendamento-mini-card.plantao::before {
    background: linear-gradient(90deg, #06b6d4 0%, #22d3ee 100%);
}

.agendamento-mini-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.agendamento-mini-card .badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agendamento-mini-card .badge.aulao {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.agendamento-mini-card .badge.prova {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.agendamento-mini-card .badge.plantao {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
}

.agendamento-mini-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.agendamento-mini-card .info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.agendamento-mini-card .info-row i {
    color: #94a3b8;
    width: 16px;
    text-align: center;
}

.agendamento-mini-card .alunos-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    color: #475569;
}

.agendamento-mini-card .alunos-count i {
    color: #667eea;
}

.agendamento-mini-card .status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .dashboard-quick-actions > div {
        grid-template-columns: 1fr;
    }
    
    .quick-action-btn {
        padding: 1rem !important;
    }
    
    .quick-action-btn i {
        font-size: 2rem !important;
    }
    
    .quick-action-btn strong {
        font-size: 1rem !important;
    }
    
    .agendamento-mini-card {
        padding: 1rem;
    }
}

/* Efeito de Pulse para Cards de Hoje */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    }
}

.agendamento-mini-card.hoje {
    animation: pulse 2s ease-in-out infinite;
}
