/* READMORE */
.ReadMore {
  position: relative;
  height: 200px; /* Altura fixa para mostrar apenas os primeiros 200px */
  overflow: hidden;
}
/* guio bola */

.ReadMore.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px; /* Altura do gradiente de apagamento */
  background: linear-gradient(to bottom, transparent, white);
}
.readmore-button {
  display: inline-block;
  color: #012F73;
  padding: 8px 20px;
  border: 1.5px solid #012F73 !important;
  border-radius: 8px;
  transition: 0.3s
}
.readmore-button a {
  color: #012F73;
}
.readmore-button:hover {
  background-color: #012F73;
  
}
.readmore-button:hover a {
  color: #fff !important;
}

/* FIM READMORE */
