/* Termos de Compra — escopado (.terms-purchase), não afeta o resto do site */

.terms-purchase {
  --tp-border: rgba(255, 255, 255, 0.08);
  --tp-surface: rgba(255, 255, 255, 0.03);
  --tp-surface-elevated: rgba(255, 255, 255, 0.045);
  color: rgb(var(--foreground));
}

.terms-purchase__hero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--tp-border);
}

.terms-purchase__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.terms-purchase__title-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: hsl(var(--primary));
}

.terms-purchase__title-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@media (min-width: 640px) {
  .terms-purchase__title-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.terms-purchase__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fafafa;
}

.terms-purchase__intro {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.82);
  max-width: 65ch;
}

/* Destaque: keys / PowerShell — borda amarela, fundo escuro, marcadores ◆ azuis */
.terms-purchase__callout {
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem 1.2rem 1.1rem;
  border-radius: var(--radius, 0.6rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid #facc15;
  background: rgba(28, 28, 30, 0.98);
}

.terms-purchase__callout-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-purchase__callout-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.terms-purchase__callout-item + .terms-purchase__callout-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.terms-purchase__callout-marker {
  flex-shrink: 0;
  margin-top: 0.35em;
  font-size: 0.5rem;
  line-height: 1.5;
  color: #38bdf8;
}

.terms-purchase__callout-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.9);
}

.terms-purchase__callout-text strong {
  font-weight: 700;
  color: #fafafa;
}

.terms-purchase__block {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius, 0.6rem);
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  transition: border-color 0.2s ease;
}

@media (min-width: 640px) {
  .terms-purchase__block {
    padding: 1.5rem 1.65rem;
  }
}

.terms-purchase__block-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.terms-purchase__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  border-radius: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.25);
}

.terms-purchase__block-title {
  margin: 0;
  padding-top: 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #f5f5f5;
}

@media (min-width: 640px) {
  .terms-purchase__block-title {
    font-size: 1.0625rem;
  }
}

.terms-purchase__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.78);
}

.terms-purchase__body p {
  margin: 0 0 0.85rem;
}

.terms-purchase__body p:last-child {
  margin-bottom: 0;
}

.terms-purchase__list {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: rgba(250, 250, 250, 0.78);
}

.terms-purchase__list li {
  margin-bottom: 0.35rem;
  padding-left: 0.25rem;
}

.terms-purchase__list li:last-child {
  margin-bottom: 0;
}

.terms-purchase__body strong {
  font-weight: 600;
  color: rgba(250, 250, 250, 0.92);
}