/* Initial states for GSAP animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

/* Background Effects */
/* Background Glow Effects - Luminous & Vibrant */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.65;
    animation: ambientGlowPulse 10s ease-in-out infinite alternate;
}

.glow-top-right {
    top: -5%;
    right: -5%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(230, 21, 155, 0.45) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 75%);
}

.glow-bottom-left {
    bottom: -5%;
    left: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(230, 21, 155, 0.22) 50%, transparent 75%);
}

@keyframes ambientGlowPulse {
    0% { transform: scale(1) translateY(0); opacity: 0.55; }
    100% { transform: scale(1.12) translateY(-20px); opacity: 0.75; }
}

/* CSS Grid Background Minimalista & Elegante */
.tech-grid {
    position: absolute;
    inset: 0;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
    z-index: 0;
    pointer-events: none;
}


/* Marquee Animation */
.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 2rem 0;
    background: rgba(255,255,255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Particle Canvas (Fix para evitar distorção vertical) */
#particles-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

