* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  background-image: url('../img/fundo.png');
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat; 
  height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 360px;
  height: 720px;
  text-align: center;
  background-color: #f4ecd8;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.decoracao-img {
  display: block;
  margin: 0 auto 20px auto; 
  max-width: 250px; 
  height: auto;
}

.titulo {
  font-size: 32px;
  color: #6c8b74;
  font-weight: bold;
  margin-bottom: 16px;
}

.descricao {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.botao {
  background-color: #b87a58;
  color: #fffaf1;
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.botao:hover {
  background-color: #a05f40;
}