body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #1f1f1f;
  color: #fff;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRYtbDPa-nQqvrXpBrZBOs-9GryOkZDqkmjgdK7YwVn-1CCSPC-F-Zdu3M_c66Yible9IU&usqp=CAU');
  background-size:cover;
}

main {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

h1 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #bbb;
}

form {
  display: flex;
  flex-direction: column;
}

.campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.campo label {
  margin-bottom: 5px;
  font-weight: bold;
}

.campo input,
.campo select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #444;
  color: #fff;
}

.grupo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grupo .campo {
  flex: 1;
  min-width: 48%;
}

.grid-saude {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.grid-saude label {
  display: flex;
  flex-direction: column;
  background: #333;
  padding: 10px;
  border-radius: 5px;
}

.grid-saude select,
.grid-saude input[type="text"] {
  margin-top: 8px;
  background: #555;
  border: none;
  border-radius: 4px;
  padding: 10px;
  color: #fff;
}

.botoes {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 12px 20px;
  background: #ff4b2b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ff1c00;
}
.botao-download {
  display: inline-block;
  text-align: center;
  background: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botao-download:hover {
  background: #218838;
}