/*
  Fontes Gotham:
  arquivos esperados em:

  assets/fonts/Gotham-Medium.woff
  assets/fonts/Gotham-Bold.woff
  assets/fonts/Gotham-Black.woff
  assets/fonts/Gotham-Ultra.woff
*/

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Ultra.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #02090d;

  --loader-color: #ffffff;
  --loader-hover: #ea88b6;

  --page-bg: #efefef;
  --black: #050505;
  --error: #7d102f;

  --pink: #df82b4;
  --pink-light: #f0a9cd;
  --pink-border: #df5da1;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--page-bg);
  color: var(--black);
  font-family: 'Gotham', sans-serif;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* =========================
   BOTÃO LIMPAR CACHE
========================= */

.clear-cache-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  height: 36px;
  padding: 0 14px;
  border: 2px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  font-family: 'Gotham', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000000;
  opacity: 0.9;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.clear-cache-button:hover {
  opacity: 1;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000000;
}

/* =========================
   PÁGINA REVELADA
========================= */

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  opacity: 1;
  transform: scale(1.04);
  filter: blur(3px);
  background: #efefef;
  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.loader-revealing .page,
body.loader-done .page {
  transform: scale(1);
  filter: blur(0);
}

.activation-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  background: #efefef;
}

/* =========================
   JANELA NEOBRUTALISTA
========================= */

.activation-panel {
  position: relative;
  width: min(750px, 100%);
  border: 3px solid #000000;
  background: #ffffff;
  box-shadow: 18px 18px 0 #000000;
}

.activation-panel-top {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 44px 16px 18px;
  border-bottom: 3px solid #000000;
  background: #ffffff;
}

.activation-panel-top span {
  display: inline-flex;
  align-items: center;
  min-width: 12ch;
  font-family: 'Gotham', sans-serif;
  font-size: clamp(30px, 3.4vw, 39px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: #000000;
}

.activation-panel-top span::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.9em;
  margin-left: 5px;
  background: #000000;
  transform: translateY(2px);
  opacity: 0;
}

.activation-panel-top span.is-typing::after {
  opacity: 1;
  animation: typingCursorBlink 0.72s steps(1) infinite;
}

@keyframes typingCursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.activation-panel-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 3px solid #000000;
  border-bottom: 3px solid #000000;
  background: #1b1b1b;
  color: #f3a3ca;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  padding: 0 0 2px;
  overflow: visible;
  isolation: isolate;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.activation-panel-close:hover {
  background: #111111;
}

.activation-panel-close:active,
.activation-panel-close.is-pressed {
  transform: scale(0.92);
}

.activation-panel-body {
  min-height: 430px;
  display: grid;
  place-items: center;
  background: #df82b4;
  padding: 29px 32px 58px;
}

