/* =========================================================
   Page hero — banda oscura con foto de fondo
   ========================================================= */

.tla-page-hero {
  position: relative;
  background: var(--neutral-900);
  color: #fff;
  padding: 90px 24px;
  overflow: hidden;
  isolation: isolate;
}

.tla-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: -2;
}

.tla-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(20, 24, 22, 0.9) 0%,
    rgba(20, 24, 22, 0.72) 45%,
    rgba(20, 24, 22, 0.4) 80%,
    rgba(20, 24, 22, 0.2) 100%
  );
}

.tla-page-hero__glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 164, 42, 0.25) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.tla-page-hero__inner { position: relative; }

.tla-page-hero__title {
  font: 700 clamp(36px, 4.2vw, 60px) / 1.08 var(--font-display);
  letter-spacing: -0.025em;
  margin: 16px 0 14px;
  max-width: 860px;
  text-wrap: balance;
  color: #fff;
}

.tla-page-hero__subtitle {
  font: 400 17px / 1.6 var(--font-body);
  color: #D6D9D2;
  max-width: 680px;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.tla-page-hero__children {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}

.tla-page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.tla-page-hero__price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(110, 164, 42, 0.35);
}
.tla-page-hero__price--warranty {
  background: linear-gradient(135deg, var(--neutral-800, #2a2e2a), var(--neutral-900, #1a1d1a));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.tla-page-hero__price-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
}
.tla-page-hero__price-label {
  display: block;
  font: 500 10.5px var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.15;
}
.tla-page-hero__price-value {
  display: block;
  font: 700 20px var(--font-display);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

@media (max-width: 720px) {
  .tla-page-hero { padding: 64px 20px; }
}
