/* Funil Reconexão Neural — clínico-editorial premium
   Soft Structuralism + copper neural thread (não cream/terracotta, não purple dark) */

:root {
  --mist: #e7ecf1;
  --mist-deep: #d5dde6;
  --paper: #f5f7fa;
  --ink: #152033;
  --ink-soft: #3d4a5c;
  --muted: #6b7789;
  --copper: #9a6b3f;
  --copper-deep: #7a5230;
  --copper-soft: rgba(154, 107, 63, 0.14);
  --line: rgba(21, 32, 51, 0.1);
  --ok: #3d6b5a;
  --radius-shell: 1.75rem;
  --radius-core: 1.35rem;
  --max: 26.5rem;
  --page-max: 28rem;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-ambient: 0 24px 60px -28px rgba(21, 32, 51, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 55% at 80% -5%, rgba(154, 107, 63, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 0% 100%, rgba(61, 107, 90, 0.1), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, #eef2f6 45%, var(--mist-deep) 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-deep);
}

/* ——— VSL (mantém escuro só na index) ——— */
body.page-vsl {
  color: #f2efe8;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(154, 107, 63, 0.2), transparent),
    linear-gradient(180deg, #121820 0%, #0f1419 40%, #0c1014 100%);
}

body.page-vsl::before {
  opacity: 0.04;
}

.page--vsl {
  position: relative;
  z-index: 1;
  width: min(100% - 1rem, var(--max));
  margin: 0 auto;
  padding: 0.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

.funnel-skip {
  margin: 0.65rem 0 0;
  text-align: center;
  width: 100%;
}

.btn-funnel-skip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(242, 239, 232, 0.55);
  text-decoration: none;
  border: 1px solid rgba(242, 239, 232, 0.14);
  border-radius: 999px;
  background: transparent;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
}

.btn-funnel-skip:hover {
  color: #f2efe8;
  border-color: rgba(242, 239, 232, 0.35);
}

.authority {
  width: 100%;
  max-width: var(--max);
  margin: 1rem auto 0;
}

.authority__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 1rem;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.authority__link:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.authority__link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.authority__link + .authority__link {
  margin-top: 0.75rem;
}

.authority__item {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(242, 239, 232, 0.12);
  background: #1a222c;
  pointer-events: none;
}

/* ——— Páginas de oferta / obrigado ——— */
.page {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, var(--page-max));
  margin: 0 auto;
  padding: 1.5rem 0 3.5rem;
}

.page--offer,
.page--thanks {
  padding-top: 1.75rem;
}

/* Neural thread */
.page--offer::before,
.page--thanks::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 2.5rem;
  bottom: 3rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--copper) 12%,
    var(--copper) 88%,
    transparent
  );
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 380px) {
  .page--offer::before,
  .page--thanks::before {
    display: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.15rem);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lede,
.subhead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36ch;
}

/* Double-bezel shells */
.shell {
  padding: 0.35rem;
  border-radius: var(--radius-shell);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-ambient);
  margin-bottom: 1.15rem;
}

.shell__core {
  border-radius: var(--radius-core);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.player-shell .shell__core {
  padding: 0;
  background: #152033;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(154, 107, 63, 0.28), transparent 65%),
    linear-gradient(160deg, #1a2435 0%, #0f1622 100%);
  color: #f5f7fa;
}

.video-placeholder__play {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 247, 250, 0.35);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 0.25rem;
}

.video-placeholder__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 247, 250, 0.55);
}

.video-placeholder__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 14ch;
}

.video-placeholder__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(245, 247, 250, 0.55);
  max-width: 22ch;
}

.player-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.player-shell .player-wrap {
  max-width: none;
}

.panel {
  padding: 1.25rem 1.2rem 1.35rem;
}

.panel__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.panel__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-meta {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0.15rem 0 0.25rem;
}

.price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.price-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.anchor {
  margin: 0 0 1.1rem;
  font-size: 0.86rem;
  color: var(--ok);
  font-weight: 500;
}

