/* =========================
   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 / PALCO
========================= */

.activation-stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 40px 24px;
  background: #efefef;
}

.activation-panel {
  position: relative;
  width: min(860px, 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;
  color: #000000;
  text-transform: none;
}

.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);
}

/* =========================
   CORPO DINÂMICO DA JANELA
========================= */

.activation-panel-body {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #df82b4;
  padding: 42px 42px 72px;
  transition:
    min-height 0.48s cubic-bezier(0.76, 0, 0.24, 1),
    height 0.48s cubic-bezier(0.76, 0, 0.24, 1),
    padding 0.48s cubic-bezier(0.76, 0, 0.24, 1);
}

.activation-panel-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #df82b4;
  pointer-events: none;
  z-index: 0;
}

.activation-panel-body[data-current-screen="choice"] {
  min-height: 500px;
}

.activation-panel-body[data-current-screen="activation"] {
  min-height: 530px;
}

.activation-panel-body[data-current-screen="login"] {
  min-height: 570px;
}

.activation-panel-body.is-closing {
  min-height: 52px !important;
  height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.activation-panel-body.is-opening {
  height: auto;
}

/* =========================
   TELAS EMPILHADAS SEM PISCAR
========================= */

.activation-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 34px 28px 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.activation-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.34s ease 0.08s,
    visibility 0s linear 0s,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.activation-panel-body.is-closing .activation-screen,
.activation-panel-body.is-opening .activation-screen {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0.18s,
    transform 0.18s ease;
}

.activation-panel-body.is-content-ready .activation-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.activation-screen > .activation-content {
  width: min(660px, 100%);
  margin: 0 auto;
}

.activation-content--neo {
  width: min(660px, 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: 24px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.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-white {
  z-index: 1;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1);
}

.activation-logo-black {
  z-index: 2;
  opacity: 0 !important;
  filter: none !important;
  transform: scale(0.98);
}

.activation-logo.is-toggled .activation-logo-white {
  opacity: 0 !important;
  transform: scale(0.98);
}

.activation-logo.is-toggled .activation-logo-black {
  opacity: 1 !important;
  transform: scale(1);
}

.activation-logo-pink {
  display: none !important;
}

.activation-logo.is-clicked {
  animation: logoPressSwitch 0.34s ease;
}

@keyframes logoPressSwitch {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================
   TEXTOS
========================= */

.activation-kicker {
  display: none !important;
}

.activation-title {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Gotham', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  perspective: 600px;
}

/* Títulos internos */
.activation-screen--choice .activation-title {
  font-size: 45px !important;
}

.activation-screen--activation .activation-title {
  font-size: 35px !important;
}

.activation-screen--login .activation-title {
  font-size: 45px !important;
}

.activation-title--single-line {
  white-space: nowrap;
}

.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 {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

body.page-ready .activation-screen.is-title-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.08s);
}

.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 {
  max-width: 620px;
  margin: 22px auto 0;
  font-family: 'Gotham', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.045em;
  color: rgba(0, 0, 0, 0.86);
  opacity: 0;
  transform: translateY(14px);
}

body.page-ready .activation-screen.is-title-ready .activation-instruction--neo {
  animation: fadeUpSoft 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}

.activation-login-subtitle {
  margin-top: 18px;
  margin-bottom: 8px;
}

/* =========================
   ESCOLHAS
========================= */

.activation-choice-buttons {
  width: min(430px, 100%);
  margin: 30px auto 0;
  display: grid;
  gap: 14px;
}

.choice-button {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 2px solid #000000;
  border-radius: 0;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  cursor: pointer;
  box-shadow: 7px 7px 0 #000000;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.choice-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 #000000;
}

.choice-button:active {
  transform: translate(7px, 7px);
  box-shadow: 0 0 0 #000000;
}

.choice-button-primary {
  background: #facc15;
  color: #000000;
}

.choice-button-secondary {
  background: #ffffff;
  color: #000000;
}

/* =========================
   CAMPO DO CÓDIGO
========================= */

.activation-form--neo {
  width: min(294px, 100%);
  margin: 18px auto 0;
}

.activation-error {
  display: none;
  margin-top: 14px;
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: #7d102f;
  font-weight: 700;
  letter-spacing: -0.02em;
  transform: translateY(6px);
}

.activation-error.is-visible {
  display: block;
  animation: fadeUpSoft 0.32s ease forwards;
}

.activation-error.is-success {
  color: #095c2c;
}

.activation-error.is-warning {
  color: #6f3d00;
}

.activation-error.is-error {
  color: #7d102f;
}

.secret-code-wrap {
  position: relative;
  width: 100%;
  outline: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center center;
}

body.page-ready .activation-screen.is-title-ready .secret-code-wrap {
  animation: inputOpenCenter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.72s;
}

@keyframes inputOpenCenter {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* =========================
   INPUT CÓDIGO EM QUADRADOS
========================= */

.activation-form--neo {
  width: min(390px, 100%);
  margin: 18px auto 0;
}

.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;
}

.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: 62px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: text;
}

.digit {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  border: 3px solid #000000;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 4px 4px 0 #000000;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.secret-code-wrap:focus-within .digit,
.secret-code-wrap.is-focused .digit {
  background: #fff4fa;
}

.digit.is-filled {
  background: #f0a9cd;
}

.digit.is-current {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000000;
  border-color: #000000;
}

.digit span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: 'Gotham', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #000000;
  text-align: center;
  transform: translateY(1px);
}

.digit:not(.is-filled) span {
  color: rgba(0, 0, 0, 0.34);
}

@media (max-width: 480px) {
  .activation-form--neo {
    width: min(330px, 100%);
  }

  .secret-code {
    gap: 7px;
  }

  .digit {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 9px;
  }

  .digit span {
    font-size: 20px;
  }
}

/* =========================
   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: 22px;
  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-screen.is-title-ready .activation-button.learn-more {
  animation: fadeUpSoft 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.92s;
}

.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);
}

.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 .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);
  }
}

@keyframes fadeUpSoft {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FORM LOGIN
========================= */

.login-inline-form {
  width: min(430px, 100%);
  margin: 30px auto 0;
  display: grid;
  gap: 16px;
}

.login-inline-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.login-inline-field span {
  font-family: 'Gotham', sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000000;
}

.login-inline-field input {
  width: 100%;
  height: 52px;
  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;
}

.login-inline-field input:focus {
  background: #fff4fa;
}

/* =========================
   BOTÕES INFERIORES
========================= */

.activation-bottom-actions {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.activation-bottom-actions > * {
  pointer-events: auto;
}

.activation-bottom-actions--single {
  justify-content: flex-start;
}

.activation-back-button {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000000;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.activation-back-button:hover {
  color: #000000;
  background: #fff4fa;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000000;
}

.activation-back-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #000000;
}

/* =========================
   BOTÃO LOGIN / ENTRAR ESTILO UIVERSE
========================= */

.activation-login-link,
.neo-bubble-button {
  --stone-50: #fafaf9;
  --stone-800: #292524;
  --yellow-400: #facc15;

  width: fit-content;
  justify-self: center;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  line-height: 1;
  padding: 1px;
  transform: translate(-4px, -4px);
  outline: 2px solid transparent;
  outline-offset: 5px;
  border: 0;
  border-radius: 9999px;
  background-color: var(--stone-800);
  color: var(--stone-800);
  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);
}

.activation-login-link:hover,
.neo-bubble-button:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 2px var(--stone-50);
}

