.tabela_proscons {
  clear: both;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  background: #fff; 
  gap: 20px;
}
.tabela_coluna {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .tabela_proscons {
    flex-wrap: wrap;
  }
  .tabela_coluna {
    width: 100%;
  }
}
.tab_pros .title_pros {
  color: #58c649;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.tab_cons .title_cons {
  color: #f24f4f;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.tab_pros ul,
.tab_cons ul {
  margin: 0 0 15px 0;
  padding-left: 0;
}
.tab_pros ul li,
.tab_cons ul li {
  list-style: none;
  margin: 0 0 8px 0;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}
.tab_pros ul li::before {
  content: "\2714";
  color: #58c649;
  position: absolute;
  left: 0;
  font-size: 18px;
}
.tab_cons ul li::before {
  content: "\2716";
  color: #f24f4f;
  position: absolute;
  left: 0;
  font-size: 18px;
}
.tabela_proscons ul,
.tabela_proscons ol {
  padding-left: 15px !important;
}
.ce_caracteristicas ul {
  list-style: disc;
  padding-left: 10px !important;
  margin-left: 0 !important;
  font-size: 16px;
}