.bullets {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.bullet-mark {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px var(--copper-soft);
}

.guarantee {
  margin: 0 0 1.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: var(--copper-soft);
  color: var(--ink-soft);
  font-size: 0.86rem;
  border: 1px solid rgba(154, 107, 63, 0.18);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1.1rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    opacity 0.45s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--accept {
  background: var(--ink);
  color: #f5f7fa;
  box-shadow: 0 14px 36px -16px rgba(21, 32, 51, 0.55);
}

.btn--accept:hover {
  background: #1f2c42;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.45s var(--ease);
}

.btn--accept:hover .btn__icon {
  transform: translate(2px, -1px) scale(1.05);
}

.btn--decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.88rem;
  min-height: 2.65rem;
}

.btn--decline:hover {
  color: var(--ink);
  border-color: rgba(21, 32, 51, 0.22);
}

.btn--app {
  background: var(--ink);
  color: #f5f7fa;
  margin-top: 0.35rem;
}

.trust {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* Thank you */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.step-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.2;
  min-width: 1.6rem;
}

.step-body strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.step-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.app-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Só suaviza reveal de entrada — NÃO desliga pulse/brilho do CTA (conversão) */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.decline-link {
  display: block;
  width: 100%;
  margin: 0.15rem 0 0;
  padding: 0.55rem 0.25rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
  text-align: center;
}

.decline-link:hover {
  color: var(--ink-soft);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.pillar__icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: var(--ok);
  background: rgba(61, 107, 90, 0.1);
  border: 1px solid rgba(61, 107, 90, 0.18);
}

.pillar__title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.pillar__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.panel__text--tight {
  margin-bottom: 1rem;
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proof-card {
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 0.5px solid var(--line);
}

.proof-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.55rem;
}

.proof-card__tag,
.proof-card__journal {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-card__tag {
  color: var(--copper-deep);
}

.proof-card__journal {
  color: var(--muted);
}

.proof-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.proof-card__institution {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.proof-card__finding {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.proof-card__footer {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.proof-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.authority-row {
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(61, 107, 90, 0.08);
  border: 1px solid rgba(61, 107, 90, 0.14);
}

.authority-row__name {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.authority-row__proof {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-slots {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.testimonial-slot {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px dashed rgba(21, 32, 51, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

.testimonial-slot p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.compliance {
  margin: 1.25rem 0 0;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(231, 236, 241, 0.96) 28%);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn--gold-pulse,
.sticky-cta .btn-pulse-wrap,
.sticky-cta .btn--cta {
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
}

body.has-sticky-cta .page--oto {
  padding-bottom: 6.5rem;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }

  body.has-sticky-cta .page--oto {
    padding-bottom: 4.5rem;
  }
}

/* ——— OTO Upsell (Byedor) — preto + ouro ——— */
.body-oto {
  --oto-ink: #f7f0de;
  --oto-muted: rgba(247, 240, 222, 0.62);
  --oto-gold: #e8c76a;
  --oto-gold-bright: #f5dfa0;
  --oto-gold-deep: #b8923a;
  --oto-black: #070707;
  --oto-panel: #101010;
  --oto-line: rgba(232, 199, 106, 0.28);
  --font-oto: "Nunito", "Segoe UI", system-ui, sans-serif;
  color: var(--oto-ink);
  font-family: var(--font-oto);
  background:
    radial-gradient(ellipse 80% 50% at 50% -8%, rgba(232, 199, 106, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 60%, rgba(184, 146, 58, 0.08), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 45%, #080808 100%);
}

.body-oto::before {
  opacity: 0.05;
}

.page--oto {
  width: min(100% - 1.1rem, 26rem);
  padding: 1rem 0 4.5rem;
  font-family: var(--font-oto);
}

.page--oto::before {
  display: none;
}

.confirm-banner {
  text-align: center;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(232, 199, 106, 0.12), rgba(232, 199, 106, 0.04));
  border: 1px solid var(--oto-line);
  box-shadow: 0 0 40px -18px rgba(232, 199, 106, 0.55);
}

.confirm-banner__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--oto-gold-bright);
  text-transform: uppercase;
}

.confirm-banner__title--pulse {
  display: inline-block;
  transform-origin: center;
  animation: oto-confirm-pulse 1.1s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes oto-confirm-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
    text-shadow: 0 0 8px rgba(232, 199, 106, 0.25);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
    text-shadow:
      0 0 16px rgba(255, 244, 196, 0.95),
      0 0 36px rgba(232, 199, 106, 0.75);
  }
}

.confirm-banner__note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--oto-muted);
}

.player-bare {
  width: 100%;
  margin: 0 auto 0.35rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
}

.player-bare vturb-smartplayer {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.offer-visual {
  position: relative;
  margin: 0.85rem 0 1rem;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--oto-line);
  box-shadow: 0 18px 50px -24px rgba(232, 199, 106, 0.45);
  background: #0a0a0a;
  animation: oto-glow 3.6s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.offer-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-seal {
  position: absolute;
  top: 0.65rem;
  left: 0.55rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  padding: 0.45rem;
  border-radius: 50%;
  text-align: center;
  color: #fff8e8;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28), transparent 45%),
    linear-gradient(145deg, #ff4d4d 0%, #c91818 55%, #8f0e0e 100%);
  border: 3px solid #f5dfa0;
  box-shadow:
    0 0 0 2px rgba(201, 24, 24, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.45);
  transform: rotate(-12deg);
  animation: offer-seal-pulse 1.35s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.offer-seal__tag {
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.offer-seal__price {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffe9a0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@keyframes offer-seal-pulse {
  0%,
  100% {
    transform: rotate(-12deg) scale(1);
  }
  50% {
    transform: rotate(-12deg) scale(1.07);
  }
}

@keyframes oto-glow {
  0%,
  100% {
    box-shadow: 0 18px 50px -24px rgba(232, 199, 106, 0.35);
  }
  50% {
    box-shadow: 0 22px 56px -18px rgba(232, 199, 106, 0.62);
  }
}

.cta-gold {
  margin: 0 0 1.15rem;
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 199, 106, 0.14), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid var(--oto-line);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 60px -28px rgba(0, 0, 0, 0.9);
}

.cta-gold__eyebrow {
  margin: 0 0 0.45rem;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oto-black);
  background: linear-gradient(135deg, var(--oto-gold-bright), var(--oto-gold-deep));
  animation: oto-badge 2.8s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes oto-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.cta-gold__name {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--oto-gold-bright);
  letter-spacing: -0.01em;
}

.cta-gold__price-block {
  margin: 0.55rem 0 1rem;
}

.cta-gold__was {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--oto-muted);
}

.cta-gold__was s {
  text-decoration-thickness: 2px;
  color: rgba(247, 240, 222, 0.45);
}

.cta-gold__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  line-height: 1;
}

.cta-gold__x {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--oto-gold);
}

.cta-gold__value {
  display: inline-block;
  font-size: clamp(2.75rem, 12vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--oto-gold-bright);
  text-shadow: 0 0 28px rgba(232, 199, 106, 0.35);
  transform-origin: center;
  animation: oto-price 1.05s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes oto-price {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    text-shadow: 0 0 20px rgba(232, 199, 106, 0.3);
  }
  50% {
    transform: scale(1.12);
    filter: brightness(1.35);
    text-shadow:
      0 0 18px rgba(255, 244, 196, 0.95),
      0 0 42px rgba(232, 199, 106, 0.75);
  }
}

.cta-gold__cash {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--oto-ink);
}

/* —— Queda de preço à vista + countdown —— */
.price-drop {
  position: relative;
  margin: 1.35rem 0 0;
  padding: 2.85rem 0.9rem 1rem;
  border: 1px solid rgba(232, 199, 106, 0.45);
  background:
    linear-gradient(180deg, rgba(232, 199, 106, 0.14), rgba(0, 0, 0, 0.22)),
    rgba(18, 14, 8, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.buy-toast {
  position: absolute;
  top: -0.85rem;
  right: 0.35rem;
  left: 0.35rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: none;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(232, 199, 106, 0.55);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(20, 16, 8, 0.97), rgba(8, 8, 8, 0.96));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  color: #fff4d4;
  white-space: normal;
  overflow: hidden;
  animation: buy-toast-in 0.45s ease both;
}

.buy-toast.is-swap {
  animation: buy-toast-swap 0.45s ease both;
}

.buy-toast__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(232, 199, 106, 0.18);
  color: var(--oto-gold-bright);
}

.buy-toast__icon svg {
  display: block;
}

.buy-toast__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  text-align: left;
  line-height: 1.2;
}

.buy-toast__title {
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff8e0;
}

.buy-toast__msg {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(247, 240, 222, 0.88);
}

.buy-toast__city {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5dff7a;
}

@keyframes buy-toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes buy-toast-swap {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-drop__banner {
  margin: 0;
  font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--oto-gold-bright);
  text-shadow: 0 0 18px rgba(232, 199, 106, 0.35);
}

.price-drop__timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.65rem auto 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 77, 77, 0.45);
  background: rgba(0, 0, 0, 0.4);
}

.price-drop__timer-value {
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ff4d4d;
  min-width: 3.2em;
  text-shadow: 0 0 14px rgba(255, 77, 77, 0.45);
}

.price-drop__timer-value.is-urgent {
  animation: price-drop-pulse 0.9s ease-in-out infinite;
}

@keyframes price-drop-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

.price-drop__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ff4d4d;
}

