/* =========================================================
   Chirp Gold · Premium sober
   Estilo: Chirp claro + rosa + dorado editorial
   ========================================================= */

.gold-page {
  --gold: #d9a427;
  --gold-2: #f3d983;
  --gold-3: #a46a00;
  --gold-ink: #4f3300;
  --gold-muted: #8a6a25;
  --gold-line: rgba(217, 164, 39, 0.28);
  --gold-line-strong: rgba(217, 164, 39, 0.42);
  --gold-surface: rgba(255, 248, 229, 0.72);
  --gold-surface-strong: rgba(255, 244, 207, 0.9);
  --gold-shadow: 0 18px 42px rgba(128, 86, 12, 0.1);

  min-height: 100vh;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%,
      rgba(217, 164, 39, 0.16),
      transparent 30rem),
    radial-gradient(circle at 96% 4%,
      rgba(239, 0, 138, 0.1),
      transparent 28rem),
    linear-gradient(180deg, #fff8fc 0%, #fff 46%, #fff8fc 100%);
}

.gold-page * {
  box-sizing: border-box;
}

.gold-page ::selection {
  color: #fff;
  background: var(--pink);
}

/* =========================================================
   Shell / base cards
   ========================================================= */

.gold-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 52px;
}

.gold-hero,
.gold-plan,
.gold-benefit,
.gold-faq {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg, 16px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(14px);
}

.gold-plan,
.gold-benefit,
.gold-faq,
.gold-preview-card,
.gold-region-selector {
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease;
}

/* =========================================================
   Hero
   ========================================================= */

.gold-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border-color: rgba(245, 220, 232, 0.92);
  background:
    radial-gradient(circle at 100% 0%,
      rgba(217, 164, 39, 0.18),
      transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 252, 0.9));
  box-shadow: var(--shadow);
}

.gold-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -140px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(217, 164, 39, 0.12);
  filter: blur(10px);
  pointer-events: none;
}

.gold-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.gold-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.gold-back:hover {
  color: var(--hot);
}

.gold-secure-chip,
.gold-pill,
.gold-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.gold-secure-chip {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.gold-secure-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(21, 147, 109, 0.12);
}

.gold-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
}

.gold-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(217, 164, 39, 0.42);
  background: linear-gradient(145deg, #fff6d7, #e7bd4f 62%, #b47400);
  color: #3c2700;
  font-size: 42px;
  font-weight: 750;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(128, 86, 12, 0.16);
}

.eyebrow {
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-3);
  font-weight: 700;
  font-size: 0.76rem;
}

.gold-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.gold-hero h1 span,
.gold-hero h1 strong {
  color: var(--gold-3);
}

.gold-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.gold-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gold-actions .btn {
  min-height: 44px;
  align-items: center;
}

.gold-main-cta {
  color: #3c2700 !important;
  border-color: rgba(217, 164, 39, 0.34) !important;
  background: linear-gradient(135deg, #fff4cc, #e8be4f 54%, #c8860b) !important;
  box-shadow: 0 14px 30px rgba(128, 86, 12, 0.18);
}

.gold-main-cta:hover {
  filter: saturate(1.04) contrast(1.01);
  box-shadow: 0 16px 34px rgba(128, 86, 12, 0.22);
}

.gold-status {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 700;
}

.gold-status.is-ok {
  border-color: #afe8d7;
  background: #effcf8;
  color: #146b53;
}

.gold-status.is-error {
  border-color: #ffb7cd;
  background: #fff0f3;
  color: #9d1742;
}

/* =========================================================
   Preview
   ========================================================= */

.gold-preview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(217, 164, 39, 0.16),
      transparent 9rem),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 248, 229, 0.78));
  box-shadow: var(--shadow-2);
}

.gold-preview-card::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(217, 164, 39, 0.72),
      transparent);
  pointer-events: none;
}

.gold-preview-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.gold-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--pink-2), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(239, 0, 138, 0.16);
}

.gold-preview-profile strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.gold-preview-profile p {
  margin: 2px 0 0;
  color: var(--muted);
}

.gold-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 39, 0.38);
  background: #fff6d7;
  color: var(--gold-3);
  font-weight: 750;
}

