/* Página de entrada (gate) — logo + loading */

.gate-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0d;
  color: #f3f3f5;
}

.gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
  text-align: center;
}

.gate-logo {
  width: min(220px, 55vw);
  height: auto;
  display: block;
  object-fit: contain;
}

.gate-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #e10600;
  border-radius: 50%;
  animation: gate-spin 0.65s linear infinite;
}

@keyframes gate-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate-spinner {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.35);
  }
}
