/* ============================================================================
   BLACK ROOM — PÁGINA DE PASSAGEM
   1 tela, sem rolagem no celular. Objetivo único: o clique no botão.
   Tokens herdados da identidade do site antigo (styles.css) — mesma marca.
   ========================================================================= */

:root {
  --bg: #050607;
  --text: #f6f7f3;
  --muted: #a8b1ad;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff7a00;
  --orange-ink: #050607;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Brilho quente atrás do miolo — a única decoração da página. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    62% 46% at 50% 34%,
    rgba(255, 122, 0, 0.16),
    rgba(255, 122, 0, 0) 70%
  );
}

.passagem {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1rem, 4vw, 2rem);
  padding: clamp(1.15rem, 4.5vw, 2.25rem);
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

/* ---------------------------------------------------------------- marca -- */

.marca {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.marca img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
}

.marca strong {
  font-weight: 800;
}

.marca .destaque {
  color: var(--orange);
}

/* ---------------------------------------------------------------- miolo -- */

.miolo {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(0.85rem, 3.4vw, 1.35rem);
}

h1 {
  margin: 0;
  font-family: "Anton", "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 8.6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 15ch;
}

h1 .destaque {
  color: var(--orange);
}

.apoio {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(0.95rem, 3.7vw, 1.075rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------------------------------------------------------------- fatos -- */
/* Os 3 pontos que matam as 3 objeções de entrar num grupo de WhatsApp.      */

.fatos {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.fatos li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.fatos li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

@media (min-width: 34rem) {
  .fatos {
    flex-direction: row;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.85rem;
  }

  .fatos li {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 0;
    border-bottom: 0;
  }

  .fatos li + li {
    border-left: 1px solid var(--line);
  }
}

/* ---------------------------------------------------------------- botão -- */

.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 26rem;
  min-height: 3.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--orange-ink);
  font-size: clamp(1rem, 4.1vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.005em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.28);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.botao .seta {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(255, 122, 0, 0.38);
  }

  .botao:hover .seta {
    transform: translateX(3px);
  }
}

.botao:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.26);
}

.botao:focus-visible,
.rodape a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.selo {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* Onde as ofertas vêm. Fica DEPOIS do botão de propósito: a pessoa não acorda
   querendo "uma oferta da Amazon" — ela quer pagar menos. A plataforma é prova
   de que é loja de verdade, não a promessa. Vive dentro do .selo pra não criar
   mais um filho no .miolo (mudaria os delays da animação e o cálculo de 1 tela). */
.plataformas {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* --------------------------------------------------------------- rodapé -- */

.rodape {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.rodape a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.rodape a:hover {
  color: var(--text);
  border-bottom-color: var(--line);
}

.rodape .ponto {
  opacity: 0.4;
}

/* --------------------------------------------------------------- motion -- */
/* Entrada curta. O conteúdo é visível por padrão: se a animação não rodar   */
/* (aba oculta, renderizador headless), a página aparece inteira mesmo assim. */

@keyframes entra {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
}

.marca,
.miolo > *,
.rodape {
  animation: entra 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.miolo > *:nth-child(2) {
  animation-delay: 60ms;
}
.miolo > *:nth-child(3) {
  animation-delay: 120ms;
}
.miolo > *:nth-child(4) {
  animation-delay: 180ms;
}
.miolo > *:nth-child(5) {
  animation-delay: 240ms;
}
.rodape {
  animation-delay: 300ms;
}

@media (prefers-reduced-motion: reduce) {
  .marca,
  .miolo > *,
  .rodape,
  .botao,
  .botao .seta {
    animation: none;
    transition: none;
  }
}

/* Telas muito baixas (celular pequeno na horizontal): deixa rolar em vez de  */
/* espremer o botão pra fora da área de toque.                                */
@media (max-height: 34rem) {
  .passagem {
    min-height: auto;
  }
}
