.header-top-bar {
  height: 45px;
  font-size: 0.75rem;
  background: #ffffff;
  border-bottom: solid 1px #e1e1e1;
}

.header-top-bar__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.header-top-bar__info {
  justify-content: center;
  display: flex;
}

.horizontal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: var(--color-neutral-0);
}

.horizontal-list__item, .horizontal-list > li {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-neutral-0);
}

.horizontal-list__item > a, .horizontal-list > li > a {
  color: var(--color-neutral-0);
  font-size: 0.625rem;
}

.header__divider {
  width: 1px;
  height: 16px;
  margin: 0 8px;
  background-color: var(--white);
}

.horizontal-list__icons {
  column-gap: 12px;
  font-size: var(--text-paragraph-font-size);
}

@media (min-width: 576px) {
  .horizontal-list__item > a, .horizontal-list > li > a {
      font-size: 0.75rem;
  }
  .header-top-bar__container {
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-left: 20px;
  }
}

.horizontal-list__accessibility-icons {
  column-gap: 8px;
  font-size: var(--text-small-caps-font-size);
  color: var(#fff); 
}
.horizontal-list__accessibility-icons, .psp-horizontal-list__icons {
  display: flex;
  align-items: center;
}
.horizontal-list__accessibility-icons button {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(#fff); 
}
.horizontal-list__accessibility-icons span {
  color: var(#fff); 
}
.horizontal-list span {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: var(--text-paragraph-xs-line-height);
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.menu_desktop {
    margin-left: 2rem;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
}

/* MENU INICIAL */
/* Estilo principal do menu */
.custom-navbar {
  background-color: #0d6efd12; /* Fundo cinza claro */
  border-radius: 16px; /* Bordas arredondadas */
  /*padding: 10px 20px; /* Espaçamento interno */
}

.custom-menu {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px; /* Espaço entre os itens */
}

.custom-menu .nav-item {
  flex: none;
}

.custom-menu .nav-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #6b7280; /* Cor do texto */
  padding: 8px 20px;
  border-radius: 20px; /* Para o efeito de botão */
  transition: all 0.3s ease-in-out; /* Transição suave */
}

/* Dropdown */
.custom-dropdown {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
  padding: 10px 10px; /* Espaçamento interno no dropdown */
  transition: all 0.3s ease-in-out; /* Transição suave */
  min-width: 180px; /* Largura mínima */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

.custom-dropdown .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  color: #6b7280;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #e5e7eb; /* Fundo cinza claro no hover */
  color: #111827; /* Texto preto no hover */
  border-radius: 5px; /* Bordas arredondadas no hover */
}

/* Estado ativo */
.custom-menu .nav-link.active {
  background-color: #0d6efd; /* Fundo preto para o ativo */
  color: #ffffff; /* Texto branco */
  font-weight: 600; /* Destaca o item ativo */
}

.custom-menu .nav-link:hover {
  background-color: #ffffff; /* Fundo cinza claro no hover */
  color: #111827; /* Texto preto no hover */
}

/* Responsividade */
@media (max-width: 768px) {
  .custom-menu {
      flex-direction: column;
      gap: 10px;
  }

  .custom-navbar {
      padding: 15px;
  }
}

.offcanvas-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
  background-color: #ffffff;
}

/* Ajusta a largura do offcanvas */
.offcanvas {
  width: 300px; /* Reduzido */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
/* Estilização do botão do menu */
.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #333;
}

.navbar-toggler-icon {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 2a2 2 0 012-2h12a2 2 0 012 2H0zm0 5h16v2H0V7zm0 5h16v2H0v-2z'/%3E%3C/svg%3E");
    background-size: contain;
}

.menu-text {
    font-size: 16px;
    margin-left: 5px;
}

/* Offcanvas customizado */
.offcanvas {
    width: 300px; /* Ajuste da largura */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra */
    background-color: #f8f9fa; /* Cor do fundo */
}

/* Fundo do site visível */
.offcanvas-backdrop.show {
    opacity: 0.5; /* Transparência no fundo */
    background-color: rgba(0, 0, 0, 0.7); /* Cor do backdrop */
}

/* Estilo do header no offcanvas */
.offcanvas-header {
    background-color: #3a3e46;;
    color: #fff;
    padding: 10px 15px;
}

.offcanvas-body {
    background-color: #0d6efd;
    padding: 15px;
}

/* Links no menu */
.offcanvas .navbar-nav .nav-link {
    color: #fff;
    background-color: #0d6efd; /* Cor laranja */
    /*border: 1px solid #fff;*/
    margin-bottom: 10px;
    padding: 10px 15px;
    text-align: left;
    border-radius: 4px;
    text-transform: uppercase;
}

.offcanvas .navbar-nav .nav-link:hover {
    background-color: #0d6efd; /* Laranja claro no hover */
}

/* MENU INICIAL FIM*/

.acesso-rapido-topo ul li {
  color: #404244;
}

.acesso-rapido-topo ul li a {
  text-decoration: none;
  color: #6f7280;
}

.redes ul li i {
  font-size: 17px;
}

.redes ul li a {
  text-decoration: none;
  color: #6f7280;
}

.redes ul li {
  color: #6f7280;
}

.divisor-topo {
  height: 15px;
  width: 1px !important;
  margin-top: -12px;
  position: absolute;
  background: #6f7280;
}

.socials i {
  margin-right: 15px;
}

.header {
  padding-top: 0px;
  border-bottom: solid 1px #e1e1e1;
}

.links-rapidos-header a {
  text-decoration: none;
  color: #000;
  margin-right: 24px;
  font-weight: 600;
}

.infos-header {
  width: 100%;
  height: 100%;
}

#busca-header {
  background: rgb(236,102,8);
  border-radius: 10px;
  border-color: #fca311;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: .5s;
}

#busca-header:hover {
  background: #c35406;
}

