/* ============================================
   HERO.CSS — Seção hero principal
   ============================================ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  animation: fadeUp 1s 0.2s ease both;
  max-width: 860px;
}

h1 .line-accent {
  display: inline;
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(232, 237, 245, 0.55);
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  animation: fadeUp 1s 0.6s ease both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