.price-drop__arrow {
  display: inline-flex;
  color: #ff4d4d;
  animation: price-drop-arrow 0.65s ease-in-out infinite;
}

@keyframes price-drop-arrow {
  0%,
  100% {
    transform: translateY(-7px);
  }
  50% {
    transform: translateY(7px);
  }
}

.guarantee-seal {
  margin: 0.35rem auto 0.85rem;
  width: min(9.5rem, 42vw);
}

.guarantee-seal img {
  display: block;
  width: 100%;
  height: auto;
}

.price-drop__cash {
  margin-top: 0.55rem;
  font-size: 1rem;
}

.price-drop__cash s {
  margin: 0 0.2rem;
  color: #ff4d4d;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff4d4d;
}

.price-drop__now {
  display: inline-block;
  margin: 0 0.15rem;
  font-size: 1.25em;
  font-weight: 900;
  color: var(--oto-gold-bright);
  text-shadow: 0 0 16px rgba(232, 199, 106, 0.4);
  animation: price-drop-now-pulse 1.4s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes price-drop-now-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    filter: brightness(1.18);
  }
}

.cta-gold__checks {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.cta-gold__checks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: var(--oto-ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.cta-gold__checks .bullet-mark {
  margin-top: 0.4rem;
  background: var(--oto-gold);
  box-shadow: 0 0 0 4px rgba(232, 199, 106, 0.18);
}

.cta-gold__objections {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cta-gold__objections li {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--oto-gold);
  letter-spacing: 0.01em;
}

.cta-gold__objections li::before {
  content: "✓ ";
  color: var(--oto-gold-bright);
}

.cta-gold__guarantee,
.cta-gold__urgency {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--oto-muted);
}

.cta-gold__urgency {
  color: var(--oto-gold);
  margin-bottom: 1rem;
}

.btn-pulse-wrap {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.btn-pulse-wrap::before,
.btn-pulse-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 1.5px solid rgba(232, 199, 106, 0.55);
  pointer-events: none;
  z-index: 0;
  animation: oto-wave 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.btn-pulse-wrap::after {
  animation-delay: 1.1s;
}

@keyframes oto-wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.btn--gold-pulse {
  position: relative;
  z-index: 1;
  width: 100%;
  flex-direction: column;
  gap: 0.2rem;
  border-radius: 999px;
  min-height: 3.75rem;
  padding: 0.95rem 1.15rem;
  color: #1a1408;
  font-family: var(--font-oto);
  background: linear-gradient(135deg, #f5e2a8 0%, #e8c76a 42%, #c9a13f 100%);
  box-shadow:
    0 0 0 0 rgba(232, 199, 106, 0.55),
    0 16px 36px -14px rgba(232, 199, 106, 0.65);
  animation: oto-pulse 1.15s cubic-bezier(0.32, 0.72, 0, 1) infinite;
  overflow: hidden;
}

.btn--gold-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.5), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.btn--gold-pulse::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 55%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 28%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.05) 72%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-18deg);
  animation: oto-shine 1.05s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes oto-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(232, 199, 106, 0.75),
      0 16px 36px -14px rgba(232, 199, 106, 0.7);
  }
  50% {
    transform: scale(1.055);
    box-shadow:
      0 0 0 14px rgba(232, 199, 106, 0),
      0 0 28px rgba(255, 244, 196, 0.55),
      0 22px 48px -8px rgba(232, 199, 106, 0.95);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(232, 199, 106, 0),
      0 16px 36px -14px rgba(232, 199, 106, 0.7);
  }
}

