.conteiner_modal2 {
  display: none;
  z-index: 8;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(#333b61, #181431);
  padding: 20px;
  border-top-left-radius: 10px;
  border: solid 2px #fff;
  max-height: 90vh;
  max-width: 95vw;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Cabeçalho */
.conteiner_modal2 > div:nth-child(1) {
  display: flex;
}

/* Título */
.conteiner_modal2 .modal_titulo2 {
  display: flex;
  align-items: center;
  width: 94%;
  margin-bottom: 20px;
  gap: 10px;
}

.conteiner_modal2 .modal_titulo2 svg {
  display: block;
  fill: #4DA0D8;
  width: 25px;
  height: 25px;
}

.conteiner_modal2 .modal_titulo2 span:first-of-type {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

.conteiner_modal2 .modal_titulo2 span:nth-of-type(2) {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Fechar */
.conteiner_modal2 .modal_fechar2 {
  width: 6%;
  text-align: right;
  padding-right: 5px;
  padding-top: 2px;;
}

.conteiner_modal2 .modal_fechar2 i {
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s ease;
}

.conteiner_modal2 .modal_fechar2 i:hover {
  color: #f56561;
}

/* Conteúdo com rolagem */
.conteiner_modal2 .modal_conteudo2 {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  overflow-y: auto;
  max-height: calc(90vh - 100px); /* Ajuste conforme a altura do cabeçalho */
}



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

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

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

.conteiner_modal2 .modal_fechar2 {
  text-align: right;
  padding-right: 0px;
}

.conteiner_modal2 .modal_fechar2 i {
  cursor: pointer;
  font-weight: bold;
}

/* Conteudo */
/*
.conteiner_modal2 > div:nth-child(3) {
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(29, 28, 28, 0.9);
  background-color: #fff;

}

/* Linhas */
/*
.conteiner_modal2 .linhas {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  height: 35px;
  line-height: 35px;
  border-bottom: #e6ecf5 1px dotted;
  transition: all 0.5s;
}

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