body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Faixa superior fixa */
.faixa {
  background: #72009d;
  height: 90px; /* altura fixa da faixa */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Controle da logo */
.faixa img {
  max-height: 175px; /* aumenta aqui se quiser maior */
  height: auto;
  object-fit: contain;
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 400px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
}

.valor {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #58007b;
}

textarea {
  width: 100%;
  height: 90px;
  resize: none;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 12px;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #840caf;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #5a007a; /* deixei um pouco mais escuro no hover */
}

.qr {
  text-align: center;
  margin: 15px 0;
}

.qr img {
  max-width: 200px;
}