@keyframes oto-shine {
  0% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0.85;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(320%) skewX(-18deg);
    opacity: 0.85;
  }
}

.btn--gold-pulse:hover {
  background: linear-gradient(135deg, #fff0c2 0%, #f0d278 45%, #d4af4a 100%);
  filter: brightness(1.05);
}

.btn--gold-pulse .btn__main {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.btn--gold-pulse .btn__sub {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.85;
  text-transform: none;
  letter-spacing: 0;
}

.btn--decline-soft {
  width: 100%;
  min-height: 2.35rem;
  margin-top: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 240, 222, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 240, 222, 0.5);
  font-family: var(--font-oto);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: none;
  text-decoration: none;
}

.btn--decline-soft:hover {
  color: rgba(247, 240, 222, 0.72);
  border-color: rgba(247, 240, 222, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn--decline-soft--light {
  background: #d8d8d8;
  border: 1px solid #c4c4c4;
  color: #5a5a5a;
  font-weight: 700;
}

.btn--decline-soft--light:hover {
  background: #e4e4e4;
  border-color: #b8b8b8;
  color: #3f3f3f;
}

.bonus-card {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  text-align: left;
  border-radius: 0.95rem;
  background: rgba(232, 199, 106, 0.08);
  border: 1px solid rgba(232, 199, 106, 0.28);
}

.bonus-card__tag {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oto-gold);
}

.bonus-card__title {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--oto-gold-bright);
}

.bonus-card__text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--oto-muted);
}