.section-menu-transparencia {
  margin-top: 30px;
}

/* Título e descrição */
.titulo-transparencia {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.descricao-transparencia {
  font-size: 1rem;
  color: #666;
  margin-top: 5px;
}

/* Estilo geral das abas */
.nav-pills .nav-link {
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #007bff; /* Fundo azul por padrão */
  color: #ffffff; /* Texto branco por padrão */
  transition: background-color 0.3s ease, color 0.3s ease; /* Transição suave */
}

/* Aba ativa (a primeira por padrão) */
.nav-pills .nav-link.active {
  background-color: #ffffff; /* Fundo branco */
  color: #007bff; /* Texto azul */
  font-weight: bold;
}

/* Hover para abas */
.nav-pills .nav-link:hover {
  background-color: #ffffff; /* Azul mais escuro no hover */
  color: #007bff; /* Texto branco no hover */
}

/* Responsividade para abas */
@media (max-width: 768px) {
  .nav-pills .nav-link {
      font-size: 0.9rem;
      padding: 8px 12px;
  }
}

.tab-pane {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.95);
}

.tab-pane.show {
  opacity: 1;
  transform: scale(1);
}

/* Links de menu */
.menu-item {
    display: block;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 10px;
    height: 100%; /* Para manter altura uniforme */
}

.menu-item:hover {
  background-color: #007bff0f; 
}

.menu-content {
    font-size: 1rem;
    font-weight: bold;
    color: #6f6f70;
}

.menu-item:hover .menu-content {
    color: #007bff; /* Texto branco no hover */
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-content {
        font-size: 0.9rem;
    }
}


