@charset "UTF-8";


 @import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

  :root {
    --cordotexto: {{env('CORDOTEXTO', '#0000CD')}};
    --textomenu: {{env('TEXTOMENU', '#F0F8FF')}};
    --barratop: {{env('BARRATOP', '#e8e8e8')}};
    --corclara: {{env('CORCLARA', '#007bff')}};
    --textobarra: {{env('TEXTOBARRA', '#005896')}};
    --fundomenu: {{env('FUNDOMENU', '#005896')}};
    --efeitomenu: {{env('EFEITOMENU', '#ffc107')}};
    --tituloPrincipal: {{env('TITULOPRINCIPAL', '#005896')}};
    --corrodape: {{env('CORRODAPE', '#000000')}};
    --textorodape1: {{env('TEXTORODAPE1', '#ddd')}};
    --textorodape: {{env('TEXTORODAPE', '#cccc')}};
    --cordapagina: {{env('CORDAPAGINA', '#f4f7f6')}};
    --tituloNoticia: {{env('TITULONOTICIA', '#f4f7f6')}};
    --bs-primary: {{env('BS_PRIMARY', '#ff5733')}};
    --bs-secondary: {{env('BS_SECONDARY', '#3faffa')}};
    --bs-success: {{env('BS_SUCCESS', '#28a745')}};
    --bs-danger: {{env('BS_DANGER', '#dc3545')}};
    --bs-warning: {{env('BS_WARNING', '#ffc107')}};
    --bs-info: {{env('BS_INFO', '#17a2b8')}};
    --bs-light: {{env('BS_LIGHT', '#f8f9fa')}};
    --bs-dark: {{env('BS_DARK', '#343a40')}};
  }

  body {
      font-family: 'PT Sans', Arial, sans-serif;
      margin: 0;
      padding: 0;
      color: var(--bs-body-color) ;
      background-color: #f4f7f6;
  }

  .colboletim {

    padding: 10px;
  }
  .colboletim table {
    height: 100%; width: 100%;
    color: white;
    font-weight: bold;
    text-align: center;
  }
  .colboletim table tr {
    height: 50px;
    padding: 10px;
  }

  .suspeito{
    background-color: rgb(230, 126, 34);
  }
  .hospitalizado{
    background-color: rgb(142, 68, 73);
  }
  .confirmado{
    background-color: rgb(231, 76, 60);
  }
  .recuperado{
    background-color: rgb(41, 128, 185);
  }
  .descartado{
    background-color: rgb(39, 174, 96);
  }
  .monitorado{
    background-color: rgb(26, 186, 156);
  }
  .obito{
    background-color: rgb(45, 52, 54);
  }
  .ativo{
    background-color: rgb(127, 140, 141);
  }

    /* Estilizando a caixa de entrada como o WhatsApp */
    .chat-box {
        margin: 15px;
        padding: 10px;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Caixa de mensagem arredondada */
    .message-box {
        display: flex;
        align-items: center;
        background-color: #f0f0f0;
        border-radius: 25px;
        padding: 5px;
    }

    /* Input de texto com estilo do WhatsApp */
    .chat-input {
        border: none;
        border-radius: 25px;
        resize: none;
        padding: 10px;
        font-size: 14px;
        outline: none;
        height: 80px;
    }

    /* Botão de envio similar ao WhatsApp */
    .send-btn {
        background-color: #25d366;
        border-radius: 50%;
        width: 40px;
        height: 80px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        margin-left: 10px;
    }

    /* Ícone de envio maior */
    .send-btn:hover {
        background-color: #1ebe57;
    }

    /* Input de arquivo discreto */
    input[type="file"] {
        padding: 5px;
        background: #fff;
        border-radius: 5px;
    }



    .chat-container {
        margin: 15px;
        padding: 10px;
        background-color: #f5f5f5;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
    }

    .message {
        max-width: 75%;
        padding: 10px;
        margin: 5px;
        border-radius: 10px;
        position: relative;
        font-size: 14px;
    }

    .sent {
        background-color: #dcf8c6; /* Verde claro (WhatsApp) */
        color: #000;
        align-self: flex-end;
        text-align: right;
        margin-left: auto;
    }

    .received {
        background-color: #eaeaea; /* Cinza claro */
        color: #000;
        align-self: flex-start;
        text-align: left;
        margin-right: auto;
    }

    .timestamp {
        font-size: 11px;
        color: #555;
        display: block;
        margin-top: 5px;
        text-align: right;
    }

        .list-group-item.active  {
            background-color: var(--fundomenu);
            color: var(--textomenu);
        }
        .list-group-item-action:focus, .list-group-item-action:hover {
            background-color: var(--efeitomenu);
            color: var(--fundomenu);
        }

        p {
              text-align: justify;
        }

        .bd-callout {
          padding: 1.25rem;
          margin-top: 1.25rem;
          margin-bottom: 1.25rem;
          margin-left: 2rem;
          border: 1px solid #eee;
          border-left-width: .25rem;
          border-radius: .25rem;
        }

        .bd-callout-info {
          border-left-color: var(--bs-info);
        }

        .bd-callout-secondary {
            border-left-color: var(--bs-secondary);
          }

        .bd-callout-danger {
            border-left-color: var(--bs-danger);
        }

        .bd-callout-primary {
            border-left-color: var(--bs-primary);
        }

        .bd-callout-warning {
            border-left-color: var(--bs-warning);
        }

        .bd-callout-success {
            border-left-color: var(--bs-success);
        }


   /* Sobrescrever cores do Bootstrap */
  .btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
  }

  .btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
  }

  .btn-success {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
  }

  .btn-danger {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
  }

  .btn-warning {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
  }

  .btn-info {
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
  }

  .btn-light {
    background-color: var(--bs-light) !important;
    border-color: var(--bs-light) !important;
  }

  .btn-dark {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
  }

  /*------DROPDOWNSUBMENU--------------------*/
  .dropdown-submenu {
    position: relative;

  }

  .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;

  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1005;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1.2rem;
    color: var(--efeitomenu);
    text-align: left;
    list-style: none;
    background-color: var(--fundomenu);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.25rem;
  }

  .dropdown-menu-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  /*----BARRA TOP -----*/
  .barratop{
    background-color: var(--barratop);
    font-family: 'Roboto-regular', Arial, sans-serif; /* Fonte global do site */
    color: var(--textobarra);
    padding: 8px;
  }
  /* Botões de acessibilidade */
  .botaoAcessibilidade {
    background: none;
    border: 1px solid var(--bs-light); /* Borda padrão */
    border-radius: 4px; /* Cantos arredondados */
    cursor: pointer;
    font-size: 12px;
    margin-right: 10px; /* Espaçamento à direita */
    color: var(--corclara); /* Cor do texto */
    transition: all 0.3s ease; /* Transição suave para hover */
    display: inline-flex; /* Flexbox para alinhar ícone e texto */
    align-items: center; /* Alinhamento vertical central */
    gap: 8px; /* Espaçamento entre ícone e texto */
    text-decoration: none; /* Remove sublinhado do link */
    height: 25px;

  }

  .botaoAcessibilidade i {
    display: inline-block; /* Garante que o ícone mantenha seu espaço */
  }
  /* Bordas no estado hover */
  .botaoAcessibilidade:hover {
    border-color: var(--corclara); /* Cor azul para borda no hover */
    color: var(--cordotexto); /* Texto mais escuro no hover */
  }

  /* Bordas no estado focus */
  .botaoAcessibilidade:focus {
    border-color: var(--bs-light); /* Azul escuro no foco */
    outline: none; /* Remove o outline padrão */
  }

  /*--- BARRA DE MENU---*/
  /* Estilo do cabeçalho */
  .container-fluid.rowbar.header {
    background-color: var(--fundomenu); /* Cor de fundo do cabeçalho */
    position: initial;
  }


  /* Estilo do menu principal */
  #mainmenu {
    background-color: var(--fundomenu); /* Cor de fundo do menu */
    font-size: 1.2em;
  }

  #mainmenu ul {
    list-style: none; /* Remove os marcadores */
    display: flex; /* Deixa os itens do menu em linha */
    justify-content: space-around; /* Distribui os itens igualmente */
    padding: 0;
    margin: 0;
    color: var(--textomenu); /* Cor do texto */
  }

  #mainmenu ul li {
    position: relative; /* Necessário para o efeito da linha animada */
    color: var(--efeitomenu); /* Cor do texto */
  }

  #mainmenu ul li a {
    text-decoration: none; /* Remove o sublinhado padrão */
    color: var(--efeitomenu); /* Cor do texto */
    padding: 10px 10px; /* Espaçamento interno */
    display: inline-block;
    transition: color 0.3s ease; /* Transição suave para hover */
  }

  #mainmenu ul li a:hover {
    color: var(--efeitomenu); /* Cor do texto ao passar o mouse */
  }

  /* Linha animada abaixo do item do menu */
  #mainmenu ul li :after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Inicialmente invisível */
    height: 3px;
    opacity: 0; /* Invisível inicialmente */
    background-color: var(--efeitomenu); /* Cor da linha */
    transition: width 0.3s ease, opacity 0.3s ease; /* Suavidade na animação */
  }

  #mainmenu ul li :hover:after {
    width: 100%; /* Linha cresce em hover */
    opacity: 1; /* Linha visível */
  }

  #mainmenu .dropdown-item:hover {
    background-color: var(--efeitomenu) !important;
    color: var(--fundomenu) !important;
  }

  /* Botão Toggler (menu responsivo) */
  .navbar-toggler {
    background-color: var(--fundomenu); /* Cor de fundo do botão */
    border-color: var(--efeitomenu); /* Cor da borda */
  }

  .navbar-toggler:focus {
    outline: none; /* Remove o contorno padrão */
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.5); /* Contorno com cor laranja transparente */
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    color: var(--efeitomenu); /* Isso não afetará o SVG diretamente */
  }

  /* Imagem da logo */
  .navbar-brand img {
    width: 100%;
    max-height: 90px; /* Altura máxima da logo */
  }

  /* Campo de busca */
  .busca {
    background-color: rgba(0, 123, 255, 0.5); /* Fundo com transparência */
    border: 1px solid var(--corclara); /* Borda */
    color: #ffffff; /* Cor do texto */
  }

  input.form-control::placeholder {
    color: #ffffff; /* Cor do texto do placeholder */
  }

  .social {
    border: none;
    color: var(--corclara); /* Cor do ícone */
  }

  .social:hover {
    background-color: var(--efeitomenu); /* Fundo no hover */
    color: var(--fundomenu); /* Cor do ícone no hover */
  }

  /* Imagem do Radar */
  .imageradar img {
    height: 38px;
    width: 100%;
    border-radius: 5px; /* Borda arredondada */
  }

  .divisorhr1 {
    border: none;
    background: linear-gradient(
      130deg,
      var(--corclara) 0%,
      var(--efeitomenu) 41.07%,
      var(--fundomenu) 76.05%
      );
    background-size: 200% 100%; /* Ajusta o tamanho horizontalmente maior */
    animation: gradient-move 3s linear infinite; /* Movimento contínuo */
    width: 100%;
    height: 5px;
    margin-left: 0px;
    padding: 0;
    box-shadow: 2px 4px 6px rgb(145, 216, 251);
    margin: 0px auto 0px;
    z-index: 10;
  }

  @keyframes gradient-move {
    0% {
      background-position: 0% 0%; /* Início (esquerda) */
    }
    100% {
      background-position: 100% 0%; /* Fim (direita) */
    }
  }


  .divisorhr {
    border:none;
    background: linear-gradient(
      130deg, var(--efeitomenu),var(--corclara) 41.07%,var(--fundomenu) 76.05%);
    width: 100%;
    height: 5px;
    margin-left: -20px;;
    padding: 0;;

    box-shadow: 2px 4px 6px rgb(145, 216, 251);
    margin: 0px auto 0px;
  }

  /* Estilo principal do módulo de notícias */
  .containerMaster.boxDestaque {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;

  }

  .containerGridNoticia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .grade1 {
    grid-column: 1 / 2;

  }

    .grade2 {
      grid-column: 2 / 3;
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      max-height: 500px;
    }

    .gradeMenor {
      display: flex;
      flex-direction: column;
      justify-content: space-stretch;
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

    .gradeMenor:hover {
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
      .tituloNoticia {
        color: #0056b3;
      }

    }

    /* Estilo para os artigos de destaque */
    article.noticaEmDestaque {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-center;
      background-color: #f5f5f5;
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
      height: 100%;
    }

    article:hover  {
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
      transition: box-shadow 0.3s ease;
      .tituloNoticia {
        color: #0056b3;
      }

    }

    .imagemEscala {
      display: flex;
      align-items: stretch;
      justify-content: center;
      overflow: hidden; /* Garante que a imagem ampliada fique dentro do contêiner */

    }

    .imagemEscala img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease; /* Suaviza a transição */

    }

    .imagemEscala a {
      width: 100%;
      height: 100%;
      display: block;
    }

    .imagemEscala a:hover header img {
      transform: scale(1.04); /* Amplia a imagem ligeiramente */
    }


    .velop {
      padding: 16px;
      background-color: rgba(255, 255, 255, 0.9);
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      box-sizing: border-box;
      z-index: 1;
    }

    .velop span {
      display: block;
      font-size: 14px;
      color: #666666;
      margin-bottom: 8px;
      z-index: 11;
    }

    .velop h3 {
      font-size: 18px;
      font-weight: bold;
      color: #333333;
      margin: 0;
      line-height: 1.4;
      z-index: 11;
    }

    /* Botões de compartilhamento */
    .compartilhamentoHome {
      position: absolute;
      top: 8px;
      right: 8px;
      display: flex;
      gap: 8px;
      z-index: 12;
    }

    .icone-compartilhamento {
      background-color: #007bff;
      color: #ffffff;
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
      z-index: 12;
    }

    .icone-compartilhamento:hover {
      background-color: #0056b3;
    }

    .icones-links {
      display: none;
    }

    .icones-links a {
      font-size: 14px;
      color: #007bff;
      text-decoration: none;
    }

    .icones-links a:hover {
      text-decoration: underline;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .containerGridNoticia {
        grid-template-columns: 1fr;
      }

      .grade1, .grade2 {
        grid-column: 1 / -1;
      }

      .grade2 {
        grid-template-rows: auto auto;
      }
    }

    /* Estilo para o container principal */
    .containerMaster {
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Estilo para a grade de notícias inferiores */
    .gradeNoticiasInferior {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-bottom: 20px;
    }

    /* Estilo para cada artigo (notícia) */
    .gradePequeno {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gradePequeno a, h1, h5{
      color: var(--tituloNoticia);
    }

    .gradePequeno:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Estilo para o título da categoria */
    .tituloCategoria {
      font-size: 14px;
      color: var(--tituloCategoria);
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }

    /* Estilo para o título da notícia */
    .tituloNoticia {
      font-size: 16px;
      color: var(--tituloNoticia);
      text-decoration: none;
      line-height: 1.5;
    }

    .tituloNoticia:hover {
      color: #0056b3;
      text-decoration: none;
    }

    .containerMais {
      text-align: center; /* Centraliza o botão na página */
      margin-top: 20px; /* Espaçamento superior */
    }

    .btnMais {
      display: inline-block; /* Para comportamento de bloco inline */
      position: relative; /* Necessário para posicionar a linha abaixo */
      font-size: 18px; /* Tamanho do texto */
      font-weight: bold; /* Negrito no texto */
      color: #007bff; /* Cor inicial do texto */
      text-decoration: none !important; /* Remove sublinhado padrão */
      padding: 5px 10px; /* Espaçamento interno */
      transition: color 0.3s ease; /* Transição suave da cor do texto */
    }

    .btnMais::after {
      content: ''; /* Cria a linha */
      position: absolute; /* Posiciona a linha em relação ao botão */
      bottom: -5px; /* Distância entre o texto e a linha */
      left: 0; /* Linha começa na esquerda */
      width: 30%; /* Largura inicial da linha */
      height: 3px; /* Espessura da linha */
      background-color: #007bff; /* Cor da linha */
      transition: width 0.3s ease; /* Transição suave no hover */
    }

    .btnMais:hover {
      color: #0056b3; /* Altera a cor do texto no hover */
    }

    .btnMais:hover::after {
      width: 100%; /* Linha se expande para ocupar toda a largura */
    }

    .tituloPrincipal {
      display: inline-block; /* Para comportamento de bloco inline */
      position: relative; /* Necessário para posicionar a linha abaixo */
      font-size: 2.25rem !important; /* Tamanho do texto */
      font-weight: 800;
      color: var(--tituloPrincipal);
      text-decoration: none !important; /* Remove sublinhado padrão */
      padding: 5px 15px; /* Espaçamento interno */
      transition: color 0.3s ease; /* Transição suave da cor do texto */
      margin: 10px 0 15px 0;
    }

    .tituloPrincipal::after {
      content: ''; /* Cria a linha */
      position: absolute; /* Posiciona a linha em relação ao botão */
      bottom: -5px; /* Distância entre o texto e a linha */
      left: 0; /* Linha começa na esquerda */
      width: 30%; /* Largura inicial da linha */
      height: 3px; /* Espessura da linha */
      background-color: #007bff; /* Cor da linha */
      transition: width 0.3s ease; /* Transição suave no hover */
    }

    .gallery-vereador {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        padding: 30px;
    }

    .vereador {
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Garante que os itens sejam distribuídos corretamente */
        height: 100%; /* Necessário para que Flexbox funcione */
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 10px;
    }

    .vereador:hover {
        box-shadow: 0 6px 10px rgba(90, 90, 90, 0.2);
    }

    .vereador-item {
        position: relative;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 10px;
        height: 100%;
    }
    .vereador-item:hover {
        box-shadow: 0 6px 10px rgba(90, 90, 90, 0.2);
    }

    .vereador-item img {
        width: 100%;
        height: auto;
        display: block;
    }
    .vereador-item img:hover {
        transform: scale(1.1);
    }

    .vereador-item .title {
        padding: 10px;
        font-size: 1rem;
        font-weight: bold;
        color: #333;
    }


    .diario-container {
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
    }

    .diario-item {
        position: block;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width: 50%;
        transition: box-shadow 0.3s ease; /* Suaviza a sombra no hover */
    }

    .diario-item:hover {
        box-shadow: 0 6px 10px rgba(90, 90, 90, 0.2);
    }

    .diario-item img {
        width: 102%; /* Pode ser ajustado para evitar o overflow */
        height: auto;
        display: block;
    }

    @media (max-width: 1024px) {
      .tituloPrincipal {
        margin-top: 10px;
        font-size: 1.875rem !important;
      }
    }

  .divlink {
    display: block;
      height: 100%;
      width: 100%;
      text-decoration: none;

  }

  .divlink:hover {
      display: block;
      height: 100%;
      width: 100%;
      text-decoration: none;
  }


  .img-card-section-1 {
    cursor: pointer;
    margin-left: 10px;
    height: 35px;

  }

  .text-card-section-1 {
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: auto;
    margin-top: auto;
    line-height: 14px;
  }

    .buttontrans{
    background-color: #EAEAEA;
    border-radius: 13px;
    box-shadow: 0px 4px 10px #bbbbbb;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 17px;
    height: 75px;
    margin-top: 10px;
    margin-bottom: 5px;

  }

  .buttontrans:hover{
    background-color: inherit;
    border-radius: 13px;
    box-shadow: 0px 4px 10px #bbbbbb;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 17px;
    height: 75px;
    margin-top: 10px;
    margin-bottom: 5px;

  }

  .cor-cat-1 {
    background-color: #EAEAEA;;
    color:#707070;
  }
  .cor-cat-1 svg{
    fill:#707070;
  }
  .cor-cat-1:hover {
    background-color: #707070;
    color: #EAEAEA;
  }

  .cor-cat-2  {
    background-color: #EAEAEA;;
    color:#2E7D32;
  }
  .cor-cat-2 svg {
    fill:#2E7D32;
  }
  .cor-cat-2:hover  {
    background-color: #2E7D32;
    color: #EAEAEA;
  }

  .cor-cat-3  {
    background-color: #EAEAEA;
    color:#21489B;
  }
  .cor-cat-3 svg{
    fill:#21489B;
  }
  .cor-cat-3:hover  {
    background-color: #21489B;
    color: #EAEAEA;
  }

  .cor-cat-4   {
    background-color: #EAEAEA;
    color:#931D19;
  }
  .cor-cat-4  svg{
    fill:#931D19;
  }
  .cor-cat-4:hover  {
    background-color: #931D19;
    color: #EAEAEA;
  }

  .cor-cat-5  {
    background-color: #EAEAEA;
    color:#C16C00;
  }
  .cor-cat-5 svg{
    fill:#C16C00;
  }
  .cor-cat-5:hover  {
    background-color: #C16C00;
    color: #EAEAEA;
  }

  .cor-cat-6  {
    background-color: #EAEAEA;
    color:#707070;
  }
  .cor-cat-6  svg{
    fill:#707070;
  }
  .cor-cat-6:hover   {
    background-color: #707070;
    color: #EAEAEA;
  }

  .cor-cat-7   {
    background-color: #EAEAEA;
    color:#C16C00;
  }
  .cor-cat-7 svg{
    fill:#C16C00;
  }
  .cor-cat-7:hover  {
    background-color: #C16C00;
    color: #EAEAEA;
  }

  .linksuteis {
  border-radius: 7px;
  padding: 5px;
  margin: 5px;
  width: 110px;
  display: inline-block;
  line-height: 100%;
  vertical-align: middle;
  text-align: center;
  min-height: 120px;

  }

  .linksuteis:hover {
    background-color: rgb(35, 35, 35, 0.1);
    color: var(--fundomenu);
    font-weight: bold;
  }

  .rodape {
    padding-top: 20px;
    background-color: var(--corrodape);
    line-height: 0.9;
  }

  .rodape p {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .img-icone-esquerda{
  float: left;
  border: transparent thin solid;
  padding: 5px;
  margin: 0px 3px 3px 0;
  max-width: 56px;
  filter: grayscale(0%);
    }

    .img-icone-esquerda:hover{
      filter: grayscale(50%);
    }
    .txt {
      line-height: 110%;
      font-weight: normal;
      font-size: 12px;
      color: var(--textorodape1);
      margin-top: 0;
      margin-bottom: 4px;

    }
    .titulotxt{
      line-height: 100%;
      color: var(--textorodape);
      font-weight: bold;
      font-size: 14px;
      margin-top: 0;
      margin-bottom: 4px;
    }

      #floating-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--fundomenu); /* Cor de fundo (azul padrão Bootstrap, pode alterar) */
    color: white; /* Cor do texto/ícone */
    border-radius: 50%; /* Deixa o botão arredondado */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 99; /* Garante que o botão estará acima de outros elementos */
  }

  #floating-button:hover {
      background-color: var(--efeitomenu); /* Cor ao passar o mouse */
  }

  /*--------------------------------------------------------------------------*/

  .header {
    position: -webkit-sticky; /* Necessário para funcionar no Safari */
    position: sticky;
    top: 0;
    z-index: 999;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*background-color: transparent; */
  }

  nav-bar {
    box-shadow: 2px 4px 6px rgb(105, 105, 105);
  }

  .back-to-top {
    background-color: var(--fundomenu);
    opacity: 0.8;
    border-radius: 65px;
    bottom: 14px;
    box-shadow: 2px 3px 10px -2px rgb(69, 98, 160);
    color: var(--cor5);
    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: 0px;
    padding-top: 10px;
    opacity: 1;
    z-index: 5;
    color: #000;
  }

   .back-to-top :hover{
    background-color: var(--efeitomenu);
   }

  /* ACESSO RAPIDO */
  .containeracesso {

   width: 100%;
    /* border-radius: 15px; */

    margin-bottom: 10px;
  }

  .fim > a {
    color: var(--tituloPrincipal);
  }
  .botaoacessohome {
    padding: 2px;
    color: var(--tituloPrincipal);
    border-radius: 10px;
    height: 100px;
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    font-weight: bold;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: rgb(255, 255,255, 0.9);
     border-radius: 10px;
     text-decoration: none;
     background-color: var(--cordapagina);

  }
  .botaoacessohome::after {
    background: linear-gradient(
      130deg, var(--corclara),var(--efeitomenu) 41.07%,var(--fundomenu) 76.05%);
      top: 10px;
      left: -1px;
      content: "";
      display: inline-block;
      height: 85%;
      position: absolute;
      width: 1px;
      border-radius: 2px;
  }

  .botaoacessohome:hover{
     background-color: var(--efeitomenu);
     opacity: 0.8;
     color: #ffff;
     cursor: pointer;
     z-index: 2;
     text-decoration: none;

  }

  .popUp {
      position: fixed;
      bottom: 10%;
      left: 50%;
      width: 300px;
      background-color: var(--efeitomenu);
      padding: 15px 20px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 1);
      display: inline-block;
      justify-content: space-between;
      align-items: center;
      z-index: 9999;
      border-top: 1px solid #ccc;
      opacity: 0.9;
      border-radius: 10px;
      color: #ffffff;
      transform: translateX(-50%);
  }

  .popUp p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: #333;
  }

  .popUp p a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
  }

  .popUp p a:hover {
      text-decoration: underline;
  }

   .popUp.hide {
      display: none; /* Oculta o pop-up */
  }

  .popUp button {
      background-color: #007bff;
      position: relative;;
      color: #fff;
      left: 50%;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      transform: translateX(-50%);
  }

  .popUp button:hover {
      background-color: #0056b3;
  }

