/* ============================================================
   Hero-e component: empresa's editorial hero (serif header + photo).
   Reuses the fadeUp/heroZoom keyframes already defined in hero.css
   (loaded on every page) instead of redefining them here.
   ============================================================ */

.hero-e {
  padding: 7.5rem var(--pad-x) 0;
  background: var(--paper);
  position: relative;
}
.hero-e__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-e__head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--black);
}
.hero-e__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--black);
  max-width: 14ch;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 1.1s 0.2s var(--ease) forwards;
}
.hero-e__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--blue);
  font-weight: 400;
}
.hero-e__lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.375rem, 2.1vw, 1.875rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--black);
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 1.1s 0.4s var(--ease) forwards;
}
.hero-e__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3.4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0 3.75rem;
}
.hero-e__cols p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.55;
  color: #2a2a2a;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .hero-e__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-e__cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.hero-e__figure {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--black);
  border-radius: 0.125rem;
}
.hero-e__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 14s var(--ease) forwards;
}
.hero-e__figcap {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.875rem 0.125rem 5rem;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: #555;
}
.hero-e__figcap span {
  text-wrap: pretty;
}
.hero-e__figcap b {
  color: var(--black);
  font-weight: 700;
}
