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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Gradiente principal */
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.6) 100%),
    /* Luz cálida desde abajo */
    radial-gradient(ellipse at 20% 85%,
      rgba(255, 220, 150, 0.2) 0%,
      rgba(255, 180, 100, 0.08) 35%,
      transparent 70%),
    /* Efecto de luz cálida */
    radial-gradient(ellipse at 30% 90%,
      rgba(255, 200, 120, 0.15),
      transparent 60%),
    /* Toque frío desde arriba */
    radial-gradient(circle at 70% 20%,
      rgba(100, 160, 255, 0.05),
      transparent 50%),
    /* Textura sutil */
    repeating-linear-gradient(45deg,
      rgba(255, 255, 245, 0.015) 0px,
      rgba(255, 255, 245, 0.015) 1px,
      transparent 1px,
      transparent 12px);
  background-blend-mode: normal, overlay, soft-light, soft-light, normal;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.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;
}