.activation-login-link:active,
.activation-login-link:focus-visible,
.neo-bubble-button:active,
.neo-bubble-button:focus-visible {
  outline-color: var(--yellow-400);
}

.activation-login-link:focus-visible,
.neo-bubble-button:focus-visible {
  outline-style: dashed;
}

.activation-login-link > div,
.neo-bubble-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;
}

.activation-login-link > div::before,
.neo-bubble-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;
}

.activation-login-link > div > span,
.neo-bubble-button > div > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  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;
}

.activation-login-link:active > div > span,
.neo-bubble-button:active > div > span {
  transform: translateY(2px);
}

@keyframes loginButtonDots {
  0% {
    background-position:
      0 0,
      4px 4px;
  }

  100% {
    background-position:
      8px 0,
      12px 4px;
  }
}

/* =========================
   REDES SOCIAIS
========================= */

.activation-socials {
  width: min(750px, 100%);
  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-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
========================= */

@media (max-width: 768px) {
  .activation-stage {
    padding: 28px 18px;
  }

  .activation-panel {
    width: min(760px, 100%);
    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: 520px;
    padding: 34px 24px 76px;
  }

  .activation-panel-body[data-current-screen="choice"] {
    min-height: 480px;
  }

  .activation-panel-body[data-current-screen="activation"] {
    min-height: 520px;
  }

  .activation-panel-body[data-current-screen="login"] {
    min-height: 590px;
  }

  .activation-panel-body.is-closing {
    min-height: 48px !important;
    height: 48px !important;
  }

  .activation-screen {
    padding: 28px 18px 46px;
  }

  .activation-logo {
    width: 152px;
    height: 68px;
    margin-bottom: 18px;
  }

  .activation-screen--choice .activation-title {
    font-size: 38px !important;
  }

  .activation-screen--activation .activation-title {
    font-size: 31px !important;
  }

  .activation-screen--login .activation-title {
    font-size: 38px !important;
  }

  .activation-instruction--neo {
    font-size: 16px;
  }

  .activation-form--neo {
    width: min(290px, 100%);
  }

  .activation-bottom-actions {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .activation-socials {
    gap: 14px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .activation-social-name {
    font-size: 22px;
  }
}

@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: 500px;
    padding: 30px 16px 76px;
  }

  .activation-panel-body[data-current-screen="choice"] {
    min-height: 470px;
  }

  .activation-panel-body[data-current-screen="activation"] {
    min-height: 510px;
  }

  .activation-panel-body[data-current-screen="login"] {
    min-height: 590px;
  }

  .activation-panel-body.is-closing {
    min-height: 44px !important;
    height: 44px !important;
  }

  .activation-screen {
    padding: 24px 10px 48px;
  }

  .activation-logo {
    width: 136px;
    height: 60px;
    margin-bottom: 14px;
  }

  .activation-screen--choice .activation-title {
    font-size: 31px !important;
  }

  .activation-screen--activation .activation-title {
    font-size: 27px !important;
  }

  .activation-screen--login .activation-title {
    font-size: 31px !important;
  }

  .activation-title--single-line {
    white-space: nowrap;
  }

  .activation-instruction--neo {
    font-size: 14px;
  }

  .activation-choice-buttons,
  .login-inline-form {
    width: min(310px, 100%);
  }

  .secret-code {
    min-height: 38px;
    gap: 10px;
  }

  .digit span {
    font-size: 18px;
    transform: translateY(2px);
  }

  .activation-button.learn-more {
    width: 165px;
  }

  .choice-button {
    min-height: 46px;
    font-size: 12px;
    box-shadow: 5px 5px 0 #000000;
  }

  .choice-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #000000;
  }

  .login-inline-field input {
    height: 44px;
    font-size: 13px;
  }

  .activation-bottom-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .activation-back-button,
  .activation-login-link,
  .neo-bubble-button {
    font-size: 10px;
    min-height: 34px;
  }

  .activation-login-link > div > span,
  .neo-bubble-button > div > span {
    padding: 0.65rem 1rem;
  }

  .activation-socials {
    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;
  }
}


