body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  flex: 1;
  width: 100%;
  /* min-height: 100vh; */
  display: grid;
  grid-template-columns: 368px 1fr !important;
  gap: 32px;
}

.grid {
  border-radius: 0px;
}

.area__grid-1 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  box-shadow: 6px 9px 6px 0px rgb(0 0 0 / 6%);
}

.area-tematica__esfera {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.area-tematica__esfera::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 62px;
  background-color: var(--colorAreaTematica, #ff005a);
}

.area-tematica__esfera-titulo span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: #6c8080;
  display: block;
}

.area-tematica__esfera-titulo h1 {
  font-size: 1.5rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  color: #4f0072;
  margin-top: 0.5rem;
}

.area-tematica__duvidas {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 13px;
  margin-top: 32px;
}

.duvidas__content {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.duvidas__logo,
.duvidas__logo img {
  width: 100%;
}

.area-tematica__duvidas {
  margin-bottom: 2rem;
}

.area-tematica__duvidas p {
  grid-column: 2;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
}

.duvidas__button {
  grid-column: 2;
  grid-column: 2;
  padding: 0.5rem;
  margin-top: 10px;
  align-self: flex-end;
}

.area-margin-top {
  margin-top: 6.4rem;
  padding-left: 0 !important;
  padding-right: 0 !important ;
  margin-bottom: 0 !important;
  flex: 1;
}

.area-tematica__selecionar select {
  width: 100%;
  padding: 14px 9px;
  border-radius: var(--border-8);
}

.area__titulo {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--secondary);
  margin-bottom: 21px;
}

[data-tab="procedimento"] {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

[data-tab="procedimento"] li {
  padding: 0.8125rem 0;
  color: #637381;
  cursor: pointer;
}

[data-tab="procedimento"] li.activated {
  color: #212b36;
  border-bottom: 2px solid var(--primary);
}

.procedimento-lista {
  grid-column: 2 / 4;
}

.procedimento-lista dt {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #212b36;
  margin-bottom: 0.9375rem;

  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.procedimento-lista dt.active {
  color: var(--primary);
}

.procedimento-lista dt::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  display: inline-block;
}

.procedimento-lista dt.active::after {
  font-family: "Font Awesome 5 Free";
  content: "\f106";
  display: inline-block;
}

.procedimento-lista dt.removeArrow::after {
  content: "";
}

.procedimento-lista dd {
  font-family: Helvetica, Arial;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  display: none;
}

.procedimento-lista dd.active {
  display: flex;
  flex-direction: column;
  animation: slideDown 0.5s forwards;
}

.procedimento-lista dd.esconder.active {
  display: none !important;
  opacity: 0;
  backface-visibility: hidden;
  pointer-events: none;
}

.procedimento-lista dt.esconder.active {
  color: #212b36;
}

.procedimento-lista dd a {
  color: #212b36;
  font-size: 0.875rem;
}

.procedimento__list-titulo {
  color: #212b36;
  border-bottom: 1px solid #bcbebe;
  padding: 24px 0;

  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.625rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    max-height: 100%;
    opacity: 1;
  }
}

.area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.full-width-grid {
  grid-column: 1 / -1;
}

.ferramentas-da-area,
.atualizacoes,
.mais-acessados,
.agendas,
.pesquisa {
  padding: 1.5rem;
  box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2),
    0px 12px 24px -4px rgba(145, 158, 171, 0.12);
  border-radius: var(--border-16);
  background: #ffffff;
}
.agendas {
  padding: 2rem !important;
}
.pesquisa {
  grid-column: 1 / -1;
  grid-row: 1;
  background: #ffffff;
}

.title-secondary {
  color: var(--secondary);
  font-size: 1.125rem;
  margin-bottom: 1.0625rem;
}

.pesquisa__infor {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pesquisa__buscar form {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.0625rem;
}

.pesquisa__buscar input {
  width: 68%;
  height: 40px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: var(--border-8);
  padding-left: 1.0625rem;
}

.button-primary,
.button-white {
  height: 40px;
}

.button-white {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
}

.pesquisa__checkbox {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}

.pesquisa__checkbox label,
.pesquisa__ajuda p {
  color: #212b36;
  font-size: 0.875rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
}

.pesquisa__ajuda p > a {
  color: var(--primary);
  text-decoration: underline;
}

.pesquisa__ajuda {
  display: flex;
  gap: 10px;
  align-items: center;
}

.banners {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 30px;
  height: 7.5rem;
  /* margin-bottom: 2rem; */
}

.banner__regulamento,
.banner__pratica {
  box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2),
    0px 12px 24px -4px rgba(145, 158, 171, 0.12);
  border-radius: var(--border-16);
  position: relative;
}