/* Estilo dos itens (retângulos) */
.item-card {
  border: 1px solid #ddd;
  border-radius: 30px;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.item-card:hover {
  background-color: #f0f0f0; /* Cor sutil no hover */
}

.item-card .card-body {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
  .titulo-transparencia {
      font-size: 1.5rem;
  }

  .descricao-transparencia {
      font-size: 0.9rem;
  }

  .item-card .card-body {
      font-size: 0.9rem;
  }
}


.menus-transparencia h4 {
  color: #ec681f;
}

.menus-transparencia {
  width: 100%;
  padding-top: 5px;
  gap: 15px;
  /*background: #ffffff;*/
}

.transparencia-menu-button:hover {
  background: #d05c0b !important;
}

.transparencia-menu-button {
  background: #ec6608 !important;
  border-radius: 25px;
  color: #ffffff !important;
  padding: 0px 15px 0px 15px;
  transition: .5s;
}

@media (max-width: 768px) {
  .transparencia-menu-button {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .dropdown-transparencia {
    height: 37.4px;
  }
}

@media (max-width: 768px) {
  .dropdown-expands {
    width: 100%;
    background: #ec6608;
  }
}

.dropdown-expands {
  background: #ec6608;
}

.dropdown-expands a {
  color: #fff;
}

.noticia-principal {
  height: 533px;
}

.noticias-section {
  background-color: #ffffff;
}

.img-noticia-principal {
  border-radius: 10px;
  object-fit: cover;
}

/* INÍCIO: CSS DO MENU HORIZONTAL */
.button-lado-noticia a {
  width: 79px;
  height: 69px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-color: #ccc;
  color: #716c7f;
  transition: .5s;
  border-radius: 16px;
}

.button-lado-noticia a:hover {
  background-color: #0d6efd;
  color: #fff;
}

.button-lado-noticia .btn.active {
  background-color: #007bff; /* Altere para a cor desejada */
  color: white;
  border: none;
  border-radius: 16px;
}

/* Estilo padrão para telas maiores */
.menu-scroll {
    overflow-x: visible; /* Permite que o menu fique fixo sem rolagem */
}

.menu-wrapper {
    display: inline-flex;
    flex-wrap: wrap; /* Permite que os itens quebrem linha em telas maiores */
    justify-content: start; /* Alinha os itens à esquerda */
    gap: 10px; /* Espaço entre os botões */
}

/* Para tamanhos de tela menores */
@media (max-width: 768px) {
    .menu-scroll {
        overflow-x: auto; /* Permite rolagem horizontal */
        -webkit-overflow-scrolling: touch; /* Experiência de toque suave */
    }

    .menu-wrapper {
        display: flex;
        flex-wrap: nowrap; /* Força os itens a ficarem em linha */
        gap: 10px; /* Espaço entre os botões */
    }

    .button-lado-noticia {
        flex: 0 0 auto; /* Mantém os itens em linha */
    }
}


.button-lado-noticia {
  margin-bottom: 10px;
}

.button-lado-noticia span {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.575rem;
}
/* FIM: CSS DO MENU HORIZONTAL */

.noticia-lateral-inicial {
  margin-bottom: 75px;
  height: 140px;
}

.img-noticia-lateral-inicial {
  object-fit: cover;
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.titulo-noticia-principal {
  margin-top: 10px;
  background: #0054e91c;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 5px 15px;
  margin-bottom: 10px;
  text-align: left;
  padding: 15px;
}

.titulo-noticia-principal h4{
  font-size: 1.575rem;
  line-height: 1.575rem;
}

.titulo-not-lateral-inicial {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-color: #000;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 0px;
  padding-top: 5px;
  padding-right: 7px;
  padding-left: 7px;
  color: #35485e;
  font-size: 0.875rem;
  font-weight: bold;
}

/* INICIO ULTIMAS LEGISLAÇÕES */
.info-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  margin-bottom: 20px; /* Espaçamento inferior entre os blocos */
}

.info-card .icon-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info-card .icon {
  font-size: 24px;
  background-color: #f2f2f2;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.info-card .description {
  font-size: 14px;
  color: #6c757d;
  height: 50px;
}

.info-card .divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 10px 0;
}

.info-card .details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6c757d;
}

.info-card .details .date,
.info-card .details .type {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-card .details i {
  font-size: 16px;
  color: #0d6efd;
}

.info-card .btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #0d6efd;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.info-card .btn-share:hover {
  background-color: #0d6efd;
  color: #fff;
}

.info-card .btn-share i {
  font-size: 13px;
}

.info-card .btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0d6efd;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 5px 10px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  margin-top: 10px;
  display: inline-flex;
}

.info-card .btn-learn-more:hover {
  background-color: #0d6efd;
  color: #fff;
}

.info-card .btn-learn-more i {
  font-size: 16px;
}

.badge-number {
  background-color: #0054e9;
  color: white;
  font-size: 13px;
  padding: 10px 15px 10px 15px;
  border-radius: 15px;
}

.badge-type {
  background-color: #0054e91c;
  color: #061836;
  font-size: 13px;
  padding: 10px 15px 10px 15px;
  border-radius: 16px;
}

