/* CSS DO TEMPLATE "COMO COMPRAR" */
.como_comprar {
  max-width: 1366px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.title_comprar {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 42px;
  color: var(--purple-500);
  text-align: center;
}
.passo_comprar {
  margin: 15px;
}
.passo_comprar>img {
  width: 350px;
}
.botao_como_comprar{
  text-align: center;
 }
.botao_como_comprar > button{
  padding: 10px;
  background: var(--light-green-300);
  border-radius: 6px;
  color: #fff;
  font-size: 22px;
  margin: 100px 0px 0px;
  border: none;
}

.botao_como_comprar > button:hover{
filter: brightness(1.1);
}