.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.linha-imagens {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.card-imagem {
  width: 49%;

  border: 2px #c5c5c5e1 solid;
  border-radius: 10px;
  background-color: #cecece;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-demonstracao {
  border: 2px rgba(255, 145, 0, 0.959) solid;
  border-radius: 10px;
  /* margin-top: 25px; */
}

.texto-descricao {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .linha-imagens {
    flex-direction: column;
    padding: 10px;
  }

  .card-imagem {
    width: 100%;
  }
}
