
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* ===== CANVAS BASE ===== */
.hero canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ===== GLOW DINÂMICO ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      700px circle at 30% 40%,
      rgba(94, 234, 212, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px circle at 70% 60%,
      rgba(94, 234, 212, 0.08),
      transparent 65%
    );
  pointer-events: none;
}

/* ===== CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 8%;
  text-align: left;
}
.hero-name {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  opacity: 0.85;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(94, 234, 212, 0.35);
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  color: var(--muted);
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  .hero-content {
    text-align: left;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}

.hero-parallax .bg-canvas,
.hero-parallax .hero-overlay,
.hero-parallax .hero-content {
  will-change: transform, opacity;
}
