/* ==========================================================================
   hero.css — Seção Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  padding: 88px 0 64px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 45, 45, 0.85) 55%, rgba(26, 26, 26, 0.92) 100%);
}

.hero__decor {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.hero__decor-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__decor-ring--inner {
  top: 80px;
  right: 100px;
  width: 280px;
  height: 280px;
  border-color: rgba(255, 255, 255, 0.05);
}

.hero__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: duoFloat 6s ease-in-out infinite;
}

.hero__dot--alt {
  top: 260px;
  right: 220px;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  opacity: 0.4;
  animation: duoFloat 7s ease-in-out infinite 1.5s;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}

.hero__copy {
  flex: 1 1 560px;
  min-width: 320px;
}

.hero__badge {
  margin-bottom: 36px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero__title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero__lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--on-dark-mid);
  margin: 0 0 20px;
  max-width: 560px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-dark-low);
  margin: 0 0 40px;
  max-width: 560px;
}

.hero__cta-icon {
  font-size: 20px;
}

.hero__metrics {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  border: 1px solid var(--on-dark-line);
  border-radius: 4px;
  overflow: hidden;
}

.hero-metric {
  flex: 1 1 0;
  padding: 24px 20px;
  text-align: center;
  opacity: 0;
  animation: metricRise 0.7s ease-out var(--metric-delay, 0s) forwards;
}

.hero-metric__value {
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.hero-metric__label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--on-dark-low);
  margin: 8px 0 0;
}