/* Container do bloco */
.option-block {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  gap: 15px; /* Espaçamento entre os menus */
}

/* Cada cartão de opção */
.option-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.option-card.active {
  border-color: #cfcfcf;
  background-color: #f7f6f9;
}

.option-card:hover {
  border-color: #cfcfcf;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.info-card {
  /* display: none; */
  /* opacity: 0; */
  transform: translateY(20px);
  transition: all 0.4s ease;
  padding: 15px;
}

.info-card.active {
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Número dentro do círculo */
.option-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0054e9;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 35%;
  text-align: center;
}

/* Texto ao lado do número */
.option-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  white-space: nowrap; /* Garante que o texto não quebre */
}

/* Tracinho entre as opções */
.divider-menu {
  width: 1px;
  height: 20px;
  background-color: #ddd;
  margin: 0 10px;
}

/* FIM */

@media (max-width: 1200px) {
  .button-lado-noticia {
    margin-bottom: 21px;
  }
}

@media (max-width: 768px) {
  .button-lado-noticia {
    margin-bottom: 30px;
    margin-right: -50px;
  }
  .titulo-noticia-principal h4{
    font-size: 1rem;
    line-height: 1rem;
  }
}

@media (width: 992px) {
  .button-lado-noticia {
    margin-bottom: 26px;
  }
}

