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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5; /* fundo cinza claro */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Card central */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
}

/* Título */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
}

/* Botão verde */
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #16a34a; /* verde */
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  text-decoration: none;
}
.btn:hover {
  background: #15803d; /* verde mais escuro */
}

/* Links legais */
.legal-links {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #555;
}
.legal-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #16a34a; /* link verde */
}
.legal-links a:hover {
  text-decoration: underline;
}
