.hero {
  position: relative;
  min-height: 60dvh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: transparent;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* filter: brightness(0.88); */
  filter: contrast(1.20);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%,
      transparent 30%,
      rgba(0, 0, 0, 0.4) 80%,
      rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top,
      rgba(10, 15, 8, 0.75) 0%,
      rgba(20, 30, 15, 0.4) 50%,
      transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.9rem;
  padding: clamp(2rem, 4vw, 4rem);
  max-width: 42rem;
  /* Sin blur */
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.08) 40%,
      transparent 100%);
}

.hero__content::before {
  content: "";
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  /* opacity: 0.85; */
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.1rem, 5.6vw, 4.6rem);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero__title span {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 245, 210, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  text-decoration: none;
  /* Sin blur */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero__cta:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}