/* =========================
   AJUSTE INPUT CÓDIGO + BOTÃO LIBERAR
========================= */

/* Campo do código mais grosso */
.secret-code {
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 18px !important;
  gap: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Cada casa do código perfeitamente centralizada */
.digit {
  min-width: 16px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Asteriscos e números centralizados */
.digit span {
  width: 16px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  line-height: 1 !important;
  transform: none !important;
  text-align: center !important;
}

/* Quando o número digitado aparece */
.digit.is-current span {
  transform: scale(1.08) !important;
}

/* Área geral do formulário um pouco mais larga */
.activation-form--neo {
  width: min(330px, 100%) !important;
}

/* Botão Liberar Ativação mais largo */
.activation-button.learn-more {
  width: auto !important;
  min-width: 220px !important;
  white-space: nowrap !important;
  padding-left: 1.6em !important;
  padding-right: 1.6em !important;
}

/* Texto do botão sempre em uma linha */
.activation-button .button-label {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Loading também em uma linha */
.activation-button .loading-dots {
  display: inline-flex !important;
  white-space: nowrap !important;
}

/* Mobile */
@media (max-width: 480px) {
  .activation-form--neo {
    width: min(320px, 100%) !important;
  }

  .secret-code {
    min-height: 52px !important;
    height: 52px !important;
    gap: 13px !important;
    padding: 0 16px !important;
  }

  .digit {
    height: 52px !important;
  }

  .digit span {
    height: 52px !important;
    font-size: 22px !important;
  }

  .activation-button.learn-more {
    min-width: 210px !important;
    padding-left: 1.35em !important;
    padding-right: 1.35em !important;
  }
}

/* =========================
   AÇÕES INFERIORES ATIVAÇÃO / LOGIN
========================= */

.activation-bottom-actions {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* Tela ativação: login à direita */
.activation-bottom-actions--login-only {
  justify-content: flex-end;
}

/* Tela login: voltar à esquerda */
.activation-bottom-actions--back-only {
  justify-content: flex-start;
}

.activation-bottom-actions > * {
  pointer-events: auto;
}

/* Botão voltar */
.activation-back-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 3px solid #000000;
  background: #ffffff;
  color: #000000;
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 #000000;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.activation-back-button:hover {
  background: #facc15;
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 #000000;
}

/* Garante que o Login fique com estilo correto mesmo sendo button */
.activation-login-link {
  --stone-50: #fafaf9;
  --stone-800: #292524;
  --yellow-400: #facc15;

  display: inline-block;
  border: 0;
  font-family: 'Gotham', sans-serif;
  font-size: 13px;
  font-weight: 900;
  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);
}

.activation-login-link:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 2px var(--stone-50);
}

.activation-login-link:active,
.activation-login-link:focus-visible {
  outline-color: var(--yellow-400);
}

.activation-login-link > 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;
}

