/*@media (min-width: 1400px) {
  .container-xl {
    max-width: 1650px !important;
  }
}
*/

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 2400px !important;
  }
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}

.bold {
  font-weight: bold !important;
}

.nao-quebrar-linha {
  white-space: nowrap !important;
}

.link {
  color: #5e61d6 !important;
  text-decoration: underline;
  cursor: pointer;
}

.card-interno {
  box-shadow: inset 0 2px 0px #11303400, 0 2px 5px #000 !important;
}

.ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limita a 2 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px; /* Largura máxima */
  word-wrap: break-word;
  white-space: normal; /* Garante que as quebras de linha ocorram */

}
.borda-segmentada {
  border-color: var(--bs-card-border-color);
  border-style: dashed;
  border-width: 2px;
  border-radius: .5rem;
}
