/* HERO 03 — BLOQUE 1. El problema de los bots gratuitos y genéricos. */
.hero-03-block-01 {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 68px 0 0;
  overflow: hidden;
  background-color: #000000;
  color: #f7f4ee;
}

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

.hero-03-block-01__copy {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  text-align: center;
}

.hero-03-block-01__eyebrow {
  margin: 0 0 18px;
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  color: #efc164;
  text-transform: uppercase;
}

.hero-03-block-01__headline {
  margin: 0;
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, Georgia, serif;
  font-size: clamp(52px, 5.25vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1.3px;
  text-align: center;
}

.hero-03-block-01__headline > span {
  display: block;
}

.hero-03-block-01__headline-light {
  color: #f8f4ec;
}

.hero-03-block-01__headline-gold {
  margin-top: 8px;
  color: #ffe58c;
  text-shadow: 0 0 24px rgba(239, 193, 100, 0.11);
}

.hero-03-block-01__description {
  max-width: 1050px;
  margin: 28px auto 0;
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: clamp(19px, 1.65vw, 23px);
  font-weight: 400;
  line-height: 1.5;
  color: #eeeae3;
}

.hero-03-block-01__description strong {
  color: #efc164;
  font-weight: 600;
}

.hero-03-block-01__divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100% - 48px, 760px);
  margin: 36px auto 30px;
}

.hero-03-block-01__divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 193, 100, 0.62));
}

.hero-03-block-01__divider span:last-child {
  background: linear-gradient(90deg, rgba(239, 193, 100, 0.62), transparent);
}

.hero-03-block-01__divider i {
  width: 9px;
  height: 9px;
  justify-self: center;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 229, 140, 0.92);
  background: #efc164;
  box-shadow: 0 0 16px rgba(239, 193, 100, 0.42);
}

.hero-03-block-01__problem-strip {
  position: relative;
  display: grid;
  grid-template-columns: 245px 1px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  width: min(100% - 48px, 1280px);
  min-height: 112px;
  margin: 0 auto 48px;
  padding: 22px 34px;
  border: 1px solid rgba(239, 193, 100, 0.88);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 193, 100, 0.055), transparent 44%),
    linear-gradient(180deg, rgba(12, 12, 11, 0.98), rgba(3, 3, 3, 1));
  box-shadow:
    0 0 22px rgba(239, 193, 100, 0.12),
    inset 0 0 18px rgba(239, 193, 100, 0.035);
}

.hero-03-block-01__problem-strip::before,
.hero-03-block-01__problem-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 180px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #efc164, transparent);
  box-shadow: 0 0 14px rgba(239, 193, 100, 0.52);
  pointer-events: none;
}

.hero-03-block-01__problem-strip::before {
  top: -1px;
}

.hero-03-block-01__problem-strip::after {
  bottom: -1px;
}

.hero-03-block-01__problem-label {
  margin: 0;
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4px;
  color: #efc164;
  text-align: center;
  text-transform: uppercase;
}

.hero-03-block-01__problem-separator {
  width: 1px;
  height: 66px;
  background: linear-gradient(180deg, transparent, rgba(239, 193, 100, 0.62), transparent);
}

.hero-03-block-01__problem-message {
  margin: 0;
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, Georgia, serif;
  font-size: clamp(25px, 2.15vw, 31px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.25px;
  color: #f7f4ee;
  text-align: center;
}

.hero-03-block-01__problem-message strong {
  color: #efc164;
  font-weight: 600;
}

.hero-03-block-01__visual-frame {
  width: min(100% - 24px, 1672px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  line-height: 0;
}

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

@media (max-width: 900px) {
  .hero-03-block-01 {
    padding-top: 52px;
  }

  .hero-03-block-01__headline {
    font-size: clamp(46px, 7.4vw, 58px);
  }

  .hero-03-block-01__problem-strip {
    grid-template-columns: 190px 1px minmax(0, 1fr);
    gap: 22px;
    padding-inline: 24px;
  }

  .hero-03-block-01__problem-message {
    font-size: 24px;
  }
}

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

  .hero-03-block-01__copy {
    width: min(100% - 28px, 620px);
  }

  .hero-03-block-01__eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-03-block-01__headline {
    font-size: clamp(39px, 11.2vw, 50px);
    line-height: 1;
    letter-spacing: -0.8px;
  }

  .hero-03-block-01__headline-gold {
    margin-top: 6px;
  }

  .hero-03-block-01__description {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-03-block-01__divider {
    width: min(100% - 44px, 520px);
    margin: 30px auto 24px;
  }

  .hero-03-block-01__problem-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 28px, 620px);
    min-height: 0;
    margin-bottom: 30px;
    padding: 24px 20px 26px;
    border-radius: 18px;
  }

  .hero-03-block-01__problem-label {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero-03-block-01__problem-separator {
    width: min(100%, 210px);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(239, 193, 100, 0.62), transparent);
  }

  .hero-03-block-01__problem-message {
    font-size: clamp(21px, 6.2vw, 26px);
    line-height: 1.22;
  }

  .hero-03-block-01__visual-frame {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero-03-block-01__headline {
    font-size: 39px;
  }
}
