/* =========================================================================
   OFT-Review Pricing — production CSS
   4 cards (Extensive → Gold featured → Platinum → Black)
   Design system OFT (gold + onyx + ⬢)
   ========================================================================= */

.oft-pricing,
.oft-pricing *,
.oft-pricing *::before,
.oft-pricing *::after { box-sizing: border-box; }

.oft-pricing {
  --gold-200: #F8DB7D;
  --gold-300: #ECC575;
  --gold-400: #DBAD6B;
  --gold-500: #B58851;
  --gold-600: #8E6A3D;
  --gold-700: #6E5230;
  --onyx-1000: #060606;
  --onyx-900: #131210;
  --onyx-800: #1A1A1A;
  --onyx-700: #232220;
  --paper-50: #FAF8F5;
  --fg-on-dark: #F4F0EA;

  position: relative;
  padding: 96px 24px;
  background: #111111;
  color: var(--fg-on-dark);
  font-family: 'Exo 2', 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
  overflow: clip;
  -webkit-font-smoothing: antialiased;
}

.oft-pricing a,
.oft-pricing a:hover,
.oft-pricing a:focus,
.oft-pricing a:visited {
  text-decoration: none !important;
  color: inherit !important;
}

.oft-pricing__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ─── HEADER ──────────────────────────────────────────────────────── */
.oft-pricing__header { text-align: center; margin-bottom: 56px; }

.oft-pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(219, 173, 107, 0.08);
  border: 1px solid rgba(219, 173, 107, 0.32);
  color: var(--gold-300);
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.oft-pricing h2.oft-pricing__heading {
  font-family: 'Orbitron', 'Eurostile', system-ui, sans-serif !important;
  font-size: clamp(28px, 3.6vw, 36px) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.02em !important;
  color: var(--fg-on-dark) !important;
  margin: 0 auto 14px !important;
  max-width: 30ch;
  text-wrap: balance;
}

.oft-pricing h3.oft-pricing__subheading {
  font-family: 'Exo 2', sans-serif !important;
  font-size: clamp(15px, 1.6vw, 17px) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: rgba(244, 240, 234, 0.72) !important;
  margin: 0 auto !important;
  max-width: 64ch;
  text-wrap: balance;
}

/* ─── GRID DOS 4 CARDS ────────────────────────────────────────────── */
.oft-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ─── CARD ────────────────────────────────────────────────────────── */
.oft-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  background: var(--onyx-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 320ms ease,
              box-shadow 320ms ease;
}
.oft-pricing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 173, 107, 0.32);
}

/* Featured card — Gold (destaque visual) */
.oft-pricing__card--featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 173, 107, 0.14), transparent 60%),
    var(--onyx-900);
  border: 1px solid var(--gold-400);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(219, 173, 107, 0.32),
    0 0 80px rgba(248, 219, 125, 0.12);
  transform: translateY(-8px);
}
.oft-pricing__card--featured:hover {
  transform: translateY(-12px);
}

/* ─── MASCOTE ÚNICO QUE SEGUE MOUSE/SCROLL ───────────────────────────
   z-index SEMPRE alto — sem flicker quando termina a transição.
   Mascote estático colado no topo do card ativo. */
.oft-pricing__grid { position: relative; }
.oft-pricing__card { position: relative; }

.oft-pricing__mascot {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
  will-change: transform;
}
.oft-pricing__mascot.is-visible { opacity: 1; }
.oft-pricing__mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  display: block;
  /* sem animação de float — mascote estático */
}

@media (max-width: 700px) {
  /* Mascote escondido no mobile — só desktop/tablet exibe. */
  .oft-pricing__mascot { display: none !important; }
}

/* Badge no topo do featured */
.oft-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  color: var(--onyx-1000);
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(219, 173, 107, 0.4);
  white-space: nowrap;
}

.oft-pricing__card-header {
  margin-bottom: 22px;
}

.oft-pricing__tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(219, 173, 107, 0.08);
  border: 1px solid rgba(219, 173, 107, 0.3);
  color: var(--gold-300);
  font-family: 'Exo 2', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0 0 14px;
  width: max-content;
}
.oft-pricing__tier span[aria-hidden] { color: var(--gold-400); font-size: 9px; }

.oft-pricing h3.oft-pricing__name {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: var(--fg-on-dark) !important;
  margin: 0 0 8px !important;
  text-wrap: balance;
}

.oft-pricing__access {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-300);
  margin: 0;
}

/* Features block */
.oft-pricing__features-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.oft-pricing__inherits {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(248, 219, 125, 0.10), rgba(219, 173, 107, 0.04));
  border: 1px solid rgba(219, 173, 107, 0.22);
  border-radius: 10px;
  margin: 0;
}
.oft-pricing__inherits-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 234, 0.55);
}
.oft-pricing__inherits-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-200);
}

.oft-pricing__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oft-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(244, 240, 234, 0.86);
}
.oft-pricing__feature--highlight {
  padding: 6px 10px;
  background: rgba(248, 219, 125, 0.10);
  border: 1px solid rgba(219, 173, 107, 0.28);
  border-radius: 8px;
  font-weight: 700;
  color: var(--fg-on-dark);
}
.oft-pricing__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold-300);
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(248, 219, 125, 0.3));
}

/* "Ver todos os benefícios" details */
.oft-pricing__more {
  border-top: 1px dashed rgba(219, 173, 107, 0.2);
  padding-top: 12px;
  margin-top: 4px;
}
.oft-pricing__more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-300);
  padding: 4px 0;
  transition: color 200ms ease;
}
.oft-pricing__more-toggle::-webkit-details-marker { display: none; }
.oft-pricing__more-toggle::marker { content: ''; }
.oft-pricing__more-toggle:hover { color: var(--gold-200); }
.oft-pricing__more-arrow {
  width: 14px;
  height: 14px;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.oft-pricing__more[open] .oft-pricing__more-arrow { transform: rotate(180deg); }
.oft-pricing__more[open] .oft-pricing__more-label::after { content: ' menos'; }
.oft-pricing__more .oft-pricing__features { margin-top: 10px; }

/* CTA — todos sólidos gold (uniformizados) */
.oft-pricing__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--gold-200) 0%, var(--gold-400) 100%);
  color: var(--onyx-1000) !important;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none !important;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(219, 173, 107, 0.32),
    0 2px 0 rgba(167, 127, 68, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms ease;
}
.oft-pricing__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.oft-pricing__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(219, 173, 107, 0.45),
    0 2px 0 rgba(167, 127, 68, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.oft-pricing__cta:hover::after { transform: translateX(120%); }

.oft-pricing__arrow {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}
.oft-pricing__cta:hover .oft-pricing__arrow { transform: translateX(4px); }

/* ─── MOBILE: stack ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .oft-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .oft-pricing__card--featured { transform: none; }
  .oft-pricing__card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 700px) {
  .oft-pricing { padding: 64px 16px; }
  .oft-pricing__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .oft-pricing__card { padding: 28px 22px 24px; }
  .oft-pricing__mascot { width: 64px; height: 64px; top: -44px; right: 14px; }
}
