:root {
  --azul-profundo: #0a0f1f;
  --azul-marinho: #0f1b33;
  --azul-destaque: #1e40af;
  --cinza-escuro: #1a1f2e;
  --texto-claro: #d1d5db;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--azul-profundo);
  color: var(--texto-claro);
  line-height: 1.6;
}

header {
  background: var(--azul-marinho);
  text-align: center;
  padding: 0.8rem 0;
}

.banner {
  max-width: 180px; /* Banner realmente menor */
  height: auto;
}

nav {
  background: var(--cinza-escuro);
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem;
  position: sticky;
  top: 0;
}

nav a {
  color: var(--texto-claro);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover {
  background: var(--azul-destaque);
}

main {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
  background: var(--cinza-escuro);
  padding: 1.5rem;
  border-radius: 8px;
}

h2 {
  color: var(--azul-destaque);
  margin-bottom: 0.5rem;
}

a.btn {
  display: inline-block;
  background: var(--azul-destaque);
  color: var(--texto-claro);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

a.btn:hover {
  background: var(--azul-marinho);
}

footer {
  text-align: center;
  background: var(--azul-marinho);
  color: var(--texto-claro);
  padding: 1rem;
  margin-top: 2rem;
}