.fotovereador {
    align-items: center;
    border: transparent thin solid;
    border-radius: 15px;
    padding: 8px;
    box-sizing: border-box;
    border-color: rgb(155, 155, 155);
    background-color: white;
    margin: 15px;
}
.fotovereador:hover {
    border-radius: 10px;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: rgb(155, 155, 155);
}

  .tituloSecundario {
      display: inline-block; /* Para comportamento de bloco inline */
      position: relative; /* Necessário para posicionar a linha abaixo */
      font-size: 1.55rem !important; /* Tamanho do texto */
      font-weight: 900;
      color: var(--tituloPrincipal);
      text-decoration: none !important; /* Remove sublinhado padrão */
      padding: 5px 15px; /* Espaçamento interno */
      transition: color 0.3s ease; /* Transição suave da cor do texto */
      margin: 10px 0 15px 0;
  }

  .tituloSecundario::after {
      content: ''; /* Cria a linha */
      position: absolute; /* Posiciona a linha em relação ao botão */
      bottom: -5px; /* Distância entre o texto e a linha */
      left: 0; /* Linha começa na esquerda */
      width: 100%; /* Igual ao tamanho do texto */
      height: 3px; /* Espessura da linha */
      background-color: var(--efeitomenu); /* Cor da linha */
      transition: width 0.3s ease; /* Transição suave no hover */
  }

  /* Estilização do container */
