/* ============================================================
   hero.css — Seção principal (hero / banner)
   ============================================================ */

.hero {
  min-height: 90vh;
  background: var(--color-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fundo decorativo */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(10, 159, 212, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 20%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid decorativo */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Conteúdo */
.hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-pad);
  max-width: 720px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tag {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero__title--accent {
  color: var(--color-accent);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(200, 232, 245, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
