@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #6e44ff, #f7c0bf, #a47148);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #6e44ff;
  margin-bottom: 10px;
}

.botoes {
  margin: 30px 0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  background-color: #bb2649;
  color: white;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

button:hover {
  background-color: #a0203b;
}

.hidden {
  display: none;
}

.mensagem-extra {
  font-size: 18px;
  margin-top: 20px;
  color: #444;
  line-height: 1.6;
}

.galeria {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

.polaroid {
  background: #fff;
  border: 2px solid #a47148;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  padding: 10px;
  width: 180px;
  text-align: center;
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.polaroid p {
  margin-top: 10px;
  font-size: 14px;
  color: #6e44ff;
}
