/* Copiado do Tech Freelancer template (Aura) + utilitários usados no markup */
:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #ff006e, #ff4d8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.code-glow {
  box-shadow: 0 0 100px -20px rgba(255, 0, 110, 0.2);
}

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

.marquee-container {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.marquee-content:hover .marquee-container {
  animation-play-state: paused;
}

.grid-lines {
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Classes referenciadas no HTML mas geradas só no runtime do CDN — fallback */
.mask-image-b-fade {
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.65s ease-out forwards;
}
