.hb {
  font-family: 'Roboto Condensed', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 100px 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;
}

.hb__inner {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
}

.hb__content {
  max-width: 650px;
}

.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: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 18px;
  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: 5px;
}

.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;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: ;
}

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

.hb__currency {
  font-size: 46px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-left: 2px;
}

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

/* ============================================
   SOLO PARA MOBILE - HERO DEL 85% DEL VIEWPORT
   ============================================ */
@media (max-width: 768px) {
  .hb {
    height: 85vh;
    min-height: 85vh;
    max-height: 85vh;
    padding: 0;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hb__overlay {
    background: rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    display: block !important;
  }

  .hb__inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    background: transparent;
  }

  .hb__content {
    max-width: 100%;
    margin: 0;
    padding: 20px 20px 30px 20px;
    width: 100%;
    background: transparent;
  }

  .hb__breadcrumb {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hb__badge {
    font-size: 13px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .hb__title {
    font-size: 30px;
    margin-bottom: 8px;
    line-height: 1.08;
  }

  .hb__desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .hb__rating {
    margin-bottom: 10px;
    gap: 6px;
    font-size: 14px;
  }

  .hb__stars {
    font-size: 15px;
  }

  .hb__ratingValue {
    font-size: 14px;
  }

  .hb__ratingCount {
    font-size: 13px;
  }

  .hb__meta {
    margin: 6px 0 10px;
    gap: 6px;
  }

  .hb__priceRow {
    gap: 4px;
  }

  .hb__from {
    font-size: 13px;
  }

  .hb__price {
    font-size: 30px;
  }

  .hb__price-amount {
    font-size: 30px;
  }

  .hb__currency {
    font-size: 14px;
  }

  .hb__oldPrice {
    font-size: 14px;
  }

  .hb__discount {
    font-size: 12px;
    padding: 4px 10px;
  }

  .hb__pills {
    margin-top: 4px;
    gap: 6px;
  }

  .hb__pill {
    font-size: 12px;
    padding: 4px 10px;
  }

  .hb__ctas {
    margin-top: 10px;
    gap: 10px;
  }

  .hb__btn {
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hb__arrow {
    font-size: 16px;
  }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 400px) {
  .hb {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
  }

  .hb__content {
    padding: 16px 16px 20px 16px;
  }

  .hb__title {
    font-size: 26px;
  }

  .hb__desc {
    font-size: 14px;
  }

  .hb__price {
    font-size: 26px;
  }

  .hb__price-amount {
    font-size: 26px;
  }

  .hb__currency {
    font-size: 12px;
  }

  .hb__btn {
    height: 38px;
    font-size: 13px;
    padding: 0 12px;
  }
}

/* Ajuste para pantallas con notch (iPhone) */
@supports (padding: max(0px)) {
  .hb__content {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(30px, env(safe-area-inset-bottom));
  }
}