.activation-login-link > 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: activationLoginDots 0.5s infinite linear;
}

.activation-login-link > div > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  color: var(--stone-800);
  filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

@keyframes activationLoginDots {
  0% {
    background-position:
      0 0,
      4px 4px;
  }

  100% {
    background-position:
      8px 0,
      12px 4px;
  }
}
/* =========================
   AJUSTES TELA INICIAL
========================= */

.activation-title--choice {
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.activation-instruction--choice {
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

/* Tela ativação: voltar à esquerda e login à direita */
.activation-bottom-actions--activation {
  justify-content: space-between;
}


/* =========================================================
   CORREÇÃO MOBILE — ATIVAÇÃO / LOGIN / ESCOLHA
========================================================= */

/* Garante melhor respiro lateral em telas pequenas */
@media (max-width: 768px) {
  .activation-stage {
    padding: 18px 14px 24px;
    gap: 18px;
    justify-content: center;
  }

  .activation-panel {
    width: 100%;
    max-width: 100%;
    box-shadow: 8px 8px 0 #000000;
  }

  .activation-panel-top {
    min-height: 58px;
    padding: 12px 36px 12px 14px;
  }

  .activation-panel-top span {
    min-width: auto;
    font-size: 24px;
    line-height: 1;
  }

  .activation-panel-close {
    width: 22px;
    height: 26px;
    font-size: 20px;
  }

  .activation-panel-body {
    min-height: 440px;
    padding: 20px 14px 70px;
  }

  .activation-panel-body[data-current-screen="choice"] {
    min-height: 420px;
  }

  .activation-panel-body[data-current-screen="activation"] {
    min-height: 455px;
  }

  .activation-panel-body[data-current-screen="login"] {
    min-height: 500px;
  }

  .activation-screen {
    padding: 18px 8px 34px;
  }

  .activation-content--neo,
  .activation-screen > .activation-content {
    width: 100%;
    max-width: 100%;
  }

  .activation-logo {
    width: 132px;
    height: 56px;
    margin-bottom: 14px;
  }

  /* TELA INICIAL */
  .activation-title--choice {
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .activation-instruction--choice {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-top: 14px !important;
  }

  /* TELA ATIVAÇÃO */
  .activation-screen--activation .activation-title {
    font-size: 28px !important;
    line-height: 1.06;
  }

  /* TELA LOGIN */
  .activation-screen--login .activation-title {
    font-size: 28px !important;
    line-height: 1.06;
  }

  .activation-login-subtitle,
  .activation-instruction--neo {
    font-size: 15px;
    margin-top: 14px;
  }

  .activation-choice-buttons {
    width: 100%;
    max-width: 320px;
    margin: 22px auto 0;
    gap: 12px;
  }

  .choice-button {
    min-height: 48px;
    font-size: 12px;
    padding: 12px 14px;
    box-shadow: 5px 5px 0 #000000;
  }

  .choice-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #000000;
  }

  .activation-form--neo {
    width: 100% !important;
    max-width: 300px !important;
    margin: 16px auto 0;
  }

  .secret-code {
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 8px !important;
    gap: 8px !important;
  }

  .digit {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-width: 3px;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #000000;
  }

  .digit span {
    width: 100% !important;
    height: 100% !important;
    font-size: 18px !important;
  }

  .activation-button.learn-more {
    min-width: 190px !important;
    width: auto !important;
    margin-top: 18px;
    padding: 1.05em 1.2em !important;
    font-size: 12px;
  }

  .activation-error {
    margin-top: 12px;
    font-size: 11px;
  }

  .login-inline-form {
    width: 100%;
    max-width: 320px;
    margin: 22px auto 0;
    gap: 12px;
  }

  .login-inline-field {
    gap: 6px;
  }

  .login-inline-field span {
    font-size: 10px;
  }

  .login-inline-field input {
    height: 44px;
    font-size: 13px;
    padding: 0 12px;
    box-shadow: 4px 4px 0 #000000;
  }

  .activation-bottom-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .activation-bottom-actions--activation {
    justify-content: space-between;
    gap: 10px;
  }

  .activation-bottom-actions--back-only {
    justify-content: flex-start;
  }

  .activation-back-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
    box-shadow: 3px 3px 0 #000000;
    border-width: 2px;
  }

  .activation-login-link,
  .neo-bubble-button {
    font-size: 10px;
    transform: translate(-2px, -2px);
  }

  .activation-login-link > div > span,
  .neo-bubble-button > div > span {
    padding: 0.62rem 0.95rem;
  }

  .activation-socials {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .activation-social-buttons {
    gap: 8px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }

  .social-icon {
    font-size: 10px;
  }

  .activation-social-name {
    font-size: 17px;
  }

  /* Esse botão está atrapalhando no mobile */
  .clear-cache-button {
    display: none;
  }
}

/* AJUSTE MAIS FORTE PARA CELULARES PEQUENOS */
@media (max-width: 480px) {
  .activation-stage {
    padding: 14px 10px 20px;
  }

  .activation-panel {
    box-shadow: 6px 6px 0 #000000;
  }

  .activation-panel-top {
    min-height: 54px;
    padding: 10px 34px 10px 12px;
  }

  .activation-panel-top span {
    font-size: 20px;
  }

  .activation-panel-close {
    width: 20px;
    height: 24px;
    font-size: 18px;
  }

  .activation-panel-body {
    min-height: 410px;
    padding: 16px 10px 66px;
  }

  .activation-panel-body[data-current-screen="choice"] {
    min-height: 390px;
  }

  .activation-panel-body[data-current-screen="activation"] {
    min-height: 430px;
  }

  .activation-panel-body[data-current-screen="login"] {
    min-height: 470px;
  }

  .activation-screen {
    padding: 14px 4px 28px;
  }

  .activation-logo {
    width: 118px;
    height: 50px;
    margin-bottom: 12px;
  }

  .activation-title--choice {
    font-size: 24px !important;
  }

  .activation-instruction--choice {
    font-size: 14px !important;
  }

  .activation-screen--activation .activation-title {
    font-size: 25px !important;
  }

  .activation-screen--login .activation-title {
    font-size: 25px !important;
  }

  .activation-instruction--neo,
  .activation-login-subtitle {
    font-size: 14px;
  }

  .activation-choice-buttons,
  .login-inline-form {
    max-width: 290px;
  }

  .activation-form--neo {
    max-width: 286px !important;
  }

  .secret-code {
    min-height: 48px !important;
    height: 48px !important;
    gap: 6px !important;
    padding: 0 4px !important;
  }

  .digit {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    border-radius: 7px;
    box-shadow: 2px 2px 0 #000000;
  }

  .digit span {
    font-size: 16px !important;
  }

  .activation-button.learn-more {
    min-width: 176px !important;
    padding: 0.95em 1.05em !important;
    font-size: 11px;
  }

  .choice-button {
    min-height: 44px;
    font-size: 11px;
    padding: 10px 12px;
    box-shadow: 4px 4px 0 #000000;
  }

  .login-inline-field input {
    height: 42px;
    font-size: 12px;
  }

  .activation-bottom-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .activation-back-button {
    min-height: 34px;
    font-size: 9px;
    padding: 0 10px;
  }

  .activation-login-link,
  .neo-bubble-button {
    font-size: 9px;
  }

  .activation-login-link > div > span,
  .neo-bubble-button > div > span {
    padding: 0.56rem 0.88rem;
  }

  .social-btn {
    width: 34px;
    height: 34px;
  }

  .activation-social-name {
    font-size: 15px;
  }
}

/* =========================
   CPF 11 DÍGITOS - MAIS LARGO HORIZONTALMENTE
========================= */

.secret-code--cpf {
  max-width: 560px !important;
  gap: 7px !important;
}

.secret-code--cpf .digit {
  width: 38px !important;
  min-width: 38px !important;
  flex-basis: 38px !important;
  height: 50px !important;
}

.secret-code--cpf .digit span {
  height: 50px !important;
}

/* TABLET */
@media (max-width: 768px) {
  .secret-code--cpf {
    max-width: 500px !important;
    gap: 6px !important;
  }

  .secret-code--cpf .digit {
    width: 34px !important;
    min-width: 34px !important;
    flex-basis: 34px !important;
    height: 48px !important;
  }

  .secret-code--cpf .digit span {
    height: 48px !important;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .secret-code--cpf {
    max-width: 390px !important;
    gap: 4px !important;
  }

  .secret-code--cpf .digit {
    width: 30px !important;
    min-width: 30px !important;
    flex-basis: 30px !important;
    height: 44px !important;
  }

  .secret-code--cpf .digit span {
    height: 44px !important;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 380px) {
  .secret-code--cpf {
    max-width: 350px !important;
    gap: 3px !important;
  }

  .secret-code--cpf .digit {
    width: 27px !important;
    min-width: 27px !important;
    flex-basis: 27px !important;
    height: 42px !important;
  }

  .secret-code--cpf .digit span {
    height: 42px !important;
  }
}