.hb {
  font-family: 'Roboto Condensed', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  color: #fff;
  background-color: #0b1b2a; /* fallback */
}

.hb__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 85% 20%, rgba(255, 138, 76, 0.1), rgba(0, 0, 0, 0) 70%),
              linear-gradient(90deg, 
                rgba(6, 18, 34, 0.8) 0%,
                rgba(6, 18, 34, 0.5) 25%,
                rgba(6, 18, 34, 0.15) 50%,
                rgba(6, 18, 34, 0) 70%
              );
  pointer-events: none;
}
@media (max-width: 768px) {
  .hb__overlay {
    background: rgba(0, 0, 0, 0.55); /* Fondo negro sólido */
  }
}
.hb__inner {
  position: relative;
  max-width: 1200px;
  margin: 70px auto;
}

.hb__content {
  max-width: 550px;
}

.hb__breadcrumb {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 14px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__breadcrumbLink,
.hb__breadcrumbText,
.hb__breadcrumbSep {
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__title {
  margin: 0 0 14px;
  line-height: 1.02;
  font-size: clamp(34px, 3.8vw, 70px);
  font-weight: 800;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__titleLine {
  display: block;
}

.hb__desc {
  font-size: 20px;
  line-height: 1.5;
  opacity: .95;
  margin-bottom: 18px;
  max-width: 385px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__desc strong {
  font-weight: 800;
}

.hb__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .95;
  margin-bottom: 18px;
}

.hb__stars {
  color: #ffcc33;
  letter-spacing: 2px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__ratingValue {
  font-weight: 800;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__ratingCount {
  opacity: .85;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 16px;
}

.hb__priceRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hb__from {
  opacity: .9;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__price {
  font-size: 46px;
  font-weight: 900;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__oldPrice {
  font-size: 18px;
  opacity: .65;
  text-decoration: line-through;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__discount {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hb__pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 3px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select: none;
  font-family: 'Roboto Condensed', sans-serif;
}

.hb__btn:active {
  transform: translateY(1px);
}

.hb__btn--ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

.hb__btn--ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.35);
}

.hb__arrow {
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .hb {
    min-height: 660px;
    padding: 20px 20px;
  }

  .hb__content {
    max-width: 100%;
    margin: 50px 0;
  }

  .hb__price {
    font-size: 40px;
  }

  .hb__title {
    font-size: 40px;
  }