/* Estilo geral da página */
body {
  background: linear-gradient(135deg, #f0f4f8, #e6f0ff);
  font-family: "Inter", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Cabeçalho e conteúdo principal */
header {
  padding-top: 10%;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  color: #0077ff;
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
}

p {
  color: #444;
  font-size: 1.2rem;
  margin: 15px 0 30px;
}

/* Botão */
.btn {
  display: inline-block;
  background-color: #0077ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #0059c9;
  transform: translateY(-3px);
}

/* Rodapé */
footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  color: #666;
  font-size: 0.9rem;
}