.banner__regulamento {
  background-image: url("../../imagens/iob-regulamento.png");
  padding-top: calc(100% / (472 / 60));
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  position: relative;
}

.banner__regulamento h3 {
  max-width: 54%;
  font-size: 1.5rem;
  color: white;
  position: absolute;
  top: 10%;
  padding: 0 1.5rem;
}

.banner__pratica {
  background-image: url("../../imagens/iob-tabela.png");
  padding-top: calc(100% / (472 / 60));
  background-repeat: no-repeat;
  background-position: 10% 100%;
  background-size: cover;
}

.button-primary {
  display: flex;
  align-items: center;
}

.regulamento__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 1.5rem;
  position: relative;
  top: 14px;
}

.banner__pratica h3 {
  max-width: 230px;
  font-size: 1.5rem;
  color: white;
  position: absolute;
  top: 10%;
  padding: 0 1.5rem;
}

.pratica__button {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
  padding: 0 1.5rem;
  top: 14px;
  position: relative;
}

.regulamento__button p {
  color: white;
  font-size: 12px;
  max-width: 168px;
}

/* Atualizacoes */

.atualizacoes__navegacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 70%;
  border-radius: var(--border-8);
  background-color: #bcbebe;
  margin-bottom: 2rem;
  align-items: center;
  color: #424949;
  overflow: hidden;
}

.atualizacoes__navegacao li {
  padding: 5px 12px;
  cursor: pointer;
}

.atualizacoes__navegacao li.activated {
  background: var(--primary);
  color: white;
}

.ferramentas-simulador2 {
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.mais-acessados ul li {
  margin-bottom: 1rem;
}

.custom-inner::before,
.custom-inner::after {
  box-shadow: none;
}

.add-fav {
  display: none;
}

.schedule {
  padding: 0;
  box-shadow: none;
}

/* [data-menucontent]{
    display: none;
}

[data-menucontent].active{
    display: block;
} */

#pagination-decisoesAdministrativas {
  margin-top: 1.46875rem;
}

/* TABELA PRATICA */

/* [data-area="tabelapratica"] {
    min-height: 600px;
} */

.tabela-pratica,
.principaisnormas,
.section__areatematica {
  padding-bottom: 123px;
}

/* .dataAlerta{
    font-size: ;
} */

.tabela-pratica__lista,
.principaisnormas__lista {
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid #bcbebe;
  /* border-bottom: 1px solid #ccc; */
}

.principaisnormas__lista a {
  display: block;
  margin-bottom: 6px !important;
  line-height: 28px;
}

.principaisnormas__lista > .font-h6 {
  margin-bottom: 8px;
}
.decisoesadministrativas {
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid #bcbebe;
  border-bottom: 1px solid #bcbebe;
  /* border-bottom: 1px solid #ccc; */
}

.decisoesadministrativas__document {
  padding-top: 23px;
  padding-bottom: 23px;
  border-bottom: 1px solid #bcbebe;
  display: block;
  font-size: 12px;
}

.decisoesadministrativas__document:last-child {
  border-bottom: none;
}

/* .decisoesadministrativas__document{
   border-bottom: 1px solid #BCBEBE;
} */

.decisoesadministrativas .date {
  margin-bottom: 1rem;
}

.tabela-pratica__lista a {
  display: flex;
  align-items: center;
  /* gap:0.5rem; */
  margin-bottom: 0.6rem;
}

.tabela-pratica__lista:last-child {
  border-bottom: 1px solid #bcbebe;
}

.tabela-pratica__lista p {
  margin-bottom: 0.2rem;
}

.tabela-pratica__novo {
  padding: 4px 0.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);

  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  margin-right: 0.5rem;
}

.subtitle1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #637381;
  margin-bottom: 0.375rem;
}

.migalhas {
  margin-bottom: 12px;
}

.migalhas li {
  display: flex;
  gap: 0.8rem;
  align-items: center;

  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #6c8080;
}

.migalhas li a:nth-child(1):hover,
.migalhas li a:nth-child(3):hover {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.2s linear;
}

.migalhas__voltar {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--primary);
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 22px;
}