@media (max-width: 992px) {
  .noticia-lateral-inicial {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .noticia-principal {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .menus-transparencia
     {
      height: 0px;
  }
}

@media (min-width: 1200px) {
  .noticia-lateral-inicial {
    margin-bottom: 74px;
  }
}

.ultimas-noticias {
  border-left-style: solid;
  border-left-color: #ec6608;
  height: 20px;
  gap: 10px;
}

.service-destaq {
  border-left-style: solid;
  border-left-color: #ec6608;
  height: 20px;
  gap: 10px;
}

.service-destaq h5 {
  height: 24px;
}

.ultimas-noticias h6 {
  margin-left: 10px;
  white-space: nowrap;
  color: #5b5b5b;
}

.service-destaq h6 {
  margin-left: 10px;
  white-space: nowrap;
  color: #5b5b5b;
}

.ultimas-noticias p {
  color: #ec6608;
  font-weight: 500;
  white-space: nowrap;
}

.service-destaq p {
  color: #ec6608;
  font-weight: 500;
  white-space: nowrap;
}

.divisor-horizontal {
  height: 1px;
  width: 100%;
  margin-left: 25px;
  background: #ccc;
}

.ultimas-noticias i {
  color: #ee6608;
  margin-top: -9px;
}

.service-destaq i {
  color: #ee6608;
  margin-top: -9px;
}

.section-destaque {
  margin-top: 50px;
}

.cards-servicos a:hover {
  color: #ec6608;
}

.cards-servicos a {
  color: #2a454a;
  text-decoration: none;
  transition: .5s;
}

.card-servico a {
  border-radius: 10px;
  background: #fff;
}

.card-servico {
  height: 115px;
  width: 145px;
  border-radius: 10px;
  background: #fff;
}

.cards-servicos {
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 10px;
  width: 100%;
  white-space: nowrap;
}

.card-servico span {
  font-weight: 500;
}

.image-ultimas-not-direita img {
  width: 100%;
  height: 200px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  object-fit: cover;
}

.info-not-esquerda {
  background-color: #fff;
  width: 55%;
  height: 100%;
  padding: 10px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.info-not {
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 55%;
  padding: 10px;
  padding-left: 20px;
  height: 100%;
}

.info-not h6, .info-not-esquerda h6 {
  color: #aab4b7;
}

.info-not-esquerda p {
  color: #989898;
}

.info-not p, .info-not-esquerda p {
  color: #989898;
}

.info-not span, .info-not-esquerda span {
  color: #989898;
}

@media {
  .image-ultimas-not img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    object-fit: cover;
    height: 200px;
  }
}

.header-legislacoes-inicial {
  width: 100%;
  background: #ec6608;
  height: 35px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  color: #ffffff;
}

.legislacoes-tela-inicial {
  width: 100%;
  height: 521px;
}

.foto-info-not-inicial-1 {
  margin-bottom: 20px;
}

.body-legislacao-inicial {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  border-bottom: 1px none #cccccc ;
  box-shadow: -2px 4px 20px #ccc;
}

.header-legislacoes-inicial h6 {
  font-size: 12px;
  margin-right: 5px;
  margin-top: 5px;
}

.legislacao-inicio {
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding: 10px;
}

.footer-legislacao-inicial {
  color: #ec6608;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0px 14px 20px #cccccc;
}

.footer-legislacao-inicial p {
  margin-left: 10px;
}

.legislacao-inicio span {
  color: #8c8c8c;
}

.banner-horizontal-1 {
  width: 100%;
  height: 150px;
  margin-top: 15px;
  border-radius: 10px;
}

.banner-horizontal-1 img {
  border-radius: 10px;
}

@media (max-width: 512px) {
  .image-ultimas-not-direita img, .image-ultimas-not img {
    height: 215px;
  }
}

@media (max-width: 512px) {
  .info-not, .info-not-esquerda {
    height: 214.2px;
    overflow: hidden;
  }
}

.videos {
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.banner-final {
  margin-top: 20px;
}

.banner-final img {
  border-radius: 10px;
}

.videos-section {
  margin-top: 110px;
  margin-bottom: 110px;
}

.footer {
  width: 100%;
  background: #024cb9;
  height: 100%;
}

.footer-divider {
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}

.footer-site {
  width: 100%;
  height: 100%;
}

.socials-footer a {
  color: #fff;
  margin-right: 20px;
  font-size: 20px;
}

.cards-footer {
  border: 1px solid rgb(255,255,255) ;
  border-radius: 10px;
  margin-left: 20px;
  color: #ffffff;
}

footer p {
  color: #433e59; /* Cor inicial do texto */
}

/* Estilo inicial dos links do menu */
footer ul li a {
  color: #433e59; /* Cor inicial do texto */
  text-decoration: none; /* Remove sublinhado padrão */
  position: relative; /* Necessário para o pseudo-elemento */
  transition: color 0.3s ease; /* Transição suave da cor do texto */
}

/* Pseudo-elemento para o sublinhado */
footer ul li a::after {
  content: ''; /* Cria o pseudo-elemento */
  position: absolute;
  bottom: -3px; /* Ajuste a distância entre a linha e a palavra */
  left: 0;
  width: 0; /* Largura inicial é 0 */
  height: 2px; /* Espessura da linha */
  background-color: #433e59; /* Cor inicial da linha */
  transition: width 0.3s ease, background-color 0.3s ease; /* Transição suave */
  line-height: 160%;
}

/* Efeito ao passar o mouse */
footer ul li a:hover {
  color: #007bff; /* Nova cor do texto ao passar o mouse */
}

footer ul li a:hover::after {
  width: 100%; /* Expande a linha até o final da palavra */
  background-color: #007bff; /* Nova cor da linha ao passar o mouse */
}

footer .c-copy__rights {
  color: #433e59;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 162%;
}

.contatos-card {
  background-color: #0d6efc;
  position: fixed;
  top: 80%;
  display: flex;
  width: 65px;
  height: 171px;
  align-items: center;
  justify-content: center;
  right: 0;
  writing-mode: vertical-rl;
  transform: translateY(-50px) rotate(180deg);
  padding: 16px;
  font-size: 20px;
  color: #fff;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  height: 156.287px;
  transition: .5s;
  z-index: 1000;
}

.contatos-card i {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.contatos-card p {
  right: 100%;
}

.contatos-card:hover {
  width: 500px;
}

/* INICIO SLIDE */
/* Borda arredondada para o slide */
.rounded-slide {
  border-radius: 20px;
  overflow: hidden;
}

/* Caso precise ajustar o espaçamento geral da seção */
.section-slide {
  padding: 15px; /* Ajuste conforme necessário */
}
/* FIM SLIDE */

/* INICIO VEREADORES HOME */
.vereador-info p {
  font-size: 0.9rem;
  color: #555;
}
.vereador-info h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Container dos cards */
.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /*justify-content: space-between; /* Ajusta alinhamento para desktop */
  /*padding: 10px;*/
}

/* Card */
.vereador-card {
  /*background: linear-gradient(135deg, #f04d22, #ff742b);*/
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  color: #212529;
  padding: 20px;
  position: relative;
  width: calc(20% - 20px); /* 5 por linha no desktop */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  min-height: 250px;
}

/* Avatar */
.vereador-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #e3ecfd;
  position: absolute;
  /*top: 60px;*/
  left: 20px;
  background-color: #f04d22;
  object-fit: cover;
}

/* Título e badges */
.vereador-card h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 5px;
}

.vereador-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: left;
}

