/* Faixa de escassez e progressão de lotes */
.lot-scarcity {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) max(5vw, calc((100vw - 1240px) / 2));
  background: var(--gold2);
  color: var(--navy2);
  isolation: isolate;
}

.lot-scarcity::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .28), transparent 34%),
    linear-gradient(115deg, transparent 0 62%, rgba(201, 150, 45, .2) 62% 100%);
  pointer-events: none;
}

.lot-scarcity-inner {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, .9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 95px);
}

.lot-scarcity-copy {
  max-width: 680px;
}

.lot-scarcity-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
}

.lot-scarcity h2 {
  max-width: 680px;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.lot-scarcity-copy p {
  max-width: 570px;
  margin: 17px 0 0;
  color: rgba(3, 31, 50, .78);
  font-size: 1rem;
  line-height: 1.6;
}

.lot-scarcity-action {
  display: grid;
  gap: 22px;
}

.lot-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.lot-step {
  position: relative;
  overflow: hidden;
  min-height: 76px;
  padding: 15px 13px;
  border: 1px solid rgba(3, 31, 50, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.lot-step strong {
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
}

.lot-step span {
  font-size: .69rem;
  font-weight: 700;
  color: rgba(3, 31, 50, .68);
}

.lot-step.is-active {
  background: var(--navy2);
  border-color: var(--navy2);
  box-shadow: 0 12px 28px rgba(3, 31, 50, .2);
}

.lot-step.is-active strong {
  color: #fff;
}

.lot-step.is-active span {
  color: var(--gold2);
}

.lot-step.is-sold-out {
  opacity: .66;
}

.lot-step.is-sold-out::after {
  content: "ESGOTADO";
  position: absolute;
  left: -24px;
  top: 25px;
  width: 150px;
  padding: 4px 0;
  transform: rotate(-18deg);
  background: var(--wine);
  color: #fff;
  text-align: center;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .14em;
  box-shadow: 0 3px 9px rgba(3, 31, 50, .18);
}

.lot-scarcity .lot-scarcity-button {
  justify-self: start;
  min-width: 245px;
  border-color: var(--navy2);
  background: linear-gradient(110deg, var(--navy2) 0%, var(--navy2) 42%, #194864 50%, var(--navy2) 58%, var(--navy2) 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 14px 32px rgba(3, 31, 50, .22);
}

.lot-scarcity .lot-scarcity-button:hover {
  background: linear-gradient(110deg, var(--navy2) 0%, var(--navy2) 42%, #194864 50%, var(--navy2) 58%, var(--navy2) 100%);
  background-size: 200% 100%;
  color: #fff;
}

@media (max-width: 900px) {
  .lot-scarcity-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lot-scarcity-copy {
    max-width: 760px;
  }

  .lot-scarcity-action {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .lot-scarcity {
    padding: 48px 22px;
  }

  .lot-steps {
    grid-template-columns: 1fr;
  }

  .lot-step {
    min-height: 64px;
  }

  .lot-scarcity .lot-scarcity-button {
    width: 100%;
    min-width: 0;
  }

  .lot-scarcity h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
