body {
  font-family: Arial, sans-serif;
  background-color: #0853c5;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 10px;
}

header img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* permite quebrar linha no celular */
  gap: 15px;
  margin: 15px auto;
  padding: 0 10px;
}

.botoes a {
  text-decoration: none;
}

.botoes input[type="button"] {
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background-color: #160066;
  border: 3px groove white;
  border-radius: 12px;
  color: #ffffff;
  box-sizing: border-box;
  transition: 0.2s;
}

.botoes input[type="button"]:hover {
  background-color: #2a0099;
  color: #ffc600;
  border-color: #ffc600;
}

.mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 200px);
  padding: 0 10px 10px 10px;
  box-sizing: border-box;
}

.mapa iframe {
  width: 80%;
  height: 80%;
  border: none;
}