.vereador-card .badge {
  background-color: rgb(227 236 253);
  font-size: 0.7rem;
  color: #061836;
}

/* Botão */
.vereador-card .btn {
  background-color: #0054e9;
  color: #ffffff;
  border-radius: 16px;
  padding: 5px 15px;
  font-size: 0.7rem;
  font-weight: bold;
  align-self: flex-start;
}

.vereador-card .btn:hover {
  background-color: #0d6efd;
}

/* Estilo no mobile: scroll infinito */
@media (max-width: 576px) {
  .card-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    scroll-behavior: smooth; /* Rolagem suave */
  }

  .vereador-card {
    flex: 0 0 250px; /* Cards ocupam largura fixa no mobile */
  }

  .card-container > .vereador-card:last-child {
    margin-right: calc((100vw - 250px) / 2); /* Centraliza o último card no final */
  }

  .vereador-card img {
    position: absolute;
    margin: 0 auto -40px;
  }

  .vereador-card h5,
  .vereador-card p {
    text-align: left;
  }

  .vereador-card .btn {
    align-self: normal;
  }
}

/* Esconde o scrollbar no mobile */
.card-container::-webkit-scrollbar {
  display: none;
}
.card-container {
  -ms-overflow-style: none; /* IE e Edge */
  scrollbar-width: none; /* Firefox */
}
/* FIM VEREADORES HOME */


/* INICIO DA PAGINA NOTICIAS */
.border_bt_1C:after{
	content: '';
	margin-top: 10px;
	display: block;
	height: 1px;
	background-color: #CCC;
	width: 33%;
}

.breadcrumb > li + li:before {
	display: none;
}
.breadcrumb a{
	color: inherit;
}
.breadcrumb a:hover{
	text-decoration: underline;
}
.breadcrumb{
	background-color: transparent;
	padding-left: 0px;
	margin-bottom: 0px;
	color: #27394e;
    font-weight: 600;
    margin-top: 25px;
}
.svg_breadcrumb{
	color: #999;
	height: 14px;
	width: 7px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 9px;
	margin-right: 5px;
}
.breadcrumb{
  margin-top: 45px;
  color: #27394e;
  font-weight: 600;
}

.titulo_resumo_not_int h2 {
  font-weight: 600;
  font-size: 1.8rem;
  /* line-height: 2.625rem; */
  letter-spacing: -.01em;
}

.under_noticia p,
.under_noticia a{
	font-size: 13px;
	color: #727272;
	margin-top: 20px;
}

.fonte_noticia_int{
	font-size: 14px;
	color: #777;
	margin-top: 50px;
}

.content_noticia{
	margin-top: 40px;
	padding-bottom: 45px;
	border-bottom: 1px dotted #CCCCCC;
}

.content_noticia img{
	border: 1px solid #D6D6D6;
	border-radius: 10px;
	object-fit: cover;
	width: 100%;
}

.content_noticia .content_right a{
	display: inline-block;
}

.content_noticia .content_right .data_noticia,
.data_noticia_int{
	background-color: #ACACAC;
	display: inline-block;
	padding: 7px 5px;
	color: #fff;
	font-weight: 300;
	font-size: 13px;
	margin: 10px 0;
	border-radius: 4px;
}

.data_noticia_int{
	margin-top: 0;
	margin-bottom: 0;
	background-color: #00adef;
	border-radius: 4px;
}

.content_noticia .content_right h2, h4{
	margin: 10px 0 10px 0;
	font-size: 17px;
	color: #212529;
	font-weight: 600;
}