/* ——— Obrigado (mesmo visual OTO) ——— */
.page--thanks.page--oto {
  padding-bottom: 3rem;
}

.ty-confetti {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 2147483646 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.thanks-expert {
  margin: 0.35rem auto 1.15rem;
  max-width: 22rem;
  padding: 0 0.75rem;
}

.thanks-expert img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(232, 199, 106, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.oto-hero--thanks {
  margin: 0 0 1.15rem;
  text-align: center;
}

.notice-card {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(232, 199, 106, 0.5);
  background:
    linear-gradient(180deg, rgba(232, 199, 106, 0.16), rgba(0, 0, 0, 0.35)),
    rgba(18, 14, 8, 0.72);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.notice-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oto-gold);
}

.notice-card__title {
  margin: 0;
  font-family: var(--font-oto);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--oto-gold-bright);
}

.notice-card__text {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--oto-ink);
}

.headline--gold {
  font-family: var(--font-oto);
  font-weight: 900;
  color: var(--oto-gold-bright);
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  letter-spacing: -0.02em;
}

.subhead--gold {
  margin: 0.65rem auto 0;
  max-width: 34ch;
  color: var(--oto-muted);
  font-weight: 600;
}

.steps--gold li {
  border-bottom-color: rgba(232, 199, 106, 0.16);
}

