@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.5); }
    50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.8); }
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

.animate-slow-spin {
    animation: slow-spin 20s linear infinite;
}

/* Glassmorphism Utilities - Light Mode */
.glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85); /* Fundo claro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.1); /* Sombra roxa suave */
}

/* Background Gradients - Light & Clean */
.bg-futuristic {
    background-color: #fdfbff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(244, 63, 94, 0.08) 0px, transparent 50%), /* Coral bem suave */
        radial-gradient(at 100% 100%, rgba(91, 33, 182, 0.08) 0px, transparent 50%); /* Roxo bem suave */
}

.text-gradient-gold {
    background: linear-gradient(to right, #be185d, #7e22ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
