:root {
    --sato-blue: #46b2dc; /* Azul Oficial Sato */
    --sato-pink: #FF007A;
    --sato-dark: #0A0A0B;
}

body { font-family: 'Inter', sans-serif; }

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Texto Gradiente Animado */
.gradient-text {
    background: linear-gradient(90deg, var(--sato-blue), var(--sato-pink), var(--sato-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
}

@keyframes gradient {
    to { background-position: 200% center; }
}

/* Fundo de Grid */
.bg-grid {
    background-image: radial-gradient(rgba(70, 178, 220, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Marquee Infinito */
.marquee-content {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Animação Flutuante */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}