.activation-content--neo {
  width: min(560px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: none;
}

/* =========================
   EFEITO CLIQUE FECHAR
========================= */

.click-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10001;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.click-effect .spike {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: bottom;
  width: 0;
  height: 0;
  background: #f3a3ca;
  border-radius: 999px;
  transform: rotate(var(--angle)) translateY(var(--distance));
}

.click-effect.effect .spike {
  animation: closeSpikeClick 0.75s ease-out forwards;
}

@keyframes closeSpikeClick {
  0% {
    width: 3px;
    height: 12px;
    opacity: 0;
    transform: rotate(var(--angle)) translateY(0);
  }

  2% {
    width: 4px;
    height: 16px;
    opacity: 1;
    transform: rotate(var(--angle)) translateY(0);
  }

  100% {
    width: 0;
    height: 0;
    opacity: 1;
    transform: rotate(var(--angle)) translateY(var(--distance));
  }
}

/* =========================
   LOGO
========================= */

.activation-logo {
  position: relative;
  display: block;
  width: min(178px, 48vw);
  height: 78px;
  margin-bottom: 16px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  --logo-mask-x: 50%;
  --logo-mask-y: 50%;
}

.activation-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.activation-logo-pink {
  z-index: 1;
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: scale(1);
}

.activation-logo-black {
  z-index: 2;
  opacity: 0;
  transform: scale(0.98);
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.activation-logo:hover .activation-logo-black {
  opacity: 0 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.activation-logo.is-toggled .activation-logo-pink {
  opacity: 0;
  transform: scale(0.98);
}

.activation-logo.is-toggled .activation-logo-black {
  opacity: 1 !important;
  transform: scale(1);
}

.activation-logo.is-clicked {
  animation: logoPressSwitch 0.34s ease;
}

@keyframes logoPressSwitch {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================
   CONTEÚDO
========================= */

.activation-title {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Gotham', sans-serif;
  font-size: clamp(31px, 4vw, 39px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  perspective: 600px;
}

.activation-title br {
  display: block;
}

.activation-title .title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.activation-title .title-word {
  display: inline-flex;
  white-space: nowrap;
  vertical-align: baseline;
}

.activation-title .title-space {
  display: inline-block;
  width: 0.32em;
}

.activation-title .title-char {
  display: inline-block;
  opacity: 0;
  text-align: center;
  transform: translateY(18px);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
  will-change: transform, opacity;
}

body.page-ready .activation-title .title-char {
  animation: titleCharIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc((var(--char-index) * 0.024s) + 0.16s);
}

.activation-title .title-char:hover {
  transform: translateY(-4px) !important;
}

@keyframes titleCharIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.activation-instruction--neo {
  margin: 22px 0 0;
  font-family: 'Gotham', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.045em;
  text-transform: none;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.86);
  opacity: 0;
  transform: translateY(14px);
}

body.page-ready .activation-instruction--neo {
  animation: fadeUpSoft 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.72s;
}

.activation-form--neo {
  width: min(294px, 100%);
  margin: 12px auto 0;
}

.activation-error {
  display: none;
  margin-top: 14px;
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: var(--error);
  font-weight: 700;
  letter-spacing: -0.02em;
  transform: translateY(6px);
}

.activation-error.is-visible {
  display: block;
  animation: fadeUpSoft 0.32s ease forwards;
}

/* =========================
   CAMPO DO CÓDIGO
========================= */

.secret-code-wrap {
  position: relative;
  width: 100%;
  outline: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center center;
}

body.page-ready .secret-code-wrap {
  animation: inputOpenCenter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.92s;
}

@keyframes inputOpenCenter {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.secret-code-real-input {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  caret-color: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.secret-code {
  list-style: none;
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid #d9539b;
  border-radius: 999px;
  background: #f0a9cd;
  box-shadow: none;
  cursor: text;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.secret-code-wrap:focus-within .secret-code,
.secret-code-wrap.is-focused .secret-code {
  background: #f4b0d2;
  border-color: #d94b94;
}

.secret-code:hover {
  transform: translateY(-1px);
}

.digit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  height: 26px;
}

.digit span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  font-family: 'Gotham', sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
  filter: none;
  scale: 1;
  transform: translateY(2px);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.digit.is-current span {
  transform: translateY(2px) scale(1.08);
}

/* =========================
   BOTÃO ATIVAÇÃO
========================= */

.activation-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
}

.activation-button .button-label {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

.activation-button.learn-more {
  width: min(174px, 100%);
  margin-top: 20px;
  font-weight: 800;
  color: #8f7884;
  text-transform: uppercase;
  padding: 1.25em 1.25em;
  background: transparent;
  border: 0;
  border-radius: 7px;
  opacity: 0;
  transform: translateY(16px);
  position: relative;
  overflow: visible;
  box-shadow: none;
  transition:
    transform 150ms cubic-bezier(0, 0, 0.58, 1),
    color 150ms cubic-bezier(0, 0, 0.58, 1);
}

body.page-ready .activation-button.learn-more {
  animation: fadeUpSoft 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.12s;
}

/* base fixa de baixo */
.activation-button.learn-more::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  bottom: -8px;
  z-index: 1;
  border-radius: 7px;
  background: #d8cbd0;
  transition:
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}

/* tampa do botão */
.activation-button.learn-more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 7px;
  background: #f3eaed;
  transition:
    transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.activation-button.learn-more:not(:disabled) {
  color: #3a2c34;
}

.activation-button.learn-more:not(:disabled)::before {
  background: #f3bfd0;
}

.activation-button.learn-more:not(:disabled)::after {
  background: #fff0f0;
}

.activation-button.learn-more:hover:not(:disabled)::after {
  background: #ffe9e9;
  transform: translateY(4px);
}

.activation-button.learn-more:hover:not(:disabled) .button-label {
  transform: translateY(4px);
}

.activation-button.learn-more:active:not(:disabled)::after {
  transform: translateY(8px);
}

.activation-button.learn-more:active:not(:disabled) .button-label {
  transform: translateY(8px);
}

.activation-button.learn-more:disabled {
  cursor: not-allowed;
  opacity: 1;
  color: #9c8792;
}

.activation-button.learn-more:disabled::before {
  background: #d9cdd1;
}

.activation-button.learn-more:disabled::after {
  background: #f2e9ec;
}

.activation-button.learn-more.is-loading {
  cursor: wait;
  pointer-events: none;
}

.activation-button.learn-more.is-loading::before {
  background: #f3bfd0;
}

.activation-button.learn-more.is-loading::after {
  background: #fff0f0;
}

.activation-button.learn-more.is-loading .button-label {
  transform: translateY(0);
}

/* =========================
   ATIVANDO... COM PONTOS EM ONDA
========================= */

.activation-button .loading-dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 3ch;
  margin-left: 1px;
}

.activation-button .loading-dots span {
  display: inline-block;
  animation: loadingDotWave 0.9s ease-in-out infinite;
}

.activation-button .loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.activation-button .loading-dots span:nth-child(2) {
  animation-delay: 0.14s;
}

.activation-button .loading-dots span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes loadingDotWave {
  0%,
  70%,
  100% {
    transform: translateY(0);
  }

  35% {
    transform: translateY(-4px);
  }
}

/* =========================
   ANIMAÇÕES UTILITÁRIAS
========================= */

@keyframes fadeUpSoft {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   LOADER
========================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
  overflow: hidden;
  background: transparent;
}

.loader-mask-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  transform: translate3d(0, 0, 0);
}

.loader-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.loader-content-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(332px, 78vw);
  color: var(--loader-color);
  pointer-events: auto;
  cursor: default;
  transform-origin: center;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.32s ease;
}

.loader-content-inner:hover {
  transform: translate3d(0, 0, 0) scale(1.055);
  color: var(--loader-hover);
}

.loader-label {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  color: currentColor;
  display: inline-flex;
  align-items: baseline;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.loader-char,
.loader-dots span {
  display: inline-block;
  will-change: opacity;
}

.loader-dots {
  display: inline-flex;
  margin-left: 1px;
}

.loader-dots span {
  opacity: 0.25;
  animation: loadingDot 1.1s infinite ease-in-out;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes loadingDot {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.loader-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  transform-origin: center;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.loader-line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.loader-percent {
  min-width: 38px;
  text-align: right;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: currentColor;
  font-variant-numeric: tabular-nums;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.loader-content-inner:hover .loader-line {
  background: rgba(234, 136, 182, 0.24);
}

.loader-content-inner:hover .loader-line-fill {
  background: var(--loader-hover);
  box-shadow: 0 0 14px rgba(234, 136, 182, 0.65);
}

/* =========================
   FINAL: ENCONTRO + PARTÍCULAS
========================= */

body.loader-text-out .loader-content-inner {
  pointer-events: none;
}

body.loader-text-out .loader-line {
  animation: loaderLineCloseToCenter 0.74s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

body.loader-text-out .loader-line-fill {
  transform-origin: center;
}

body.loader-text-out .loader-label {
  animation: loaderLabelMeetCenter 0.74s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

body.loader-text-out .loader-percent {
  animation:
    loaderPercentMeetCenter 0.74s cubic-bezier(0.76, 0, 0.24, 1) forwards,
    loaderCharHideOnCollision 0.12s linear forwards 0.62s;
}

body.loader-text-out .loader-char {
  animation: loaderCharHideOnCollision 0.12s linear forwards;
  animation-delay: 0.62s;
}

body.loader-text-out .loader-dots span {
  animation: loaderCharHideOnCollision 0.12s linear forwards;
  animation-delay: 0.62s;
}

.loader-burst-particles {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  width: 1px;
  height: 1px;
  pointer-events: none;
  color: currentColor;
  transform: translate3d(0, 0, 0);
  overflow: visible;
}

.loader-burst-particles span {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 1px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
  will-change: transform, opacity;
}

body.loader-text-out .loader-burst-particles span {
  animation: loaderBurstParticle 0.86s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.58s + (var(--i) * 0.018s));
}

@keyframes loaderLineCloseToCenter {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }

  55% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(0.12);
  }

  82% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(0.018);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
}

@keyframes loaderLabelMeetCenter {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(104px, 0, 0);
  }
}

@keyframes loaderPercentMeetCenter {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(-104px, 0, 0);
  }
}

@keyframes loaderCharHideOnCollision {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loaderBurstParticle {
  0% {
    opacity: 0;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(0, 0, 0)
      scaleX(0.6);
  }

  8% {
    opacity: 1;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(0, 0, 0)
      scaleX(1.6);
  }

  48% {
    opacity: 0.85;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(calc(var(--x) * 0.62), calc(var(--y) * 0.62), 0)
      scaleX(0.9);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--x), var(--y), 0)
      scaleX(0.12);
  }
}

body.loader-revealing .loader-content {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

body.loader-done .site-loader {
  display: none;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {
  .activation-stage {
    padding: 28px 18px;
  }

  .activation-panel {
    box-shadow: 12px 12px 0 #000000;
  }

  .activation-panel-top {
    min-height: 62px;
    padding: 14px 40px 14px 16px;
  }

  .activation-panel-top span {
    min-width: 10ch;
    font-size: 28px;
  }

  .activation-panel-close {
    width: 24px;
    height: 29px;
    font-size: 24px;
  }

  .activation-panel-body {
    min-height: 410px;
    padding: 28px 22px 46px;
  }

  .activation-logo {
    width: 152px;
    height: 68px;
    margin-bottom: 14px;
  }

  .activation-title {
    font-size: clamp(26px, 8vw, 36px);
  }

  .activation-title .title-char:hover {
    transform: translateY(-2px) !important;
  }

  .activation-instruction--neo {
    font-size: 16px;
  }

  .activation-form--neo {
    width: min(290px, 100%);
  }

  .loader-content-inner {
    width: min(300px, 82vw);
    gap: 12px;
  }

  .loader-label,
  .loader-percent {
    font-size: 14px;
  }

  .loader-content-inner:hover {
    transform: translate3d(0, 0, 0) scale(1.035);
  }

  @keyframes loaderLabelMeetCenter {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(88px, 0, 0);
    }
  }

  @keyframes loaderPercentMeetCenter {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(-88px, 0, 0);
    }
  }
}

@media (max-width: 480px) {
  .activation-stage {
    padding: 20px 14px;
  }

  .activation-panel {
    box-shadow: 8px 8px 0 #000000;
  }

  .activation-panel-top span {
    font-size: 24px;
  }

  .activation-panel-body {
    min-height: 390px;
    padding: 26px 16px 38px;
  }

  .activation-logo {
    width: 136px;
    height: 60px;
    margin-bottom: 14px;
  }

  .activation-title {
    font-size: 25px;
    line-height: 1.08;
  }

  .activation-instruction--neo {
    font-size: 14px;
  }

  .secret-code {
    min-height: 38px;
    gap: 10px;
  }

  .digit span {
    font-size: 18px;
    transform: translateY(2px);
  }

  .digit.is-current span {
    transform: translateY(2px) scale(1.08);
  }

  .activation-button.learn-more {
    width: 165px;
  }

  .loader-content-inner {
    width: min(270px, 84vw);
    gap: 10px;
  }

  .loader-label,
  .loader-percent {
    font-size: 13px;
  }

  .loader-percent {
    min-width: 34px;
  }

  @keyframes loaderLabelMeetCenter {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(76px, 0, 0);
    }
  }

  @keyframes loaderPercentMeetCenter {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(-76px, 0, 0);
    }
  }
}

