/* ==========================================================================
   Zaparty — página de espera dos domínios
   Serve a raiz de zaparty.com.br e de zapartyacademy.com.br.
   Tipografia oficial da identidade (Zalando Sans), sem dependência do kit
   do Adobe: menos uma requisição no caminho crítico.
   ========================================================================== */

:root {
  --preto: #0c0c0c;
  --branco: #fff;

  /* Escada de tom no escuro: texto secundário precisa subir, senão reprova. */
  --tom-forte: #fff;
  --tom-medio: rgba(255, 255, 255, 0.74);
  --tom-fraco: rgba(255, 255, 255, 0.46);

  --sans: "Zalando Sans", system-ui, -apple-system, sans-serif;
  --expandida: "Zalando Sans Expanded", "Zalando Sans", system-ui, sans-serif;

  --respiro: clamp(28px, 5vw, 44px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(32px, 7vw, 72px) clamp(26px, 6vw, 56px);
  background: var(--preto);
  color: var(--tom-forte);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

p { margin: 0; }

/* Detalhe de marca ao fundo, cortado pela borda como no material impresso. */
.marca-dagua {
  position: fixed;
  right: clamp(-140px, -12vw, -40px);
  bottom: clamp(-90px, -8vw, -30px);
  width: clamp(420px, 62vw, 900px);
  max-width: none;
  height: auto;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.palco {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
}

.logo {
  width: clamp(190px, 42vw, 268px);
  height: auto;
}

/* Display: peso inverso ao tamanho, tracking negativo, line-height apertado. */
.titulo {
  margin: calc(var(--respiro) * 1.25) 0 0;
  font-weight: 300;
  font-size: clamp(40px, 8.2vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.apoio {
  margin-top: clamp(18px, 2.6vw, 26px);
  max-width: 42ch;
  font-weight: 400;
  font-size: clamp(15px, 1.7vw, 18px);
  letter-spacing: -0.005em;
  line-height: 1.6;
  color: var(--tom-medio);
  text-wrap: pretty;
}

.acao {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--respiro);
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--branco);
  color: #000;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: -0.005em;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.25s ease, background-color 0.25s ease;
}

.acao:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.acao:active { transform: translateY(0); }

.acao:focus-visible {
  outline: 3px solid var(--branco);
  outline-offset: 4px;
}

.acao__icone {
  width: 19px;
  height: 19px;
  flex: none;
}

.arroba {
  margin-top: 16px;
  font-size: clamp(12px, 1.3vw, 13.5px);
  letter-spacing: 0.02em;
  color: var(--tom-fraco);
}

@media (max-width: 560px) {
  .apoio br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
