/* HERO 04 — PAULA crea el asistente conversando con el dueño. */
.hero-04 {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 76px 0 0;
  overflow: hidden;
  background-color: #000000;
  color: #f7f4ee;
}

.hero-04::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(239, 193, 100, 0.07), transparent 24%),
    #000000;
  pointer-events: none;
}

.hero-04__intro {
  position: relative;
  width: min(100% - 48px, 1280px);
  margin: 0 auto 46px;
  padding: 30px 42px 32px;
  border: 1px solid rgba(239, 193, 100, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 46%, rgba(239, 193, 100, 0.06), transparent 48%),
    linear-gradient(180deg, rgba(12, 12, 11, 0.99), #020202);
  box-shadow:
    0 0 30px rgba(239, 193, 100, 0.13),
    inset 0 0 22px rgba(239, 193, 100, 0.035);
  text-align: center;
}

.hero-04__intro::before,
.hero-04__intro::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 210px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #efc164, transparent);
  box-shadow: 0 0 16px rgba(239, 193, 100, 0.64);
  pointer-events: none;
}

.hero-04__intro::before {
  top: -1px;
}

.hero-04__intro::after {
  bottom: -1px;
}

.hero-04__eyebrow {
  margin: 0;
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: clamp(2px, 0.45vw, 5px);
  color: #efc164;
  text-transform: uppercase;
}

.hero-04__divider,
.hero-04__visual-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 760px);
  margin: 18px auto;
}

.hero-04__divider span,
.hero-04__visual-bridge span {
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 193, 100, 0.72));
}

.hero-04__divider span:last-child,
.hero-04__visual-bridge span:last-child {
  background: linear-gradient(90deg, rgba(239, 193, 100, 0.72), transparent);
}

.hero-04__divider i,
.hero-04__visual-bridge i {
  width: 8px;
  height: 8px;
  margin: 0 14px;
  background: #ffe58c;
  box-shadow: 0 0 14px rgba(255, 229, 140, 0.9);
  transform: rotate(45deg);
}

.hero-04__title {
  margin: 0;
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, Georgia, serif;
  font-size: clamp(39px, 5.35vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1px;
  color: #f7f4ee;
  text-transform: uppercase;
}

.hero-04__title strong {
  display: block;
  margin-top: 6px;
  color: #ffe58c;
  font-size: 1.12em;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(239, 193, 100, 0.2);
}

.hero-04__lead {
  max-width: 920px;
  margin: 22px auto 0;
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(247, 244, 238, 0.92);
}

.hero-04__lead strong {
  color: #efc164;
  font-weight: 700;
}

.hero-04__visual-frame {
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  line-height: 0;
}

.hero-04__visual-frame--wide {
  width: min(100% - 24px, 1672px);
}

.hero-04__visual-frame--conversation {
  width: min(100% - 24px, 1448px);
}

.hero-04__visual {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background-color: #000000;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
  transform: none;
}

.hero-04__visual-bridge {
  width: min(100% - 48px, 880px);
  margin-block: 32px;
}

@media (max-width: 900px) {
  .hero-04 {
    padding-top: 58px;
  }

  .hero-04__intro {
    padding: 28px 28px 30px;
  }

  .hero-04__title {
    font-size: clamp(36px, 7.1vw, 58px);
  }
}

@media (max-width: 767px) {
  .hero-04 {
    padding-top: 42px;
  }

  .hero-04__intro {
    width: min(100% - 28px, 620px);
    margin-bottom: 28px;
    padding: 24px 18px 26px;
    border-radius: 18px;
  }

  .hero-04__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-04__divider {
    margin-block: 15px;
  }

  .hero-04__title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1;
    letter-spacing: -0.6px;
  }

  .hero-04__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-04__lead strong {
    display: block;
    margin-bottom: 3px;
  }

  .hero-04__visual-frame--wide,
  .hero-04__visual-frame--conversation {
    width: 100%;
  }

  .hero-04__visual-bridge {
    width: min(100% - 36px, 520px);
    margin-block: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-04 *,
  .hero-04 *::before,
  .hero-04 *::after {
    scroll-behavior: auto !important;
  }
}
