.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url("/assets/images/hero/hero-1.webp") center/cover no-repeat;

  /* Tratamiento sutil de imagen */
  filter: brightness(1.08) contrast(1.06) saturate(1.06);
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 25%,
      rgba(0, 0, 0, 0.30) 55%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.45)
    );



.hero__content {
  position: relative;
  max-width: 680px;
}


.hero__kicker {
  color: var(--color-gold);
  letter-spacing:


.hero__title {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  letter-spacing: 0.02em;
}


.hero__subtitle {
  max-width: 42ch;
  color: rgba(255,255,255,0.88);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.section__caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}