@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', '#F0ccdd')}};
    --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);
  }
/*--- new acesso rapido */

.rowbuttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

/* =========================
   QUICK ACCESS BUTTON
========================= */

.quick-access {
  --qa-color: #0d6efd;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;
  border-radius: 16px;

  background: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.25s ease;
}

.quick-access:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    135deg,
    var(--qa-color),
    color-mix(in srgb, var(--qa-color), #000 18%)
  );
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.quick-access:hover .qa-title,
.quick-access:hover .qa-subtitle,
.quick-access:hover .qa-icon {
  color: #fff;
}

/* ÍCONE */
.qa-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;
  color: var(--qa-color);

  background: color-mix(in srgb, var(--qa-color), #fff 85%);
  transition: all 0.25s ease;
}

.quick-access:hover .qa-icon {
  background: rgba(255, 255, 255, 0.22);
}

/* TEXTO */
.qa-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.qa-subtitle {
  font-size: 0.85rem;
  color: #6c757d;
}




/*fim acesso rapido */

    /* 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;
  }
  /*fundo de documentos-----------------*/
  .header-com-bg{
    position: relative;
    z-index: 1;
    overflow: hidden;

    --overlay-color: var(--tituloPrincipal); /* troque aqui ou via cor-cat-x */
    --overlay-opacity: 0.35;
    }

    .header-com-bg .bg-image{
    position: absolute;
    inset: 0;
    background-image: url('/images/docback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    }

    .header-com-bg .bg-overlay{
    position: absolute;
    inset: 0;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
    z-index: 1;
    }

    .header-com-bg .row,
    .header-com-bg h1,
    .header-com-bg .tituloSecundario{
    position: relative;
    z-index: 2;
    }

    .header-com-bg .tituloPrincipal{
    color: var(--textomenu);
    }


  /*------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;
  }
  /*-------deckara  inexistencia*/


    .decl-wrap{
    min-height: calc(100vh - 40px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 28px 14px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1f7 100%);
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .decl-card{
    width: min(920px, 100%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.06);
  }

  .decl-head{
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(56,72,143,.10), rgba(56,72,143,.04));
    border-bottom: 1px solid rgba(0,0,0,.06);
    display:flex;
    gap: 12px;
    align-items:flex-start;
    justify-content:space-between;
    flex-wrap: wrap;
  }

  .decl-title{
    margin:0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .2px;
    color:#1f2937;
  }

  .decl-subtitle{
    margin:6px 0 0 0;
    color:#6b7280;
    font-size: 13px;
  }

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

  .decl-btn{
    border: 1px solid rgba(0,0,0,.12);
    background:#fff;
    color:#1f2937;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    transition: transform .08s ease, background .2s ease;
    user-select:none;
  }
  .decl-btn:hover{ background: rgba(0,0,0,.03); }
  .decl-btn:active{ transform: scale(.98); }

  .decl-body{
    padding: 22px 20px;
  }

  .decl-badge{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17,24,39,.06);
    color:#111827;
    font-size: 12px;
    font-weight: 700;
  }

  .decl-section{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(0,0,0,.12);
  }

  .decl-h4{
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 800;
    color:#111827;
  }

  .decl-p{
    margin:0;
    color:#374151;
    line-height: 1.6;
    font-size: 14px;
  }

  .decl-url{
    word-break: break-all;
    color:#38488f;
    text-decoration:none;
    font-weight:700;
  }
  .decl-url:hover{ text-decoration: underline; }

  .decl-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }

  .decl-item{
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.02);
  }

  .decl-item small{
    display:block;
    color:#6b7280;
    font-weight:700;
    font-size: 11px;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .decl-item div{
    color:#111827;
    font-weight:700;
    font-size: 13px;
    word-break: break-word;
  }

  .decl-foot{
    padding: 14px 20px;
    background: rgba(0,0,0,.02);
    border-top: 1px solid rgba(0,0,0,.06);
    color:#6b7280;
    font-size: 12px;
    display:flex;
    justify-content:space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

#decl-print{
  position: relative;
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
}

/* IMPRIMIR (continua perfeito) */
@media print{
  body *{ visibility: hidden !important; }
  #decl-print, #decl-print *{ visibility: visible !important; }

  #decl-print{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
  }
}

  @media (max-width: 720px){
    .decl-grid{ grid-template-columns: 1fr; }
    .decl-head{ align-items:stretch; }
  }

  /* =======================================================================
   MÓDULO DE NOTÍCIAS (Destaques + Lista) — versão atualizada (sem conflito)
   Estrutura esperada (HTML/Blade):
     - .containerMaster.boxDestaque
       - .containerGridNoticia
         - .grade1  (notícia 1)
         - .grade2  (notícias 2 e 3)
       - .gradeNoticiasInferior (3 itens)
   Classes adicionais usadas:
     - .cardDestaque (nos 3 cards grandes)
     - .cardLista, .itemLista, .thumbLista, .textoLista (nos 3 cards de baixo)
   ======================================================================= */

