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

body {
  background-color: #030712;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 48px 24px;
}

.container {
  width: 100%;
  max-width: 520px;
}

h1 {
  color: white;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modulo {
  color: #facc15;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lista a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.lista a.destaque {
  background: #facc15;
  color: #000;
}

.lista a.destaque:hover {
  background: #fde047;
}

.lista a.borda {
  border: 1px solid #facc15;
  color: white;
}

.lista a.borda:hover {
  background: #facc15;
  color: #000;
}
