body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f6fb;
  color: #0b2340;
  position: relative;
}

/* Logo de fundo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Logo.png') center center no-repeat;
  background-size: 900px; /* ajuste o tamanho conforme precisar */
  opacity: 0.1; /* transparência do logo */
  z-index: -1; /* garante que o conteúdo fique acima */
}

header {
  background-color: #0b63d6;
  color: white;
  text-align: center;
  padding: 20px;
}

h1 {
  margin: 0;
}

.menu-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.menu-section {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-section h2 {
  color: #0b63d6;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  text-decoration: none;
  background-color: #0b63d6;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  flex: 1;
}

.btn:hover {
  background-color: #0b2340;
}

footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9em;
  color: #666;
}
