body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #ffeef5;
  color: #333;
  overflow-x: hidden;
}

header {
  background-color: #f9b4c9;
  padding: 30px 15px;
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8em;
  color: #fff;
}

.foto {
  width: 40vw;
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f9b4c9;
  margin: 30px auto 10px;
  display: block;
}

main {
  text-align: center;
  padding: 15px;
}

h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6em;
  color: #e91e63;
  margin-bottom: 10px;
}

blockquote {
  font-style: italic;
  font-size: 1.1em;
  background: #eee;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 20px;
  max-width: 90%;
}

blockquote.cinza-claro {
  color: #999;
}

.mensagem {
  max-width: 90%;
  margin: 0 auto 30px;
  font-size: 1em;
  line-height: 1.6;
  text-align: justify;
}

footer {
  margin-top: 40px;
  background-color: #f9b4c9;
  color: white;
  padding: 20px 15px;
  font-size: 1em;
  text-align: center;
}

.confetes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.confete {
  width: 10px;
  height: 10px;
  background: pink;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  animation: cair linear infinite;
}

@keyframes cair {
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}

/* Media query para ajuste fino */
@media (max-width: 500px) {
  header {
    font-size: 1.5em;
  }

  h2 {
    font-size: 1.4em;
  }

  blockquote {
    font-size: 1em;
  }

  .mensagem {
    font-size: 0.95em;
  }
}