.migalhas__icone-separador {
  font-size: 0.6rem;
}

.area__titulo {
  margin-bottom: 2.5rem;
}

#mais-noticias-button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 22px;
  color: var(--primary);
}

.block {
  display: block;
}

.none {
  display: none;
}

/* Loading */
.loader {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  display: block;
  margin: 10px auto !important;
  position: relative !important;
  color: #ff005a;
  box-sizing: border-box;
  animation: animloader 1s linear infinite;
}

@keyframes animloader {
  0% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }

  25% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
  }

  50% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
  }

  75% {
    box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }

  100% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }
}

/* Filtro */

#filtrarPesquisa {
  display: block;
}

.filtrar h2 {
  margin-bottom: 1.5rem;
}

.filtrar-header {
  cursor: pointer;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  margin-bottom: 1.6rem;
  transition: all 0.3s ease-in-out;
}

.filtrar-body {
  margin-bottom: 0.5625rem;
  margin-left: 0.5625rem;
  margin-right: 0.5625rem;
}

/* .box-container {
    padding: 0.5rem 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    display: none;
  }
   */

#filtrarPesquisa {
  /* overflow: hidden; */
  display: none;
}

.filtrar-body-item {
  display: none;
  margin-bottom: 15px;
  transition: 0.2s ease;
}

.filtrar-body-item:nth-child(1),
.filtrar-body-item:nth-child(2),
.filtrar-body-item:nth-child(3),
.filtrar-body-item:nth-child(4),
.filtrar-body-item:nth-child(5),
.filtrar-body-item:nth-child(6),
.filtrar-body-item:nth-child(7),
.filtrar-body-item:nth-child(8),
.filtrar-body-item:nth-child(9),
.filtrar-body-item:nth-child(10) {
  display: block;
  transition: 0.2s ease;
}
.filtrar-body-item.active {
  display: block;
  transition: 0.2s ease;
}
.filtrar-body-item input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.filtrar-body-item label {
  position: relative;
  cursor: pointer;
}

.filtrar-body-item label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #637381;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  top: -1px;
}

.filtrar-body-item input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid #4f0072;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
[data-filtro="titulo"] {
  margin-bottom: 1.5rem;
}
.filtrar-header .icon-svg svg {
  transition: all 0.3s ease-in-out;
}

.filtrar-header.active .icon-svg svg {
  transform: rotate(180deg);
}

.filtrar-body {
  /* padding: 0 1rem; */
  /* background-color: #f3f3f3; */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.filtrar-body.active {
  max-height: 100%;
  /* padding: 1rem; */
}

#loadmore {
  background: transparent;
  border: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 22px;
  color: #ff005a;
}

