* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #ffe4f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  background-color: #fff0f6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px #f8c8dc;
  max-width: 600px;
  width: 100%;
}

h1 {
  color: #d63384;
  font-size: 2rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

button,
.botao-fofo {
  display: inline-block;
  padding: 15px 20px;
  background-color: #ffb6c1;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
}

button:hover,
.botao-fofo:hover {
  background-color: #ff85a2;
}

.surpresa {
  background: linear-gradient(135deg, #ffe4f0, #ffd6ec);
}

.surpresa-text {
  color: #c2185b;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .botao-fofo {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .surpresa-text {
    font-size: 1.2rem;
  }

}
