@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

/* Efeito de brilho nos cards e botões */
.purple-glow { 
    transition: all 0.3s ease; 
}
.purple-glow:hover { 
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4); 
    transform: scale(1.02); 
}

/* Efeito do Link de Navegação (Sublinhado animado) */
.nav-link { 
    position: relative; 
    transition: color 0.3s ease;
}
.nav-link:after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: -4px; 
    left: 0; 
    background-color: #a855f7; 
    transition: width 0.3s ease; 
}
.nav-link:hover:after,
.nav-link.active:after { 
    width: 100%; 
}
.nav-link.active {
    color: #a855f7;
}

/* Ponto piscante (Status) */
.status-dot { 
    animation: pulse 2s infinite; 
}
@keyframes pulse { 
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #a855f7; } 
    50% { opacity: 0.3; box-shadow: 0 0 0px #a855f7; } 
}

/* Animação suave ao trocar de página via SPA */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevenção de fundo branco ao usar Auto-Fill no Chrome/Navegadores (Importado do V1) */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #09090b inset !important;
    -webkit-text-fill-color: white !important;
}