.gold-preview-post {
  position: relative;
  z-index: 1;
  margin: 22px 0;
  color: var(--text);
  line-height: 1.5;
}

.gold-preview-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gold-preview-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

/* =========================================================
   Benefits
   ========================================================= */

.gold-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.gold-benefit {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.gold-benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  background: linear-gradient(90deg, rgba(217, 164, 39, 0.38), transparent 38%) top left / 100% 3px no-repeat;
  pointer-events: none;
  opacity: 0.72;
}

.gold-benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(217, 164, 39, 0.32);
  background: #fff6d7;
  color: var(--gold-3);
  font-weight: 750;
}

.gold-benefit h2,
.gold-plan h2,
.gold-faq h2 {
  margin: 16px 0 8px;
  color: var(--ink);
  letter-spacing: -0.045em;
}

.gold-benefit p,
.gold-plan-text,
.gold-note,
.gold-faq p,
.gold-form-intro {
  color: var(--muted);
  line-height: 1.52;
}

/* =========================================================
   Grid / plans
   ========================================================= */

.gold-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.gold-grid-main {
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: start;
}

.gold-plan {
  position: relative;
  padding: 28px;
}

.gold-side-stack {
  display: grid;
  gap: 18px;
}

.gold-plan-featured {
  position: relative;
  overflow: hidden;
  border-color: var(--gold-line);
  background:
    radial-gradient(circle at 100% 0%,
      rgba(217, 164, 39, 0.15),
      transparent 10rem),
    rgba(255, 255, 255, 0.92);
}

.gold-plan-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(217, 164, 39, 0.72);
  pointer-events: none;
}

.gold-plan-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.gold-pill {
  border: 1px solid rgba(217, 164, 39, 0.28);
  background: #fff6d7;
  color: var(--gold-3);
}