.ocultar {
  display: none !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Paginacao Estilos */

.tui-pagination {
  height: 28px !important;
  margin-top: 60px !important;
  line-height: normal;
  text-align: left !important;
  font-size: 0;
  /* margin-top: 30px; */
}

.tui-pagination .tui-page-btn {
  width: 26px !important;
  height: 26px !important;
  margin: 0 2px !important;
  border: 2px solid rgba(145, 158, 171, 0.32) !important;
  border-radius: 50px !important;
  color: #212b36 !important;
  padding: 6px 0 6px !important;
  text-align: center !important;
}

.tui-pagination .tui-is-selected,
.tui-pagination strong {
  border: 2px solid #ff005a !important;
  color: #ff005a !important;
  background-color: #ffe5ec !important;
}
.tui-pagination .tui-prev,
.tui-pagination .tui-next {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tui-pagination .tui-ico-prev,
.tui-pagination .tui-ico-next {
  height: initial !important;
}
.tui-pagination .tui-ico-ellip {
  margin-top: 4px !important;
  height: 2px !important;
}

.tui-pagination .tui-last,
.tui-pagination .tui-first {
  display: none !important;
  border: none !important;
}

/* Modal */

.modal-container {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-container.ativo {
  display: flex;
}

.modal {
  background: white;
  min-width: 300px;
  width: 900px;
  padding: 32px;
  box-shadow: 0 0 0 10px white;
  position: relative;
  border-radius: 1rem;
}

@keyframes modal {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.ativo .modal {
  animation: modal 0.3s forwards;
}

.fechar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #dce0e4;
  right: 30px;
  top: 24px;
  position: absolute;
  background: white;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3); */
  font-size: 1.2rem;
  color: #ff005a;
  font-family: "IBM Plex Mono", monospace;
  cursor: pointer;
  border-radius: 8px;
}
/*Testando a feature */
.modal label {
  font-family: "IBM Plex Mono", monospace;
  display: block;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
}

.modal input {
  width: 100%;
  padding: 0.7rem 0.5rem;
  box-sizing: border-box;
}

#button-pesquisar {
  display: flex;
  justify-content: end;
  align-items: center;
  border: none;
  color: white;
  margin-top: 24px;
  position: absolute;
  right: 30px;

  padding: 6px 16px;

  width: 101px;
  height: 36px;
  background: #ff005a;

  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 8px;

  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
#button-limpar {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff005a;
  color: #ff005a;
  margin-top: 24px;
  position: absolute;
  right: 150px;
  padding: 6px 16px;
  width: 101px;
  height: 36px;
  background: white;
  box-shadow: 0px 6px 12px rgb(0 0 0 / 9%);
  border-radius: 8px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

/* Formulário de Pesquisa Avançada */
.pesquisa__avancado {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
    .custom-radio {
      display: inline-block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 3px solid white;
      margin-right: 10px;
      background-color: transparent;
      outline: 2px solid var(--primary);
      box-sizing: border-box;
      transition: all 0.2s linear;
    }

.pesquisa__avancado input {
  width: 68%;
  /* height: 40px; */
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: var(--border-8);
  padding-left: 1.0625rem;
}

.form__group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form__info__text span,
.form__info__text a {
  font-size: 14px;
}

.form__info__text span {
  color: #637381;
}

.form__info__text a {
  color: var(--primary);
}

.line {
  margin: 24px 0;
  border-color: #efefef;
  background-color: #efefef;
  border: 0px;
  height: 1px;
  border-top: 1px solid #efefef;
  width: 100%;
}

.form__group__procedimento {
	display: grid;
    grid-template-columns: 225px 1fr 30px 1fr;
    gap: 6px;
    align-items: center;
}

.procedimento_ou{
	margin: 0px auto;
    color: var(--primary);
    font-size: 14px;
    position: relative;
    padding: 0px;
    top: 0;
    left: 0;
}

.form__group__procedimento select {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(145, 158, 171, 0.32);
    border-radius: var(--border-8);
    padding-left: 1.0625rem;
    position: initial;
    top: 0px;
    left: 0px;
    color: initial;
    background-color: initial;
    pointer-events: auto;
    padding-bottom: initial;
    font-size: 13px !important;
}

.form__group__procedimento label,
.form__group__ato label,
.form__group__normas label {
  display: flex;
  align-items: center;
  gap: 8px;

  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.form__group__procedimento label > input,
.form__group__ato label > input,
.orm__group__normas label > input {
  width: 24px;
}

.form__group__ato {
  display: grid;
  grid-template-columns: 193px 1fr;
  align-items: start;
  gap: 32px;
}

.ato__campos__numeros {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 32px;
}
#ato__numero,
#ato__ano,
#ato__artigo,
#normas_tema {
  width: 100%;
}

.ato__campos__orgaopublico select {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: var(--border-8);
  padding-left: 1.0625rem;
  position: initial;
  top: 0;
}
.ato__campos__orgaopublico {
  margin-bottom: 1rem;
}
.select-common {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: var(--border-8);
  padding-left: 1.0625rem;
  position: initial;
  top: 0;
}
#codigos {
  width: 24px;
}

.form__group__normas {
  display: grid;
  grid-template-columns: 193px 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.form__group__normas label {
  margin: 0;
}

/* Paginas de restultados */
.pesquisageral__article {
  /* padding-top: 23px; */
  padding-bottom: 23px;
  /* border-top: 1px solid #bcbebe; */
}

.pesquisageral__article:last-child {
  /* border-top: 1px solid #bcbebe; */
  border-bottom: 1px solid #bcbebe;
}
.pesquisageral__article h3 {
  margin-bottom: 6px;
}
.pesquisageral__article p {
  color: #637381;
}
.resultados {
  padding-bottom: 3rem;
}

.resultados__titulos {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.resultados__total {
  font-family: "Inter";
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  border-top: 1px solid #bcbebe;
  margin-bottom: 24px;
  color: #34004B;
  padding-top: 20px;
}
.heading-pesquisa {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 40px;
}
.heading-pesquisa #meu-link {
  margin: 0;
  width: 8%;

}
.resultados__check label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.article__destaques {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.article__destaques p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.article__destaques span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #27bbb6;
}

#pesquisaGeral {
  margin-top: 40px;
  margin-bottom: 36px;
}
.formulario-pesquisa {
  /* padding: 1.5rem; */
  border-radius: var(--border-16);
}

.formulario-pesquisa {
  grid-column: 1 / -1;
  grid-row: 1;
}

.title-secondary {
  color: var(--secondary);
  font-size: 1.125rem;
  margin-bottom: 1.0625rem;
}

.formulario-pesquisa__infor {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.formulario-pesquisa__buscar {
  display: flex;
  /*    align-items: center; */
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.0625rem;
  width: 100%;
  position: relative;
}

.formulario-pesquisa__buscar input {
  width: 68%;
  height: 40px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: var(--border-8);
  padding-left: 2.5rem;
  width: 100%;
}

#termo {
  position: relative;
}

.formulario-pesquisa__icons {
  position: absolute;
  left: 14px;
  top: 8px;
}
#formulario-pesquisa_geral,
#formulario-pesquisa_avancado,
#termo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-bottom: 17px;
}
#formulario-pesquisar__area {
  width: 18px;
}
#formulario-pesquisa_avancado {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #212b36;
  border: 1px solid rgba(145, 158, 171, 0.32);
}