/* Container do módulo */
.containerMaster.boxDestaque{
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  padding: 20px;
}

/* ======= GRID PRINCIPAL ======= */
.containerGridNoticia{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

/* Esquerda (notícia 1) controla a altura do conjunto */
.grade1{
  /* ~500px em telas médias; cresce em telas grandes; limita em telas enormes */
  height: clamp(420px, 50vh, 620px);
}
.grade1 > article{
  height: 100%;
}

/* Direita (notícias 2 e 3) sempre igual à altura da esquerda */
.grade2{
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

/* Não precisa forçar altura aqui */
.gradeMenor{
  display: block;
}
.gradeMenor > article{
  height: 100%;
}

/* ======= CARD COM IMAGEM + FUNDO DESFOCADO ======= */
.cardDestaque{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 100%;
}

/* camada do blur atrás */
.cardDestaque::before{
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.15);
  opacity: .9;
}

/* leve escurecida pra leitura */
.cardDestaque::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
}

/* conteúdo na frente */
.cardDestaque > a{
  position: relative;
  z-index: 2;
  height: 100%;
  display: block;
}

/* o header precisa ter 100% da altura */
.cardDestaque header{
  position: relative;
  height: 100%;
}

.cardDestaque img{
  position: absolute;
  inset: 0;                 /* cola nos 4 lados */
  width: 100%;
  height: 100%;
  object-fit: cover;        /* preenche sem distorcer */
  object-position: center;  /* centraliza a imagem */
  display: block;
}

/* texto por cima */
.cardDestaque .velop{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 10px;
  border-radius: 0 0 14px 14px;
  z-index: 3;
  color: #ccc;
  background-color: #7979797e;
}

.cardDestaque .tituloCategoria{
  display: inline-block;
  font-size: .85rem;
  background: var(--fundomenu);
  color: var(--textomenu);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: bold;
}

.cardDestaque .tituloNoticia{
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  display: -webkit-box;        /* corta título grande sem estourar altura */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--tituloNoticia);
}

/* hover */
.cardDestaque:hover img{
  transform: scale(1.03);
}

/* ======= LINHA DE BAIXO: 3 COLUNAS COM THUMB AO LADO ======= */
.gradeNoticiasInferior{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

/* card menor com mini-imagem */
.cardLista{
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

/* fundo desfocado também */
.cardLista::before{
  content: "";
  position: absolute;
  inset: -16px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.2);
  opacity: .75;
}
.cardLista::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.75); /* “vidro” claro */
}

/* link inteiro clicável com layout */
.itemLista{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 2px;
  color: inherit;
  text-decoration: none;
}

/* thumb pequena ao lado */
.thumbLista{
  width: 78px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.05);
  flex: none;
}
.thumbLista img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

/* texto */
.textoLista .badge{
  font-size: .85rem;
  padding: .35rem .6rem;
  background-color: var(--fundomenu);
  color: var(--textomenu) ;
}
.textoLista h5{
  margin: 6px 0 0 0;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--tituloPrincipal);
}

.cardLista:hover .thumbLista img{
  transform: scale(1.05);
}

/* Botão "Mais notícias" */
.containerMais{
  text-align: center;
  margin-top: 6px;
}

/* ======= RESPONSIVO ======= */

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

  /* Notícia 1 continua com altura boa no mobile */
  .grade1{
    height: clamp(320px, 45vh, 460px);
  }

  /* grade2 deixa de “forçar” altura e vira 2 blocos empilhados */
  .grade2{
    height: auto;                 /* <-- importante */
    display: grid;
    grid-template-rows: auto auto;/* duas linhas */
  }

  .gradeMenor{
    height: auto;                 /* <-- remove qualquer trava */
  }

  .gradeMenor > article{
    height: 320px;                /* altura padrão (ajuste se quiser) */
  }
}


@media (max-width: 768px){
  .containerMaster.boxDestaque{
    padding: 14px;
  }
}

    .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 */
    }