.gold-pill-dark {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.gold-plan-badge {
  background: rgba(239, 0, 138, 0.08);
  color: var(--hot);
}

.gold-price {
  margin: 0 0 14px;
  color: var(--gold-3);
  font-size: 2.25rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

#goldCheckout .gold-price:not(.gold-payment-panel .gold-price):not(.gold-payment-panel__head .gold-price) {
  display: none;
}

.gold-summary-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.gold-summary-box div {
  min-width: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(255, 241, 247, 0.72);
}

.gold-summary-box span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.gold-summary-box strong {
  display: block;
  color: var(--text);
  overflow-wrap: anywhere;
}

/* =========================================================
   Form
   ========================================================= */

.gold-card-form {
  position: relative;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.gold-card-form h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.gold-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.gold-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.gold-field-full {
  grid-column: 1 / -1;
}

.gold-field span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.gold-field input,
.gold-field select,
.gold-secure-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.gold-field input,
.gold-field select {
  padding: 0 14px;
  font: inherit;
}

.gold-field input::placeholder {
  color: var(--soft);
}

.gold-field select option {
  color: var(--text);
  background: #fff;
}

.gold-secure-field {
  padding: 0;
  display: block;
  overflow: hidden;
  cursor: text;
}

.gold-secure-field iframe,
.gold-secure-field>iframe,
.gold-secure-field>div,
.gold-secure-field>div iframe {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  display: block !important;
  pointer-events: auto !important;
}

.gold-secure-field input {
  height: 48px !important;
}

.gold-field input:hover,
.gold-field select:hover,
.gold-secure-field:hover {
  border-color: var(--gold-line-strong);
}

.gold-field input:focus,
.gold-field select:focus,
.gold-secure-field:focus-within {
  border-color: var(--pink-2);
  box-shadow: 0 0 0 4px rgba(239, 0, 138, 0.1);
  background: #fff;
}

.gold-field-muted {
  display: none;
}

.gold-btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.gold-progress {
  display: none;
  width: 100%;
  height: 8px;
  margin-top: 14px;
  accent-color: var(--gold);
}

.gold-progress.is-loading {
  display: block;
}

.gold-note {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
}

.gold-next-card {
  opacity: 0.9;
}

.gold-active-account-card {
  display: none;
}

/* =========================================================
   FAQ
   ========================================================= */

.gold-faq {
  padding: 28px;
}

.gold-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gold-faq-grid div {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(255, 241, 247, 0.66);
}

.gold-faq-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.gold-faq-grid p {
  margin: 0;
}

/* =========================================================
   Return page
   ========================================================= */

.gold-return-shell {
  max-width: 860px;
}

.gold-return-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   Custom dropdowns
   ========================================================= */

.gold-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.gold-custom-dropdown {
  position: relative;
  width: 100%;
}

.gold-custom-dropdown__button {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.gold-custom-dropdown__button::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--gold-3);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.gold-custom-dropdown.is-open .gold-custom-dropdown__button {
  border-color: var(--pink-2);
  box-shadow: 0 0 0 4px rgba(239, 0, 138, 0.1);
  background: #fff;
}

.gold-custom-dropdown.is-open .gold-custom-dropdown__button::after {
  transform: translateY(2px) rotate(225deg);
}

.gold-custom-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  display: none;
  max-height: 220px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.gold-custom-dropdown.is-open .gold-custom-dropdown__menu {
  display: grid;
  gap: 6px;
}

.gold-custom-dropdown__item {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.gold-custom-dropdown__item:hover,
.gold-custom-dropdown__item.is-selected {
  color: var(--hot);
  background: var(--card-2);
}

.gold-field-muted .gold-custom-dropdown__button {
  color: var(--muted);
}

/* =========================================================
   Estado Gold activo
   ========================================================= */

.gold-page.is-gold-active .gold-plan-featured,
.gold-page.is-gold-active [data-hide-if-gold] {
  display: none !important;
}

.gold-page.is-gold-active .gold-side-stack {
  min-width: 150.5%;
  max-width: 150.5%;
}

.gold-page.is-gold-active .gold-active-account-card {
  display: block !important;
  position: relative;
  overflow: hidden;
  border-color: rgba(21, 147, 109, 0.24);
  background:
    radial-gradient(circle at 100% 0%,
      rgba(21, 147, 109, 0.1),
      transparent 10rem),
    rgba(255, 255, 255, 0.92);
}

.gold-page.is-gold-active .gold-active-account-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ok);
}

/* =========================================================
   Loading / secure fields
   ========================================================= */

.gold-card-form.is-loading .gold-secure-field,
.gold-card-form.is-loading .gold-field input,
.gold-card-form.is-loading .gold-custom-dropdown__button {
  opacity: 0.78;
}

.gold-secure-field *,
.gold-secure-field iframe {
  pointer-events: auto !important;
}

.gold-custom-dropdown:not(.is-open) .gold-custom-dropdown__menu {
  pointer-events: none;
}

.gold-custom-dropdown.is-open .gold-custom-dropdown__menu {
  pointer-events: auto;
}

/* =========================================================
   Native card fields
   ========================================================= */

input.gold-secure-field {
  padding: 0 14px !important;
  font: inherit !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em;
  caret-color: var(--pink);
  cursor: text !important;
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
}

input.gold-secure-field::placeholder {
  color: var(--soft);
}

input.gold-secure-field:focus {
  border-color: var(--pink-2) !important;
  box-shadow: 0 0 0 4px rgba(239, 0, 138, 0.1) !important;
  background: #fff !important;
}

.gold-secure-field:not(input) iframe,
.gold-secure-field:not(input)>iframe,
.gold-secure-field:not(input)>div,
.gold-secure-field:not(input)>div iframe {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  display: block !important;
  pointer-events: auto !important;
}

/* =========================================================
   PayPal internacional
   ========================================================= */

.gold-paypal-card {
  border-color: var(--gold-line);
}

.gold-price-small {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 0.35rem 0 0.55rem;
}

.gold-paypal-btn {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   Region selector
   ========================================================= */

.gold-region-selector {
  position: relative;
  z-index: 3;
  margin: 22px 0 18px;
  padding: 18px;
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(217, 164, 39, 0.12),
      transparent 8rem),
    rgba(255, 255, 255, 0.82);
}

.gold-region-selector h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.gold-region-dropdown {
  position: relative;
  margin-top: 12px;
}

.gold-region-dropdown__button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 12px 16px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.gold-region-dropdown__button:hover,
.gold-region-dropdown.is-open .gold-region-dropdown__button {
  border-color: var(--pink-2);
  box-shadow: 0 0 0 4px rgba(239, 0, 138, 0.08);
  background: #fff;
}

.gold-region-dropdown__button::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--gold-3);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.gold-region-dropdown.is-open .gold-region-dropdown__button::after {
  transform: translateY(2px) rotate(225deg);
}

