/* Scrim - fundo escuro */
.br-scrim-util.foco {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal responsivo */
.br-modal.custom-responsive {
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

/* Corpo do modal com scroll quando necessário */
.br-modal.custom-responsive .br-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 120px);
  padding: 1.5rem;
}

/* Telas médias e grandes (acima de 768px) */
@media (min-width: 768px) {
  .br-modal.custom-responsive {
    width: 70%;
  }
}

/* Telas grandes (acima de 992px) */
@media (min-width: 992px) {
  .br-modal.custom-responsive {
    width: 50%;
    min-width: 600px;
  }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
  .br-modal.custom-responsive {
    width: 95%;
    margin: 10px;
  }
}