body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background: url("../assets/img/tela-index.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Configuração padrão dos botões */
.botao {
  position: absolute;
  border: none;
  cursor: pointer;
  background: none;
}

/* Botão START com a imagem enviada */
.start {
  position: relative;
  top: 50%; /* um pouco mais alto */
  left: 41.5%;
  width: 230px;
  height: 180px;
  background: url("../assets/img/btn-start.png") no-repeat center center;
  background-size: contain;
  text-indent: -9999px; /* esconde o texto */
  border: none;
}

/* Botão CRÉDITOS (mais embaixo) */
.creditos {
  position: absolute;
  display: flex inline;
  top: 75%; /* mais para baixo que o start */
  left: 42.5%;
  width: 200px;
  height: 60px;
  background: rgba(0, 128, 0, 0.9);
  color: white;
  font-size: 20px;
  display: flex;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  justify-content: center;
}

.engrenagem {
  top: 85%; /* um pouco mais alto */
  left: 41.5%;
  width: 200px;
  height: 110px;
  background: url("../assets/img/btn-engrenagem.png") no-repeat center center;
  background-size: contain;
  text-indent: -9999px; /* esconde o texto */
  border: none;
}

/* Efeitos hover */
.engrenagem:hover {
  transform: scale(1.1);
}

.start:hover {
  transform: scale(1.1);
}
.creditos:hover {
  background: rgba(0, 200, 0, 1);
  transform: scale(1.05);
}