.gold-region-dropdown__button span {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.gold-region-dropdown__button small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.gold-region-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.gold-region-dropdown.is-open .gold-region-dropdown__menu {
  display: grid;
}

.gold-region-dropdown__item {
  display: grid;
  gap: 3px;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.gold-region-dropdown__item strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.gold-region-dropdown__item span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.gold-region-dropdown__item:hover,
.gold-region-dropdown__item.is-selected {
  background: var(--card-2);
}

/* =========================================================
   Payment panels
   ========================================================= */

.gold-payment-panel {
  display: none;
  margin-top: 18px;
}

.gold-payment-panel.is-active {
  display: block;
}

.gold-payment-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 14px;
}

.gold-payment-panel__head .gold-price {
  margin: 0;
}

.gold-international-form {
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}

.gold-summary-box-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========================================================
   PayPal SDK
   ========================================================= */

.gold-paypal-buttons {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
}

.gold-paypal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: var(--gold-surface);
  color: var(--muted);
  font-weight: 700;
}

/* =========================================================
   Mercado Pago
   ========================================================= */

.gold-mp-test-hint {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: var(--gold-surface);
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.gold-mp-test-hint[hidden] {
  display: none !important;
}

.gold-mp-test-hint strong {
  color: var(--gold-3);
  font-weight: 700;
}

.gold-card-form[data-mp-mode='test'] .gold-payment-panel__head,
body[data-mp-mode='test'] #goldArgentinaPayment .gold-payment-panel__head {
  border-color: var(--gold-line);
}

.gold-field input.is-invalid,
.gold-secure-field.is-invalid,
.gold-custom-dropdown__button.is-invalid {
  border-color: rgba(217, 48, 101, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(217, 48, 101, 0.12) !important;
}

.gold-mp-redirect-card .gold-summary-box {
  margin-top: 18px;
}

.gold-mp-redirect-card .gold-field {
  margin-top: 14px;
}

#mpCheckoutButton[disabled] {
  opacity: 0.68;
  cursor: wait;
}

/* =========================================================
   Accessibility
   ========================================================= */

.gold-page a:focus-visible,
.gold-page button:focus-visible,
.gold-page input:focus-visible,
.gold-page select:focus-visible {
  outline: 3px solid rgba(239, 0, 138, 0.18);
  outline-offset: 3px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 920px) {

  .gold-hero-layout,
  .gold-grid-main,
  .gold-benefits-grid,
  .gold-faq-grid {
    grid-template-columns: 1fr;
  }

  .gold-preview-card {
    max-width: 520px;
  }

  .gold-summary-box {
    grid-template-columns: 1fr;
  }

  .gold-page.is-gold-active .gold-side-stack {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .gold-shell {
    width: min(100% - 20px, 1120px);
    padding: 18px 0 36px;
  }

  .gold-hero,
  .gold-plan,
  .gold-benefit,
  .gold-faq {
    border-radius: 14px;
  }

  .gold-hero {
    padding: 22px;
  }

  .gold-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .gold-actions .btn,
  .gold-main-cta {
    width: 100%;
    justify-content: center;
  }

  .gold-form-grid {
    grid-template-columns: 1fr;
  }

  .gold-hero h1 {
    font-size: clamp(2.15rem, 14vw, 3.8rem);
  }

  .gold-payment-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gold-summary-box-two {
    grid-template-columns: 1fr;
  }

  .gold-preview-profile {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .gold-avatar {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .gold-plan,
  .gold-benefit,
  .gold-faq,
  .gold-preview-card,
  .gold-region-selector,
  .gold-field input,
  .gold-field select,
  .gold-secure-field,
  .gold-custom-dropdown__button,
  .gold-region-dropdown__button {
    transition: none !important;
  }
}