body {
  background: linear-gradient(to top, #fff0f5, #ffe4e1);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
  min-height: 100vh;
}
h1 {
  color: #d6336c;
  margin-bottom: 30px;
}
form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px #d6336c;
  max-width: 800px;
  margin: auto;
}
.pergunta {
  margin-bottom: 20px;
  text-align: left;
}
.pergunta p {
  font-weight: bold;
  color: #d6336c;
}
label {
  display: block;
  margin-left: 10px;
  margin-top: 5px;
  color: #555;
}
button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ff5e78;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}
button:hover {
  background-color: #e55373;
}
#resultado {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 15px #d6336c;
  padding: 20px;
  color: #d6336c;
  font-size: 1.2rem;
}
#resultado img {
  max-width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}
audio {
  margin-top: 20px;
  outline: none;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}