.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;
    }

        .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 */
    }
    @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: #ffffff;
    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;

  }

  /* CORES -----------------------------------------------------*/
    /* 0) rgb(240, 229, 26) */
    .cor-cat-0 {
    background-color: rgb(255, 255, 255);
    color: rgb(116, 110, 2);
    --qa-color: rgb(116, 110, 2);
    }
    .cor-cat-0 svg { fill: rgb(116, 110, 2); }
    .cor-cat-0:not(.semhover):hover {
    background-color: rgb(116, 110, 2);
    color: rgb(255, 255, 255);
    }

    /* 1) rgb(46, 125, 50) */
    .cor-cat-1 {
    background-color: rgb(255, 255, 255);
    color: rgb(46, 125, 50);
    --qa-color: rgb(46, 125, 50);
    }
    .cor-cat-1 svg { fill: rgb(46, 125, 50); }
    .cor-cat-1:not(.semhover):hover {
    background-color: rgb(46, 125, 50);
    color: rgb(255, 255, 255);
    }
    .cor-cat-1:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 2) rgb(193, 108, 0) */
    .cor-cat-2 {
    background-color: rgb(255, 255, 255);
    color: rgb(193, 108, 0);
    --qa-color: rg(193, 108, 0);
    }
    .cor-cat-2 svg { fill: rgb(193, 108, 0); }
    .cor-cat-2:not(.semhover):hover {
    background-color: rgb(193, 108, 0);
    color: rgb(255, 255, 255);
    }
    .cor-cat-2:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 3) rgb(162, 11, 11) */
    .cor-cat-3 {
    background-color: rgb(255, 255, 255);
    color: rgb(162, 11, 11);
    --qa-color: rgb(162, 11, 11);
    }
    .cor-cat-3 svg { fill: rgb(162, 11, 11); }
    .cor-cat-3:not(.semhover):hover {
    background-color: rgb(162, 11, 11);
    color: rgb(255, 255, 255);
    }
    .cor-cat-3:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 4) rgb(112, 112, 112) */
    .cor-cat-4 {
    background-color: rgb(255, 255, 255);
    color: rgb(112, 112, 112);
    --qa-color: rgb(112, 112, 112);
    }
    .cor-cat-4 svg { fill: rgb(112, 112, 112); }
    .cor-cat-4:not(.semhover):hover {
    background-color: rgb(112, 112, 112);
    color: rgb(255, 255, 255);
    }
    .cor-cat-4:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 5) rgb(25, 130, 196) */
    .cor-cat-5 {
    background-color: rgb(255, 255, 255);
    color: rgb(25, 130, 196);
    --qa-color: rgb(25, 130, 196);
    }
    .cor-cat-5 svg { fill: rgb(25, 130, 196); }
    .cor-cat-5:not(.semhover):hover {
    background-color: rgb(25, 130, 196);
    color: rgb(255, 255, 255);
    }
    .cor-cat-5:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 6) rgb(15, 91, 138) */
    .cor-cat-6 {
    background-color: rgb(255, 255, 255);
    color: rgb(15, 91, 138);
    --qa-color: rgb(15, 91, 138);
    }
    .cor-cat-6 svg { fill: rgb(15, 91, 138); }
    .cor-cat-6:not(.semhover):hover {
    background-color: rgb(15, 91, 138);
    color: rgb(255, 255, 255);
    }
    .cor-cat-6:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 7) rgb(28, 132, 176) */
    .cor-cat-7 {
    background-color: rgb(255, 255, 255);
    color: rgb(28, 132, 176);
    --qa-color: rgb(28, 132, 176);
    }
    .cor-cat-7 svg { fill: rgb(28, 132, 176); }
    .cor-cat-7:not(.semhover):hover {
    background-color: rgb(28, 132, 176);
    color: rgb(255, 255, 255);
    }
    .cor-cat-7:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 8) rgb(106, 76, 147) */
    .cor-cat-8 {
    background-color: rgb(255, 255, 255);
    color: rgb(106, 76, 147);
    --qa-color: rgb(106, 76, 147);
    }
    .cor-cat-8 svg { fill: rgb(106, 76, 147); }
    .cor-cat-8:not(.semhover):hover {
    background-color: rgb(106, 76, 147);
    color: rgb(255, 255, 255);
    }
    .cor-cat-8:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 9) rgb(22, 160, 133) */
    .cor-cat-9 {
    background-color: rgb(255, 255, 255);
    color: rgb(22, 160, 133);
    --qa-color: rgb(22, 160, 133);
    }
    .cor-cat-9 svg { fill: rgb(22, 160, 133); }
    .cor-cat-9:not(.semhover):hover {
    background-color: rgb(22, 160, 133);
    color: rgb(255, 255, 255);
    }
    .cor-cat-9:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 10) rgb(234, 52, 52) */
    .cor-cat-10 {
    background-color: rgb(255, 255, 255);
    color: rgb(234, 52, 52);
    --qa-color: rgb(234, 52, 52);
    }
    .cor-cat-10 svg { fill: rgb(234, 52, 52); }
    .cor-cat-10:not(.semhover):hover {
    background-color: rgb(234, 52, 52);
    color: rgb(255, 255, 255);

    }
    .cor-cat-10:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 11) rgb(24, 175, 26) */
    .cor-cat-11 {
    background-color: rgb(255, 255, 255);
    color: rgb(24, 175, 26);
    --qa-color: rgb(24, 175, 26);
    }
    .cor-cat-11 svg { fill: rgb(24, 175, 26); }
    .cor-cat-11:not(.semhover):hover {
    background-color: rgb(24, 175, 26);
    color: rgb(255, 255, 255);
    }
    .cor-cat-11:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 12) rgb(51, 15, 87) */
    .cor-cat-12 {
    background-color: rgb(255, 255, 255);
    color: rgb(51, 15, 87);
    --qa-color: rgb(51, 15, 87);
    }
    .cor-cat-12 svg { fill: rgb(51, 15, 87); }
    .cor-cat-12:not(.semhover):hover {
    background-color: rgb(51, 15, 87);
    color: rgb(255, 255, 255);
    }
    .cor-cat-12:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 13) rgb(45, 64, 139) */
    .cor-cat-13 {
    background-color: rgb(255, 255, 255);
    color: rgb(45, 64, 139);
    --qa-color: rgb(45, 64, 139);
    }
    .cor-cat-13 svg { fill: rgb(45, 64, 139); }
    .cor-cat-13:not(.semhover):hover {
    background-color: rgb(45, 64, 139);
    color: rgb(255, 255, 255);
    }
    .cor-cat-13:not(.semhover):hover svg { fill: rgb(255, 255, 255); }

    /* 14) rgb(111, 29, 27) */
    .cor-cat-14 {
    background-color: rgb(255, 255, 255);
    color: rgb(111, 29, 27);
    --qa-color: rgb(111, 29, 27);
    }
    .cor-cat-14 svg { fill: rgb(111, 29, 27); }
    .cor-cat-14:not(.semhover):hover {
    background-color: rgb(111, 29, 27);
    color: rgb(255, 255, 255);
    }
    .cor-cat-14:not(.semhover):hover svg { fill: rgb(255, 255, 255); }



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

   .divider-texto {
    position: relative;
    margin: 50px 0;
    }

    .divider-linha {
    height: 3px;
    border: 0;
    background-color: currentColor;
    }

    .divider-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background: currentColor;
    color: currentColor;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .32em;
    text-transform: uppercase;
    }


      /* Estilo para cada artigo (notícia) */
    .gradePequeno {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 4px;
      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);
    }

    .gradePequeno img {
        width: 100%;
        height: 100%;
        max-height: 300px;
        object-fit: cover;        /* preenche sem distorcer */
        object-position: top center;  /* centraliza a imagem */
        display: block;
    }
  .colsubtitulo {
  color: var(--cor4);
  text-align: right;
  font-weight: bold;
  font-size: 1.1em;
 }

