.box-manual {
  border: 2px solid #007889;
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.5s ease;
  min-height: 500px;
}

.title-box-manual{
  text-align: center;
}

.descricao-box-manual{
  text-align: center;
  padding: 10px;
  width: fit-content;
  word-break: break-word;
}

.btn-box-manual{
  text-align: center !important;
  margin: 20px auto !important;
  display: block !important;
  width: 90%;
}

.box-manual:hover{
  background: #007C8A;
}

.box-manual:hover .title-box-manual{
  font-weight: bold;
  transform: scale(1.1);
}

.box-manual:hover .title-box-manual, .box-manual:hover .descricao-box-manual{
  color: #fff;
}

.box-manual:hover .btn-box-manual{
  background: #fff;
  color: #007C8A;
}

.box-manual img{
  transition: transform 0.3s ease;
}

.box-manual:hover img{
  transform: scale(1.1);
}