.efeitolinhas {
    position: relative;
    display: block;
    padding: 10px; /* Espaçamento opcional ao redor do texto */
    background-color: transparent;;
    width: max-content;
}

/* Texto dentro do container */
 .text-content {
    font-size: 24px;
    font-weight: bold;
    color: var(--fundomenu);
    background-color: transparent;
    margin-left: 5px;
    margin-bottom: 0;
}

/* Linha vertical */
 .vertical-line {
    border-radius: 5px;
    position: absolute;
    left: 10px;
    top: 0;
    width: 3.5px;
    height: 100%;
    min-height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 98, 56, 1) 100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
    -webkit-box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
    -moz-box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
}

.efeitolinhas:hover .vertical-line,
.text-content:hover + .vertical-line {
    transform: rotate(15deg);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 193, 7, 1) 100%);
}

.efeitolinhas:hover .horizontal-line,
.text-content:hover ~ .horizontal-line {
    background: linear-gradient(to right, rgba(255, 193, 7, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.efeitolinhas:hover .text-content,
.text-content:hover {
    font-style: italic;
}
/* Linha horizontal */
 .horizontal-line {
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 100%;
    min-width: 50px;
    height: 3.5px;
    background: linear-gradient(to right, rgba(0, 98, 56, 1) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
    -webkit-box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
    -moz-box-shadow: -2px 2px 5px 0px rgba(139,121,121,0.76);
}
