/* Fonte global definida no Google Fonts do arquivo index.php */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Efeito de Gradiente para o Título Principal */
.text-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Efeito Glow (brilho) nos botões principais */
.btn-glow {
    position: relative;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 0 8px 10px -6px rgba(37, 99, 235, 0.2);
}

.btn-glow:active {
    transform: translateY(0);
}

/* Cards com efeito Glassmorphism (Efeito de Vidro Fosco) */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Animação suave para as estatísticas */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover h3 {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    color: #eff6ff;
}