.page--pricing {
  background: #05050a;
  color: #fff;
  padding-bottom: 0;
}

.pricing {
  padding: calc(var(--header-main-h) + 1.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.page--pricing .pricing__container {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block;
  text-align: inherit;
}

.pricing__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page--pricing .pricing__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.pricing__desc {
  margin: 0 auto;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.pricing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pricing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 222, 89, 0.35);
  background: rgba(255, 222, 89, 0.08);
  color: #ffde59;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.pricing__btn:hover,
.pricing__btn:focus-visible {
  background: rgba(255, 222, 89, 0.16);
  border-color: rgba(255, 222, 89, 0.55);
  color: #ffe264;
}

.pricing__btn--whatsapp:hover,
.pricing__btn--whatsapp:focus-visible {
  border-color: rgba(80, 230, 140, 0.55);
  color: #ffe264;
  background: rgba(255, 222, 89, 0.16);
  box-shadow:
    0 0 8px rgba(100, 235, 155, 0.2),
    0 0 20px rgba(37, 211, 102, 0.18),
    0 0 36px rgba(37, 211, 102, 0.12);
}

.pricing__btn--primary {
  border: none;
  color: #05050a;
  background: #ffde59;
}

.pricing__btn--primary:hover,
.pricing__btn--primary:focus-visible {
  color: #05050a;
  background: #ffe264;
}

.pricing__viewer {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  background: #0a0a12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pricing__pdf {
  display: block;
  width: 100%;
  min-height: clamp(28rem, 72vh, 52rem);
  border: 0;
  background: #fff;
}

.pricing__pages {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.pricing__page {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  overflow: hidden;
  background: #0a0a12;
}

.pricing__page img {
  display: block;
  width: 100%;
  height: auto;
}

.pricing__page-caption {
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 47.999rem) {
  .pricing__pdf {
    min-height: 70vh;
  }
}
