/* ── Página principal (aparece após intro) ── */
.page {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  opacity: 0;
  transition: opacity .5s ease .1s;
}
.page.visible { opacity: 1; }

/* Coluna central: logo → card */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  padding: 40px 24px;
  gap: 36px;
}

/* ── Rodapé fixo ── */
.page-footer {
  position: fixed; bottom: 18px; left: 0; right: 0;
  text-align: center; font-size: 10.5px;
  color: rgba(255,255,255,.12); letter-spacing: .07em;
  z-index: 2; pointer-events: none;
}