.fx-slide-sides{
  position: relative;
  overflow: hidden;
}

/* camadas do efeito */
.fx-slide-sides::before,
.fx-slide-sides::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(0,0,0,.08);
  transition: width .35s ease;
  pointer-events: none; /* não bloqueia clique */
  z-index: 0;
}

.fx-slide-sides::before{
  left: 0;
}

.fx-slide-sides::after{
  right: 0;
}

/* ativa no hover */
.fx-slide-sides:hover::before,
.fx-slide-sides:hover::after{
  width: 50%;
}


.feito1:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}


    .linksuteis-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    justify-items: center;
    }


    .linksuteis{
    position: relative;
    width: 150px;
    max-width: 180px;
    height: 150px;

    background: #fff;                 /* fundo branco */
    box-shadow: 0 6px 18px rgba(0,0,0,.08); /* sombra suave */

    display: flex;
    flex-direction: column;
    align-items: center;     /* centraliza horizontal */
    justify-content: center; /* centraliza vertical */

    gap: 10px;

    text-align: center;
    text-decoration: none;
    color: #222;

    overflow: hidden;
    border-radius: 14px;
    border: 0px solid currentColor;

    transition: color .4s ease;
    }

    .linksuteis img{
        width: 48px;
        height: 48px;
        object-fit: contain;
        display: block;
        }

        .linksuteis span{
        font-weight: 700;
        font-size: .95rem;
        line-height: 1.2;
        }

        .linksuteis::before,
.linksuteis::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(0,0,0,.08);
  transition: width .4s ease;
  z-index: 0;
}

.linksuteis::before{
  left: 0;
}

.linksuteis::after{
  right: 0;
}

.linksuteis:hover{
  color: #0d6efd; /* pode ajustar */
}

.linksuteis:hover::before,
.linksuteis:hover::after{
  width: 50%;
}

.linksuteis img,
.linksuteis span{
  position: relative;
  z-index: 2;
}


  .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);
}