.steps--gold .step-num {
  color: var(--oto-gold);
  font-family: var(--font-oto);
  font-weight: 800;
}

.steps--gold .step-body strong {
  color: var(--oto-gold-bright);
  font-family: var(--font-oto);
}

.steps--gold .step-body p {
  color: var(--oto-muted);
}

.trust--gold {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--oto-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

a.btn--gold-pulse {
  text-decoration: none;
}

.decline-link--gold {
  color: rgba(247, 240, 222, 0.45);
  font-family: var(--font-oto);
  font-weight: 600;
}

.decline-link--gold:hover {
  color: rgba(247, 240, 222, 0.75);
}

.shell--dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(232, 199, 106, 0.14);
  box-shadow: none;
}

.shell--dark .shell__core,
.panel--dark {
  background: var(--oto-panel);
  border-color: rgba(232, 199, 106, 0.12);
  box-shadow: none;
}

.page--oto .panel__title {
  font-family: var(--font-oto);
  font-weight: 800;
  color: var(--oto-gold-bright);
}

.page--oto .panel__text,
.page--oto .pillar__text {
  color: var(--oto-muted);
}

.page--oto .pillar__title {
  color: var(--oto-ink);
  font-weight: 800;
}

.page--oto .pillar__icon {
  color: var(--oto-gold);
  background: rgba(232, 199, 106, 0.1);
  border-color: rgba(232, 199, 106, 0.22);
}

.page--oto .proof-card {
  background: #161616;
  border-color: rgba(232, 199, 106, 0.16);
}

.page--oto .proof-card__title,
.page--oto .proof-card__finding {
  color: var(--oto-ink);
}

.page--oto .proof-card__tag {
  color: var(--oto-gold);
}

.page--oto .proof-card__institution,
.page--oto .proof-card__footer,
.page--oto .proof-card__journal {
  color: var(--oto-muted);
}

.page--oto .proof-card__link {
  color: var(--oto-gold-bright);
}

.trust-badges--gold li {
  color: var(--oto-ink);
  background: rgba(232, 199, 106, 0.08);
  border-color: rgba(232, 199, 106, 0.2);
}

.authority-row--gold {
  background: rgba(232, 199, 106, 0.08);
  border-color: rgba(232, 199, 106, 0.2);
}

.authority-row--gold .authority-row__name {
  color: var(--oto-gold-bright);
}

.authority-row--gold .authority-row__proof {
  color: var(--oto-muted);
}

.authority-visual {
  margin: 0.85rem 0 0;
  padding: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(232, 199, 106, 0.22);
  background: #0a0a0a;
  box-shadow: 0 14px 36px -22px rgba(232, 199, 106, 0.4);
}

.authority-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page--oto .testimonial-slot {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(232, 199, 106, 0.18);
}

.page--oto .testimonial-slot p {
  color: var(--oto-muted);
}

.proof-prints {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.proof-print {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(232, 199, 106, 0.22);
  background: #0a0a0a;
  box-shadow: 0 14px 36px -22px rgba(232, 199, 106, 0.4);
}

.proof-print img {
  width: 100%;
  height: auto;
  display: block;
}

.player-bare--nested {
  margin-top: 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(232, 199, 106, 0.18);
}

.user-proofs {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.user-proofs li {
  padding: 0.9rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(232, 199, 106, 0.06);
  border: 1px solid rgba(232, 199, 106, 0.16);
}

.user-proofs strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--oto-gold-bright);
}

.user-proofs span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--oto-muted);
}

.compliance--gold {
  color: rgba(247, 240, 222, 0.4);
}

.sticky-cta--gold {
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.96) 28%);
}
