.conteiner_modal {
  display: none;
  z-index: 6;
  position: fixed;
  left: 50%;
  top: 50%;
  font-weight: 600;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Título e botão fechar */
.conteiner_modal > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #355db3;
  font-weight: 500;
  gap: 10px;
}

/* Título interno */
.modal_titulo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal_titulo svg {
  width: 20px;
  height: 20px;
  fill: #408de6;
}

/* Linha divisória */
.modal_titulo_linha {
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #8d94a3;
}

/* Conteúdo com rolagem se necessário */
.modal_conteudo {
  overflow-y: auto;
  max-height: calc(90vh - 120px); /* ajusta o espaço do cabeçalho + padding */
  padding-right: 15px;
}

/* Itens clicáveis (ex: resultados de busca) */
.conteiner_modal .linhas {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px dotted #b8c0cd;
  transition: background-color 0.3s;
}

.conteiner_modal .linhas:hover {
  background-color: #faf689;
}


/*
.conteiner_modal {
  display: none;
  z-index: 6;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
}


.conteiner_modal > div:nth-child(1) {
  display: flex;
  font-size: 20px;
  color: #355db3;
  font-weight: 500;
}

.conteiner_modal > div:nth-child(1) i:nth-child(1) {
  margin-right: 7px;
}

.conteiner_modal > div:nth-child(1) > div:nth-child(1) {
  width: 90%;
}

.conteiner_modal > div:nth-child(1) > div:nth-child(2) {
  width: 10%;
}

.modal_titulo {
  padding-left: 0px;
}

.conteiner_modal .modal_titulo_linha {
  margin-top: 10px;
  margin-bottom: 30px;
  border-bottom: solid 1px #dedee0;
}


.conteiner_modal > div:nth-child(2) {
  background-color: #fff;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 15px;
  color: rgb(78, 81, 85);
}


.conteiner_modal .linhas {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  height: 35px;
  line-height: 35px;
  border-bottom: #b8c0cd 1px dotted;
  transition: all 0.5s;
}

.conteiner_modal .linhas:hover {
  background-color: #faf689;
}


.modal_conteudo {
  padding-right: 15px;
}
  */