.produtos {
  min-height: 80vh;
  background-color: rgb(204, 204, 204);
}

.produtos-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

/* .titulo-sessao {
  padding: 1%;
  padding-top: 4%;

  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
} */

.linha-botoes {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.botao {
  padding: 3%;
  width: 40%;
}

.botoes-imagens {
  width: 100%;

  border: none;
  background-color: #a8a9a4;
  /* rgba(226, 226, 226, 0.924); */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 3%;
  /* cursor: pointer; */
  outline: none;
}
/* rgba(199, 199, 199, 0.924) */
.button-style {
  width: 100%;
  color: #ffffff;
  background-color: rgba(255, 145, 0, 0.959);
  padding: 5%;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  opacity: 0.7;
}

.botoes-imagens:hover .button-style {
  opacity: 1;
  transition: opacity 0.5s;
  color: #000000
}

.botoes-imagens:hover {
  box-shadow: inset 4px 7px 31px -1px #848484;
  transition: box-shadow 0.5s;
}

.img-botao {
  border-radius: 10px;
  /* width: 95%; */
  height: 30vh;
  opacity: 1;
}

@media (max-width: 900px) {
  .button-style {
    opacity: 1;
  }

  .linha-botoes {
    flex-direction: column;
  }

  .img-botao {
    height: 20vh;
  }
  .botao {
    width: 80%;
  }
}
