/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--cinza-texto);
}

.hero-grid {
  --hero-logo-spacing: clamp(72px, 7vw, 104px);
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  row-gap: var(--hero-logo-spacing);
  padding-top: calc(var(--altura-header) + var(--hero-logo-spacing));
  padding-bottom: 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  justify-self: center;
  text-align: center;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  aspect-ratio: 16 / 9;
  justify-self: center;
}

.hero-animation {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.55);
  transform-origin: center;
}

.hero h1 {
  max-width: 690px;
  margin: 0 auto;
  color: var(--marrom-taupe);
  font-family: var(--fonte-display);
  font-size: clamp(3.6rem, 6.2vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-title__fixed,
.hero-title__rotating {
  display: block;
}

.hero-title__rotating {
  min-height: 1em;
  margin-top: 0.08em;
}

.hero-lead {
  max-width: 590px;
  margin: clamp(48px, 7vw, 88px) auto 0;
  color: var(--cinza-texto);
  font-family: var(--fonte-corpo);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: balance;
}

@media (min-width: 921px) {
  .hero-copy {
    max-width: 1040px;
  }

  .hero h1 {
    max-width: 980px;
    font-size: clamp(3.25rem, 5vw, 4.6rem);
  }

  .hero-lead {
    max-width: 780px;
  }
}