.content_noticia .content_right h5{
    margin: 20px 0 10px 0;
    font-size: 17px;
    color: #000000;
    font-weight: 600;
}

.content_noticia .content_right p{
	font-size: 13px;
	color: #727272;
}

.content_noticia .content_right a:hover .data_noticia{
	background-color: #005bc5;
}

.content_noticia .content_right a:hover h2{
	color: #005bc5;
}

.texto_not_int p{
	font-size: 14px;
	color: #727272;
	line-height: 180%;
	margin-bottom: 20px;
	font-size: 1.125rem;
}

.texto_not_int{
	margin-top: 10px;
	margin-bottom: 50px;
}

.fotos_not_int img{
	margin-bottom: 30px;
}

.fotos_not_int{
	margin-bottom: 50px;
}

.compartilhe_noticia{
	width: 100%;
	padding: 10px;
	font-size: 13px;
	color: #BBBBBB;
	background-color: #E9E9E9;
	text-align: right;
}

.compartilhe_noticia .face{
	margin-left: 3px;
}

.compartilhe_noticia svg{
	cursor: pointer;
	width: 24px;
	height: 24px;
	color: #BBBBBB;
	display: inline-block;
	vertical-align: middle;
}

.compartilhe_noticia a:hover svg{
	color: #80B47E;
}

.acesso_rapido h2 {
  cursor: default;
  background-color: #00adef;
  color: #ffff;
  width: 100%;
  margin: 0;
  padding: 15px;
  font-size: 17px;
  border-radius: 16px;
}

.noticias_baixo {
  padding: 15px;
  /* border-left: 5px solid #E9E5E3; */
  /* min-height: 150px; */
  float: right;
}
.acesso_rapido a {
  /* border: 1px solid #C9C9C9; */
  font-weight: 700;
  letter-spacing: -.24px;
  line-height: 120%;
  margin-bottom: 10px;
  transition: color .2s;
}
.noticias_baixo:hover span strong.titulo {
  color: #005bc5;
}
.noticias_baixo span strong.titulo {
  font-style: normal;
  font-weight: 600; 
  font-size: 14px;
  color: #212529;
  display: inline-block;
  margin-bottom: 8px;
}
.info-notice a {
  color: #333;
  text-decoration: none;
}

/* FIM PAGINA DE NOTICIA */
.txtacess {
  text-decoration: none; /* Remove o sublinhado */
  color: inherit; /* Mantém a cor original */
  cursor: pointer; /* Mostra o ponteiro quando hover */
}

.galerias_int .h2_noticia_int {
	color: #9FBE6C;
	width: auto;
	margin-top: 0px;
}

.under_noticia p,
.under_noticia a{
	font-size: 13px;
	color: #727272;
	margin-top: 20px;
}

.fonte_noticia_int{
	font-size: 14px;
	color: #777;
	margin-top: 50px;
}

.content_noticia{
	margin-top: 20px;
	padding-bottom: 45px;
	border-bottom: 1px dotted #CCCCCC;
}

.content_noticia img{
	border: 1px solid #D6D6D6;
	border-radius: 10px;
	object-fit: cover;
	width: 100%;
}

.content_noticia .content_right a{
	display: inline-block;
}

.content_noticia .content_right .data_noticia,
.data_noticia_int{
	background-color: #ACACAC;
	display: inline-block;
	padding: 7px 5px;
	color: #fff;
	font-weight: 300;
	font-size: 13px;
	margin: 10px 0;
	border-radius: 4px;
}

.data_noticia_int{
	margin-top: 0;
  margin-bottom: 0;
  width: fit-content;
  height: fit-content;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: rgb(223, 236, 251);
  border-radius: 1.5rem;
  color: #0b2859;
  font-size: 0.875rem;
  font-weight: 600;
}

.content_noticia .content_right h2, h4{
	margin: 10px 0 10px 0;
	font-size: 17px;
	color: #212529;
	font-weight: 600;
}

.content_noticia .content_right h5{
    margin: 20px 0 10px 0;
    font-size: 17px;
    color: #000000;
    font-weight: 600;
}

.content_noticia .content_right p{
	font-size: 13px;
	color: #727272;
}

.content_noticia .content_right a:hover .data_noticia{
	background-color: #005bc5;
}