.formulario-pesquisa__checkbox {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}

.formulario-pesquisa__checkbox label,
.formulario-pesquisa__ajuda p {
  color: #212b36;
  font-size: 0.875rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
}

.formulario-pesquisa__ajuda p > a {
  color: var(--primary);
  text-decoration: underline;
}

.formulario-pesquisa__ajuda {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sumary > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#txt-areatematica {
  margin-left: 5px;
}

#txt-termo {
  margin-left: 5px;
}

#meu-link {
  display: flex;
  /* padding-left: 10px; */
  margin-bottom: 20px;
  margin-top: -16px;
  width: 6%;
}

.combo-texto-pesquisa {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.minhasPesquisas {
  margin-right: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding-left: 20px;
}

.minhasPesquisas a {
  color: var(--primary);
}

.back-to-top {
  background-color: #ffffff;
  border-radius: 65px;
  bottom: 14px;
  box-shadow: 2px 3px 19px -2px rgba(0, 0, 0, 0.75);
  color: #ff005a;
  cursor: pointer;
  height: 40px;
  position: fixed;
  right: 22px;
  width: 40px;
  z-index: 3;
}
.back-to-top:after {
  content: "▲";
  display: flex;
  justify-content: center;
  padding-left: 1px;
  padding-top: 10px;
}

dt[name="active"] {
  color: var(--primary);
}
dd[name="active"] {
  color: var(--primary);
  display: flex;
  flex-direction: column;
  animation: slideDown 0.5s forwards;
}

dt[name="active"]::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  display: inline-block;
}

dt[name="active"]::after {
  font-family: "Font Awesome 5 Free";
  content: "\f106";
  display: inline-block;
}
.procedimento-lista dd a.active {
  color: var(--primary) !important;
}


/* Estilos abaixo Referente ao Banner IA Home e Areas Temáticas */
/* .banner {
  background:linear-gradient(262deg, #510670 11.37%,#f3055a 107.38%);
  color: white;              
  display: flex;            
  align-items: center;       
  justify-content: space-between; 
  padding: 20px 30px;        
  border-radius: 10px;       
  font-family: Arial, sans-serif; 
  height: 130px !important;
}

.banner-text h2 {
  margin: 0 0 10px 0;        
  font-size: 18px;           
  font-weight: bold;         
}

.banner-text p {
  margin: 0;                 
  font-size: 14px;           
}

.banner-button {
  background-color: #d73478; 
  color: white;              
  border: none;              
  padding: 12px 20px;        
  font-size: 14px;           
  font-weight: bold;         
  border-radius: 20px;       
  cursor: pointer;          
  transition: background-color 0.3s; 
  outline: none;             
}

.banner-button:hover {
  background-color: #c72d67; 
}

.bt-ia {
  height: 50px !important;
  width: 235px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#p-banner-ia {
  font-weight: 100;
  font-size: smaller;
  color: lightgrey;
  padding-right: 30px;
}

.boldText {
    font-weight: 850;
} */
 
.adjust-margin-minha-area {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.adjust-margin-pesquisa-geral {
  padding-left: 80px !important;
}