/* Estilos do site informativo (placeholder estético). Servido pelo Nginx em "/". */
:root {
  --tinta: #1a2238;
  --destaque: #9daaf2;
  --fundo: #f4f4f9;
  --texto: #2b2b2b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--texto);
  background: var(--fundo);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

.topo {
  background: var(--tinta);
  color: #fff;
  padding: 1rem 1.5rem;
}

.nav .marca { font-weight: 700; letter-spacing: .3px; }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--tinta);
  margin-bottom: 1rem;
}

.subtitulo { font-size: 1.15rem; color: #444; margin-bottom: 2rem; }

.aviso {
  display: inline-block;
  background: var(--destaque);
  color: var(--tinta);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
}

.rodape {
  text-align: center;
  padding: 1.25rem;
  color: #777;
  border-top: 1px solid #e2e2ea;
}