.content_noticia .content_right a:hover h2{
	color: #005bc5;
}

.texto_not_int p{
	font-size: 14px;
	color: #727272;
	line-height: 180%;
	margin-bottom: 20px;
	font-size: 1.125rem;
}

.texto_not_int{
	margin-top: 10px;
	margin-bottom: 50px;
}

.fotos_not_int img{
	margin-bottom: 30px;
}

.fotos_not_int{
	margin-bottom: 50px;
}

.box_data_noticia{
	height: 60px;
	width: 60px;
	background-color: #E0E2DD;
	position: absolute;
	top: -30px;
	left: 10px;
	-webkit-transition:	all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.todas_noticias_index{
	margin-top: 3%;
	width: 100%;
	display: block;
	border: 1px solid #E0E0E0;
	text-align: center;
	font-size: 15px;
	color: #AAAAAA;
	background-color: #fff;
	text-align: center;
	padding: 15px 0;
	-webkit-transition:	all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.todas_noticias_index:hover{
	background-color: #6B9469;
	border: 1px solid #6B9469;
	color: #fff;
}
/* Notícias Relacionadas */
.noticia-relacionada {
  margin-top: 20px;
}

.noticia-relacionada h4 {
  font-size: 1.5em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.img-notice img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.info-notice a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.info-notice a:hover {
  text-decoration: underline;
}

.data-noticia {
  font-size: 0.9em;
  color: #777;
}

.info-notice h2 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.info-notice h4 {
  margin: 0;
  font-size: 1em;
  color: #555;
}

/* MODAL FOTOS */

.modal-content {
  background: rgba(0, 0, 0, 0.8);
  border: none;
}

.modal-header {
  border-bottom: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.btn-close-white {
  filter: invert(1);
}
/* FIM MODAL FOTOS */


/* ESTILO E PADRDÃO NOVA LISTAGEM DE NOTICIAS COM PESQUISA E PAGINAÇÃO */
.search-container {
  position: relative;
  width: 100%;
}

.searchinput {
    width: 100%;
    padding: 8px 50px 8px 20px; /* Espaço para a lupa à direita */
    border: 1px solid rgb(175, 176, 177);
    border-radius: 50px; /* Bordas arredondadas */
    font-size: 16px;
    background-color: #dadfe5;
    outline: none;
    transition: 0.3s ease-in-out;
}

.searchinput:focus {
    border-color: #007bff;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Botão de pesquisa com a lupa dentro */
.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: #007bff; /* Azul do Bootstrap */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.search-button:hover {
    background-color: #0056b3; /* Azul mais escuro ao passar o mouse */
}

.search-button i {
    font-size: 18px;
}

.news-item {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Evita que a imagem ultrapasse a borda */
    border-radius: 10px; /* Mantém o border-radius ao redor do contêiner */
}

.news-link {
    text-decoration: none; /* Remove sublinhado */
    color: inherit; /* Mantém a cor padrão do texto */
    display: block;
    transition: transform 0.3s ease-in-out;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out; /* Transição suave */
}

.news-link:hover .news-image {
    transform: scale(1.05); /* Aumenta a imagem em 5% */
}

.date {
    font-size: 12px;
    color: #4b6c89;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.date i {
    margin-right: 5px;
}

.title {
    font-size: 18px;
    font-weight: 700;
    color: #004080;
    margin: 5px 0;
}

.title:hover,
.news-link:hover .title {
    color: #002060; /* Pequena alteração no hover */
}

.description {
    font-size: 14px;
    color: #333;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-item {
    list-style: none;
}

.page-item .page-link {
    border: none;
    background-color: white;
    color: #2b343d;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 14px;
    transition: background 0.3s ease-in-out, color 0.3s;
}

.page-item .page-link:hover {
    background-color: #e9ecef;
    color: #004080;
}

.page-item.active .page-link {
    background-color: #0d6efd; 
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 8px 14px;
}

.page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

.prev-button, .next-button {
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 50px 50px 50px 50px;
}

.current-page {
    font-weight: bold;
    font-size: 18px;
}
/* FIM ESTILO E PADRDÃO NOVA LISTAGEM DE NOTICIAS COM PESQUISA E PAGINAÇÃO */