@media (hover: none) {
  .loader-content-inner:hover {
    transform: translate3d(0, 0, 0);
    color: var(--loader-color);
  }

  .loader-content-inner:hover .loader-line {
    background: rgba(255, 255, 255, 0.22);
    transform: none;
  }

  .loader-content-inner:hover .loader-line-fill {
    background: currentColor;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .click-effect.effect .spike,
  body.page-ready .activation-title .title-char,
  body.page-ready .activation-instruction--neo,
  body.page-ready .secret-code-wrap,
  body.page-ready .activation-button.learn-more,
  .activation-logo.is-clicked {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   REDES SOCIAIS ABAIXO DA JANELA
========================= */

.activation-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.activation-socials {
  width: min(750px, 100%);
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.activation-social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 2px solid #000000;
  position: relative;
  z-index: 2;
}

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #181818;
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
  transform: translate(4px, 4px);
}

.social-btn:hover .BG {
  transform: translate(4px, 4px) rotate(35deg);
  transform-origin: bottom;
}

.social-btn:hover .svgContainer {
  background-color: rgba(223, 130, 180, 0.72);
  backdrop-filter: blur(4px);
  transform: translateY(-2px);
}

.social-btn:active .svgContainer {
  transform: translateY(2px);
}

.social-icon {
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.activation-social-name {
  margin: 0;
  font-family: 'Gotham', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.075em;
  color: #000000;
  text-transform: uppercase;
}

/* Responsivo redes sociais */
@media (max-width: 768px) {
  .activation-socials {
    margin-top: 28px;
    gap: 14px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .activation-social-name {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .activation-socials {
    margin-top: 24px;
    flex-direction: column;
    gap: 14px;
  }

  .activation-social-buttons {
    gap: 10px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
  }

  .social-icon {
    font-size: 11px;
  }

  .activation-social-name {
    font-size: 20px;
  }
}

/* =========================
   BOTÃO LOGIN NO NAVEGADOR FAKE
========================= */

.activation-panel-body {
  position: relative;
}

.login-neo-button {
  --stone-50: #fafaf9;
  --stone-800: #292524;
  --yellow-400: #facc15;

  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 5;

  display: inline-block;
  font-family: 'Gotham', sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;

  padding: 1px;
  border-radius: 9999px;
  background-color: var(--stone-800);
  color: var(--stone-800);

  transform: translate(-4px, -4px);
  outline: 2px solid transparent;
  outline-offset: 5px;

  transition:
    transform 150ms ease,
    box-shadow 150ms ease;

  text-align: center;

  box-shadow:
    0.5px 0.5px 0 0 var(--stone-800),
    1px 1px 0 0 var(--stone-800),
    1.5px 1.5px 0 0 var(--stone-800),
    2px 2px 0 0 var(--stone-800),
    2.5px 2.5px 0 0 var(--stone-800),
    3px 3px 0 0 var(--stone-800),
    0 0 0 2px var(--stone-50),
    0.5px 0.5px 0 2px var(--stone-50),
    1px 1px 0 2px var(--stone-50),
    1.5px 1.5px 0 2px var(--stone-50),
    2px 2px 0 2px var(--stone-50),
    2.5px 2.5px 0 2px var(--stone-50),
    3px 3px 0 2px var(--stone-50),
    3.5px 3.5px 0 2px var(--stone-50),
    4px 4px 0 2px var(--stone-50);
}

.login-neo-button:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 2px var(--stone-50);
}

.login-neo-button:active,
.login-neo-button:focus-visible {
  outline-color: var(--yellow-400);
}

.login-neo-button:focus-visible {
  outline-style: dashed;
}

.login-neo-button > div {
  position: relative;
  pointer-events: none;
  background-color: var(--yellow-400);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  overflow: hidden;
}

.login-neo-button > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  opacity: 0.5;
  background-image:
    radial-gradient(rgb(255 255 255 / 80%) 20%, transparent 20%),
    radial-gradient(rgb(255 255 255 / 100%) 20%, transparent 20%);
  background-position:
    0 0,
    4px 4px;
  background-size: 8px 8px;
  mix-blend-mode: hard-light;
  animation: loginButtonDots 0.5s infinite linear;
}

.login-neo-button > div > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  gap: 0.25rem;
  color: var(--stone-800);
  filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.login-neo-button:active > div > span {
  transform: translateY(2px);
}

@keyframes loginButtonDots {
  0% {
    background-position:
      0 0,
      4px 4px;
  }

  100% {
    background-position:
      8px 0,
      12px 4px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .login-neo-button {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }

  .login-neo-button > div > span {
    padding: 0.65rem 1rem;
  }
}

@media (max-width: 480px) {
  .login-neo-button {
    right: 12px;
    bottom: 12px;
    font-size: 11px;
  }

  .login-neo-button > div > span {
    padding: 0.58rem 0.9rem;
  }
}

/* =========================
   MENSAGENS DA ATIVAÇÃO
========================= */

.activation-error.is-success {
  color: #095c2c;
}

.activation-error.is-warning {
  color: #6f3d00;
}

.activation-error.is-error {
  color: #7d102f;
}

/* =========================
   PÁGINA PERFIL / WELCOME
========================= */

.profile-page {
  min-height: 100vh;
  background: #efefef;
  color: #000000;
  font-family: 'Gotham', sans-serif;
}

.profile-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}

.profile-card {
  width: min(760px, 100%);
  border: 3px solid #000000;
  background: #ffffff;
  box-shadow: 18px 18px 0 #000000;
}

.profile-card-top {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-bottom: 3px solid #000000;
  background: #ffffff;
}

.profile-card-top span {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(30px, 3.4vw, 39px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: #000000;
}

.profile-card-body {
  background: #df82b4;
  padding: 54px 34px 60px;
  text-align: center;
}

.profile-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 2px solid #000000;
  background: #facc15;
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  box-shadow: 4px 4px 0 #000000;
}

.profile-title {
  width: min(560px, 100%);
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.profile-text {
  width: min(520px, 100%);
  margin: 22px auto 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.profile-form {
  width: min(420px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
}

.profile-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.profile-field span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.profile-field input,
.profile-field select {
  width: 100%;
  height: 46px;
  border: 2px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0 14px;
  outline: none;
  box-shadow: 5px 5px 0 #000000;
}

.profile-field input:focus,
.profile-field select:focus {
  background: #fff4fa;
}

.profile-button {
  justify-self: center;
  min-width: 180px;
  height: 48px;
  margin-top: 8px;
  border: 2px solid #000000;
  background: #facc15;
  color: #000000;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 #000000;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.profile-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #000000;
}

.profile-button:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 #000000;
}

@media (max-width: 480px) {
  .profile-stage {
    padding: 24px 14px;
  }

  .profile-card {
    box-shadow: 8px 8px 0 #000000;
  }

  .profile-card-body {
    padding: 42px 18px 46px;
  }

  .profile-title {
    font-size: 32px;
  }
}