#telaPergunta1 button {
  width: 90%;
  margin: 12px auto;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, #0051ff, #00d9ff);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3), inset 0 -2px 6px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

#telaPergunta1 button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.4), inset 0 -3px 6px rgba(255,255,255,0.2);
}

#telaPergunta1 button:active {
  transform: translateY(2px);
  box-shadow: inset 0 4px 6px rgba(0,0,0,0.4);
}