/* Required height of parents of the Half Page Carousel for proper displaying carousel itself */

html,
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

html,
body,
.view {
    background-color: #FFF;
    color: #606060;
}

a {
    color: #606060;
}

a:hover {
    color: #606060;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 740px) {
    .full-page-intro {
        height: 1000px;
    }
}

/* Half Page Carousel itself*/

.carousel {
    height: 50%;
}

.carousel .carousel-inner {
    height: 100%;
}

.carousel .carousel-inner .carousel-item,
.carousel .carousel-inner .active {
    height: 100%;
}

/* Adjustment for mobile devices*/

@media (max-width: 776px) {
    .carousel {
        height: 100%;
    }
}

/* Navbar animation */

.navbar {
    /*background-color: #1a2e8d;*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#01632d+0,5b660f+50,01632d+100 */
    background: #F6F7F7;
    border-bottom: 1px solid rgba(0,0,0, 0.08);
    border-top: 1px solid rgba(0,0,0, 0.08);
}

/* Adding color to the Navbar on mobile */

@media only screen and (max-width: 768px) {
    .navbar {
        background-color: #1C2331;
    }
}

/* Footer color for sake of consistency with Navbar */

.footer-barra02{
    margin-left: 14px;
}

.page-footer {
    background-color: #1C2331;
}

.barra {
    width: 100%;
    height: auto;
}

.barra-base {
    padding: 0px 0px 3em 0px;
}

.barra-base-acesso-rapido {
    position: absolute;
    bottom: 0px;
}

.svg-overlay {
    position: absolute; /* Coloca o SVG sobre a div */
    top: 0;  /* Alinha ao topo da div */
    left: 0; /* Alinha à esquerda da div */
    width: 100px; /* Tamanho do SVG */
    height: 100px; /* Tamanho do SVG */
    z-index: 10; /* Garante que o SVG fique sobre a div */
}

.barra-licitacao-home {
    background: linear-gradient(rgb(255 255 255 / 100%), rgb(227 227 227 / 70%)), url(/imagens/fundo-licitacao.jpg) top center fixed;
    background-size: cover;
    padding: 20px 0px !important;
}

.barra-licitacao-home .container {
    background: rgba(255, 255, 255, 0.96);
    padding-bottom: 40px;
    border-radius: 3px;
}

.barra-concurso-home {
    background: linear-gradient(rgb(227 227 227 / 70%), rgb(255 255 255 / 100%)), url(/imagens/fundo-licitacao.jpg) top center fixed;
    background-size: cover;
    padding: 20px 0px !important;
}

.barra-concurso-home .container {
    background: rgba(255, 255, 255, 0.96);
    padding-bottom: 40px;
    border-radius: 3px;
}

.barra-obras-home {
    background: url(/imagens/barra-interna-obras.jpg) top fixed;
    padding: 20px 0px !important;
}
.barra-obras-home .container {
    background: rgba(255, 255, 255, 0.96);
    padding-bottom: 40px;
    border-radius: 3px;
}

.barra-turismo-home {
    background: url(/imagens/barra-interna-noticia.jpg) fixed center;
    padding: 20px 0px !important;
}

.barra-turismo-home .container {
    background: rgba(255, 255, 255, 0.96);
    padding: 0px 30px 40px 30px;
    border-radius: 3px;
}

.barra-topo-amarelo {
    width: 100%;
    height: 4px;
    background: #f7dc00;
    border-bottom: 1px solid #FFF;
}

.barra-noticia {
    background: url(/imagens/barra-noticias-home.jpg) top fixed;
}

h2.titulo-espacamento {
    margin: 50px 0px 15px 0px;
}

h2.titulo .icone {
    font-size: 14px;
    margin-bottom: 15px;
}
h2.titulo .icone span {
    width: 120px;
    height: 1px;
    margin-top: -10px;
    margin-left: 22px;
    background: linear-gradient(90deg, #4f5559 20%, rgba(0,0,0,0) 41%, rgba(2,2,2,0) 59%, #4f5559 80%);
    display: block;
    margin: auto;
    margin-top: -9px;
}

.barra-informativo {
    background: #00394F;
    padding: 10px 0;
    font-size: 1.5rem;
    /*    color: #7eb83f;*/
}

.barra-informativo a {
    color: #FFF;
}

/*-- Nova formatação dos botões de acesso rápido */
/* ====== Acesso Rápido – responsivo e alinhado ====== */

/* Grid dos itens: permite quebra e centraliza no mobile */
.hero .services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem .75rem; /* espaço entre itens */
}

/* Remove bullets e garante área clicável ocupar o <li> */
.hero .services li {
    list-style: none;
}

/* Âncora como flex container: mobile = coluna (ícone em cima) */
.servico-topo {
    display: flex;                /* reforça o display flex */
    flex-direction: column;       /* mobile: ícone em cima, texto embaixo */
    align-items: center;          /* centraliza ícone e texto */
    justify-content: center;
    text-align: center;           /* centraliza o texto no mobile */
    padding: .5rem .75rem;
    width: 100%;
    height: 100%;
    gap: .35rem;                  /* espaçamento entre ícone e texto */
    line-height: 1.15;
}

/* Ícone (Font Awesome) e imagem com mesmo “box” */
.servico-topo i,
.servico-topo .img-servico-topo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;                  /* tamanho base do “quadrado” do ícone */
    height: 40px;
    font-size: 32px;              /* efeito para <i> */
}

/* Imagens: ocupam o box e não “puxam” baseline */
.servico-topo .img-servico-topo {
    object-fit: contain;
}

/* Texto sempre em bloco */
.servico-topo span {
    display: block;
    font-weight: 600;
    white-space: normal;          /* permite quebra correta da linha */
}

/* ---------- Desktop (>= md) ---------- */
@media (min-width: 768px) {

    /* Volta para uma “linha” com distribuição entre os itens */
    .hero .services ul {
        justify-content: space-between;
        gap: 0;
    }

    /* Desktop: ícone à esquerda, texto à direita, alinhamento à esquerda */
    .servico-topo {
        flex-direction: row;        /* ícone à esquerda, texto à direita */
        align-items: center;
        text-align: left;           /* texto alinhado à esquerda */
        gap: .5rem;
    }

    /* Truque para alinhar TODOS os textos na mesma altura/coluna:
       reserva uma “coluna” fixa para o ícone. Assim, o início do texto
       fica alinhado entre os diferentes botões. */
    .servico-topo i,
    .servico-topo .img-servico-topo {
        width: 46px;                /* largura fixa da “coluna” do ícone */
        height: 46px;               /* dá presença visual semelhante ao <i> */
        font-size: 36px;
        margin-right: .5rem;        /* respiro entre ícone e texto */
        flex: 0 0 46px;             /* impede encolher/esticar e alinha as colunas */
    }

    /* Mantém o texto verticalmente centrado em relação ao ícone */
    .servico-topo span {
        align-self: center;
    }
}

/* Opcional: deixa o alvo clicável com uma leve área maior no toque */
.servico-topo {
    min-height: 56px;
}

/* Opcional: remove sublinhado e define transição suave */
.servico-topo {
    text-decoration: none;
    transition: transform .08s ease-in-out, opacity .12s ease-in-out;
}
.servico-topo:hover,
.servico-topo:focus {
    transform: translateY(-1px);
}
/* Fim nova formatação dos botões de acesso rápido */


/*h2.titulo span.noticia{
    background-color: #c12d22!important;
}
h2.titulo span.licitacao{
    background-color: #409343!important;
}
h2.titulo span.obras{
    background-color: #e08f1b!important;
}*/

h2.titulo-branco {
    color: #FFF;
}

h3.titulo {
    margin: 50px 0px 25px 0px;
}

/*- Páginas Internas -*/

h1.titulo-internas {
    margin: 25px 0px 25px 0px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}


.publicado-em {
    width: 100%;
    display: block;
    font-size: 12px;
    color: #939393;
    text-align: left;
    margin-bottom: 8px;
}

/*- Mais Notícias Home -*/
.noticia-list{
    width: 100%;
    height: auto;
    padding: 10px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
    transition: 0.3s;
}
.noticia-list:hover{
    background: rgba(0,0,0, 0.04);
}
.noticia-list .conteudo{
    width: 75%;
    float: right;
    padding-left: 10px;
}
.noticia-list .conteudo .categoria{
    color: rgba(0,0,0, 0.6);
    font-size: 13px;
    padding-bottom: 10px;
}
.noticia-list .conteudo .titulo{
    font-size: 22px;
    color: #132d67!important;
}
.noticia-list .imagem{
    width: 25%;
    float: left;
}
.noticias-encontradas{
    color: rgba(0,0,0, 0.7);
    font-size: 13px;
    text-align: right;
}



/*- Social Home -*/

.social-home .col {
    text-align: center;
    font-size: 26px;
}

.social-home .col a {
    width: 100%;
    display: block;
    color: #FFF;
}

.social-home .col i {
    padding: 15px;
}

.social-home .facebook {
    background: #3B5998;
    transition: 0.3s;
}

.social-home .facebook:hover {
    background: #436bdc;
}

.social-home .twitter {
    background: #2AA9E0;
    transition: 0.3s;
}

.social-home .twitter:hover {
    background: #34bdf8;
}

.social-home .instagram {
    background: #A81B83;
    transition: 0.3s;
}

.social-home .instagram:hover {
    background: #d321a4;
}

.social-home .youtube {
    background: #DF2926;
    transition: 0.3s;
}

.social-home .youtube:hover {
    background: #ff3f3c;
}

/* Noticias Home */


.padding-text-maior{
    padding: 44px 40px;
}

.padding-text-menor{
    padding: 0px 20px 20px 20px;
    font-size: 12px;
}

.noticia-grande-secretaria {
    font-size: 14px;
    font-family: Open Sans Bold;
    padding: 2px 5px; /* opcional: ajuste o espaçamento interno conforme necessário */
    color: white; /* opcional: ajuste a cor do texto para garantir a legibilidade */

}

.noticia-border-radius{
    border-radius: 20px !important;
}

.noticia-pequena-secretaria {
    font-family: Open Sans Bold;
    padding: 2px 5px; /* opcional: ajuste o espaçamento interno conforme necessário */
    color: white; /* opcional: ajuste a cor do texto para garantir a legibilidade */

}

.noticia-grande-titulo{
    font-size: 16px;
    line-height: 1.3em;
    font-family: Open Sans Bold;
    color: white;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
}

.noticia-pequena-titulo{
    line-height: 1.3em;
    font-family: Open Sans Bold;
    color: white;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
}

.foto-titulo{
    font-size: 20px;
    line-height: 1.3em;
    font-family: Open Sans Bold;
    color: white;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
}

.background-text {
    background-color: orange;
}

.categoria-noticia-home {
    position: absolute;
    z-index: 2;
    top: 0px;
}

/*- Notícias Home -*/
.noticias-principais .card {
    transition: 0.3s;
}
.noticias-principais .card .categoria {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.noticias-principais .card h4.card-title {
    color: #3F86A8 !important;
}
.noticias-principais .card .img-hover {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .0);
    /*opacity: 0.0;
    filter: alpha(opacity=00); /* For IE8 and earlier */
    border-radius: 4px;
    transition: 0.1s;
}
.noticias-principais .card .img-hover i {
    color: #FFF;
    font-size: 34px;
    padding: 0 5px;
    background: rgba(0, 0, 0, .3);
    opacity: 0.0;
    filter: alpha(opacity=00); /* For IE8 and earlier */
    transition: 0.3s;
    border-radius: 70px;
}
.noticias-principais .card .img-hover:hover {
    background: rgba(0, 0, 0, .08);
    /*opacity: 0.2;
    filter: alpha(opacity=20); /* For IE8 and earlier */
}
.noticias-principais .card .img-hover:hover i {
    opacity: 0.99;
    filter: alpha(opacity=99); /* For IE8 and earlier */
    padding: 20px 25px;
}
.noticias-principais .noticias .pequena .bloco {
    width: 100%;
    min-height: 400px;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0 0 8px 0;
    transition: 0.3s;
}
.noticias-principais .noticias .pequena .bloco:hover {
    opacity: 0.8;
}
.noticias-principais .noticias .pequena .bloco .imagem {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s;
    border-radius: 10px;
    top: 3px;
    left: 3px;
    z-index: 9999!important;

    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
}
.noticias-principais .noticias .pequena .bloco .base {
    width: 100%;
    height: auto;
    min-height: 170px;
    padding: 15px 15px;
    border-radius: 10px;
    bottom: 0px;
    right: 0px;
    z-index: 0!important;
}
.noticias-principais .noticias .pequena .bloco .base .descricao {
    margin-top: 0px;
}
.noticias-principais .noticias .pequena .bloco .base .descricao .titulo {
    width: 100%;
    font-size: 21px;
    color: #0057B8;
    line-height: 1.3em;
    text-align: left;
    padding: 10px 0 0 0;
    margin: 0;
}
.noticias-principais .noticias .pequena .bloco  .base .descricao .secretaria {
    font-weight: 400;
    font-size: 13px;
    color: #267e70;
    position: relative;
    font-weight: bold;
}
.noticias-principais .noticias .pequena .bloco  .base .descricao .data-publicacao {
    font-weight: 400;
    font-size: 13px;
    color: rgba(0,0,0, 0.5);
    position: relative;
    font-weight: bold;
    margin-top: 0px;
    float: right;
}

.area-info-noticia {
    position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: 70px;
    grid-template-rows: auto;
    grid-template-areas: "calendario title";
}

.noticia-calendario-data{
    background: #fff;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    border: solid 1px var(--main-bg-base-primaria);
    flex-flow: column-reverse;
    gap: 1px;
    top: 0;
    left: 0;
    transition: .3s;
}

.noticia-calendario-data .dia {
    font-size: 20px;
    color: var(--main-bg-base-primaria);
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.noticia-calendario-data .mes {
    margin-top: 10px;
    font-size: 11px;
    color: var(--main-bg-base-primaria);
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.noticia-titulo-home {
    grid-area: title;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    transition: .1s ease;
    align-self: center;
    margin-left: 10px;
    margin-bottom: 10px;
}

.p_info {
    grid-area: visualizacoes;
    font-size: 13px;
    font-weight: 400;
    margin-left: 10px;
    margin-bottom: 20px;
}

.p_botao {
    grid-area: btn;
    margin: unset;
    margin-left: auto;
    margin-right: 3px;
    padding: 0;
    width: 100%;
    border-radius: 25px;
    background: rgb(224, 224, 224);
    text-align: end;
    align-self: center;
}

.p_txt_btn{
    font-size: 11px;
    font-style: italic;
}

.imagem-container:hover .noticia-calendario-data{
    background-color: var(--main-bg-base-secundaria);
    border: solid 1px #fff;
}

.imagem-container:hover .mes, .imagem-container:hover .dia{
    color: #fff;
}

.imagem-container:hover .icone-noticia, .imagem-container:hover .p_txt_btn{
    color: var(--main-bg-base-secundaria);
}

.card-noticia-pequena {
    height: 350px;
    width: 100%;
    background-size: cover !important;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.card-noticia-pequena:hover{
    background: rgba(3, 115, 180, 0.1);
}

.card-noticia-pequena:hover .img-noticia-pequena{
    transform: scale(1.2);
}

#card-noticia-pequena:hover .card-noticia-pequena {
    height: 340px;
    transition: .5s;
}

#card-noticia-pequena {
    border-radius: 20px;
}

.img-noticia-pequena {
    width: 100%;
    height: 200px;
    align-self: center;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.container-img-noticia{
    height: auto;
    width: 95%;
    top: 10px;
    left: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 7px;
    position: absolute;
    overflow: hidden;
}

.card-noticia-grande {
    height: 500px;
    width: 100%;
    background-size: cover !important;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.card-noticia-grande:hover{
    background: rgba(3, 115, 180, 0.1);
}

.card-noticia-grande:hover .img-noticia-grande{
    transform: scale(1.2);
}

.img-noticia-grande {
    width: 100%;
    height: 350px;
    align-self: center;
    object-fit: fill;
    transition: transform 0.3s ease;
}

#card-noticia-grande:hover .card-noticia-grande {
    height: 490px;
    transition: .5s;
}

#card-noticia-grande {
    border-radius: 20px;
}

@media (max-width: 767px) {
    .video-home {
        top: 0px !important;
        left: 0px !important;
    }

    .card-video {
        height: 500px;
    }

    .area-info-video {
        grid-template-rows: 8em auto !important;
    }

    .area-info-noticia {
        padding: 0px;
        top: 220px;
    }

    .noticia-calendario-data{
        align-self: center;
    }

    .noticia-titulo-home {
        font-size: 15px;
    }
}

.video-home {
    position: relative;
    top: -30px;
    left: -30px;
}

.area-info-video {
    position: absolute;
    width: calc(100% - 40px);
    top: 20px;
    border-radius: 20px;
    padding: 20px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: 70px auto;
    grid-template-rows: 15em auto;
    grid-template-areas:
        "calendario title"
        "btn btn";
}

.area-info-video:hover .icone-video {
    color: #fff;
}

.icone-video {
    color: rgba(255,255,255,0.25);
}

.video-calendario-data{
    height: 70px;
    width: 70px;
    border-radius: 100%;
    border: solid 1px #fff;
    flex-flow: column-reverse;
    gap: 1px;
    top: 0;
    left: 0;
    transition: .3s;
}

.video-calendario-data .dia {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.video-calendario-data .mes {
    margin-top: 10px;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.video-titulo-home {
    grid-area: title;
    margin-top: 1em;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    transition: .1s ease;
    margin-left: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.video-assistir {
    grid-area: btn;
    margin: unset;
    margin-left: auto;
    margin-right: 3px;
    padding: 0;
    width: 100%;
    border-radius: 25px;
    text-align: end;
    align-self: end;
}

.video-txt-btn{
    font-size: 11px;
    font-style: italic;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 991px){

    #noticias-principais-home .imagem-grande {
        width: auto;
        height: 380px;
    }
    #noticias-principais-home .imagem-pequena {
        width: auto;
        height: 240px;
    }
}
@media (max-width: 767px){
    #noticias-principais-home .imagem-grande {
        width: auto;
        height: 300px;
    }
    #noticias-principais-home .imagem-pequena {
        width: auto;
        height: 240px;
    }
}

@media (max-width: 575px){
    #noticias-principais-home .imagem-grande {
        width: auto;
        height: 280px;
    }
    #noticias-principais-home .noticia-grande-secretaria {
        font-family: Open Sans Bold;
        padding: 2px 5px; /* opcional: ajuste o espaçamento interno conforme necessário */
        color: rgb(255, 255, 255); /* opcional: ajuste a cor do texto para garantir a legibilidade */

    }
    #noticias-principais-home .imagem-pequena {
        width: auto;
        height: 240px;
    }
    .padding-text-maior {
        padding: 14px 40px;
    }
}

/*- Secretarias Home -*/

.barra-secretarias-home {
    background: url(/imagens/barra-interna-noticia.jpg) top fixed;
    padding: 20px 0px !important;
}

.barra-secretarias-home .container {
    background: rgba(255, 255, 255, 0.96);
    padding-bottom: 40px;
    border-radius: 6px;
}

.barra-secretarias .bg-branco {
    background-color: #f5f5f5;
    padding: 0 10px;
}

h2.titulo-secretaria {
    font-size: 28px;
    text-align: center;
    margin-top: 65px;
    margin-bottom: 30px;
}

h2.titulo-secretaria a {
    height: 100%;
    padding: 15px 40px;
    background: #FFF;
    border-radius: 80px;
    overflow: hidden;
    color: #474747;
    font-weight: 300;
}

.secretarias-wrapper {
    height: calc(100% - 117px);
    display: flex;
    align-items: center;
    position: relative;
}

/*- Secretarias Home -*/
.barra-secretarias-home .container {
    background: rgba(255, 255, 255, 0);
    padding-bottom: 40px;
    border-radius: 6px;
}
.barra-secretarias-home .container h2.titulo a {
    font-family: 'Raleway', sans-serif;
    color: #FFF;
    font-weight: 600;
    z-index: 10;
}
.barra-secretarias-home .container h2.titulo a .icone {
    color: #FFF;
}
.barra-secretarias-home .container h2.titulo a span {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(0,0,0,0) 41%, rgba(2,2,2,0) 59%, rgba(255,255,255,1) 80%);
}

.barra-secretarias .bg-branco {
    background-color: #f5f5f5;
    padding: 0 10px;
}

h2.titulo-secretaria {
    font-size: 28px;
    text-align: center;
    margin-top: 65px;
    margin-bottom: 30px;
}

h2.titulo-secretaria a {
    height: 100%;
    padding: 15px 40px;
    background: #FFF;
    border-radius: 80px;
    overflow: hidden;
    color: #474747;
    font-weight: 300;
}

.secretarias-wrapper {
    height: calc(100% - 117px);
    display: flex;
    align-items: center;
    position: relative;
}

#secretarias-home .item {
    padding: 5px;
}
#secretarias-home .item .bloco {
    width: 100%;
    min-height: 272px;
    overflow: hidden;
    padding: 15px 10px;
    position: initial;
    background: rgba(0,0,0, 0.02);
    border-radius: 5px;

    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
}

#secretarias-home .item .bloco img {
    width: 105px;
    max-width: 90%;
    height: auto;
    border-radius: 100%;
    margin-bottom: 20px;
    border: 3px solid rgba(0,0,0, 0.8);
    ;
}

#secretarias-home .item .bloco .titulo {
    width: 100%;
    min-width: 100%;
    min-height: 80px;
    text-align: center;
    font-weight: 300 !important;
    font-size: 24px;
    color: #0044AF;
    /* display flex */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* centraliza na vertical */
    justify-content: center;
    align-items: center;
}

#secretarias-home .item .bloco .secretario {
    font-weight: 300 !important;
    margin-bottom: 1px;
    font-size: 13px;
    color: rgba(0,0,0, 0.8);
    text-align: center;
}

#secretarias-home .item .bloco .texto {
    width: auto;
    font-size: 16px;
    font-weight: 500 !important;
}

/* Secretarias view */
.row-secretaria {
    width: 570px !important;
    height: 300px !important;
}

.titulo-secretarias{
    margin-left: -12px;
    text-align: center;
    align-items: center;
    height: 85px;
}

.hr-secretaria {
    margin-left: -8px;
    width: 525px;
}

.flex-galeria-home {
    display: flex;
}

.img-galeria-home {
    width: 100%;
    height: 137px;
}

@media (max-width: 1199px){
    .box-secretaria{
        height: 450px;
    }

    .titulo-secretarias{
        margin-top: 2px;
        height: 70px;
        text-align: center;
        align-items: center;
    }

    .conteudo-principal-secretaria{
        margin-top: -210px;
        margin-left: 190px;
    }
    .hr-secretaria {
        margin-left: -12px;
        width: 880px;
    }

}

@media (max-width: 991px){
    .hr-secretaria{
        width: 640px;
        margin-left: -70px;
    }

    .footer-div {
        margin-left: 65px;
    }
}

@media (max-width: 767px){
    .conteudo-principal-secretaria{
        width: 250px;
        align-items: center;
        margin-left: 180px;
    }

    .hr-secretaria{
        width: 470px;
        margin-left: -8px;
    }

    .footer-div{
        width: 490px;
        margin-left: -3px;
    }
}

@media (max-width: 500px){
    .box-secretaria{
        height: 550px;
    }

    .titulo-secretarias{
        height: 102px;
    }

    .row-secretaria {
        height: 400px;
    }

    .row-secretaria img {
        width: 110px;
        height: 150px;
    }

    .conteudo-principal-secretaria {
        margin-top: -150px;
        margin-left: 112px;
        width: 180px;
        height: 320px;
    }

    .hr-secretaria{
        width: 350px;
        margin-left: 120px;
    }

    .footer-div {
        margin-left: -125px;
        height: 80px;
    }
}

@media (max-width: 395px){
    .box-secretaria{
        height: 650px;
    }

    .titulo-secretarias{
        height: 120px;
    }
    .row-secretaria {
        position: absolute;
    }

    .thumb-secretaria{
        text-align: center;
        margin-left: -130px;
    }

    .conteudo-principal-secretaria{
        position: absolute;
        margin-top: 150px;
        margin-left: 2px;
        text-align: left;
    }

    .hr-secretaria{
        display: none;
    }

    .footer-div {
        margin-top: 290px;
        margin-left: -225px;
    }
}

@media (max-width: 320px){
    .menu-lateral-flutuante{
        display: none;
    }
    .titulo-secretarias{
        height: 145px;
        margin-left: 5px;
    }

    .thumb-secretaria{
        margin-left: -140px;
    }

    .conteudo-principal-secretaria{
        margin-left: -20px;
    }

    .footer-div{
        top: -18px;
        left: -35px;
    }
}


/*- Obras Home -*/

#galeria-home .item {
    border-radius: 6px;
    overflow: hidden;
}

#galeria-home .item .titulo {
    width: 100%;
    min-height: 60px;
    background-color: rgba(0, 0, 0, .5);
    color: #FFF;
    font-size: 24px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px 15px;
    transition: 0.3s !important;
    font-weight: 400;
    border-radius: 0 0 3px 3px;
}

#galeria-home .item:hover .titulo {
    min-height: 100%;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 3px;
}

.area-info-galeria {
    position: relative;
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    grid-template-columns: 70px auto;
    grid-template-rows: auto 1fr 35px;
    grid-template-areas:
        "calendario title"
        ". ."
        "btn btn";
    height: 100%;
    min-width: 100%;
    transform: translateY(100%);
    transition: transform 1s ease;
}

#galeria-home .item:hover .area-info-galeria {
    display: grid;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    transform: translateY(0);
}


.galeria-calendario-data{
    background: #fff;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    border: solid 1px var(--main-bg-base-primaria);
    flex-flow: column-reverse;
    gap: 1px;
    top: 0;
    left: 0;
    transition: .3s;
}

.galeria-calendario-data .dia {
    font-size: 20px;
    color: var(--main-bg-base-primaria);
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.galeria-calendario-data .mes {
    margin-top: 10px;
    font-size: 11px;
    color: var(--main-bg-base-primaria);
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.galeria-titulo-home {
    grid-area: title;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    transition: .1s ease;
    align-self: center;
    margin-left: 10px;
    margin-bottom: 10px;
    color: white;
}

.icone-galeria {
    color: white;
}

.fotos-galeria-txt{
    color: white;
    font-size: 11px;
    font-style: italic;
}

.galeria-botao {
    grid-area: btn;
    margin: unset;
    margin-left: auto;
    margin-right: 3px;
    padding: 0;
    width: 100%;
    font-weight: 600;
    border-radius: 25px;
    text-align: end;
    align-self: center;
}

/*- Videos Home -*/

#videos-home {
    height: calc(100% - 117px);
}

#videos-home>.owl-stage-outer,
#videos-home>.owl-stage-outer div {
    height: 100%;
}


/*- Turismo Home -*/

.barra-turismo {
    background: url(/imagens/fundo-secretarias.jpg) top fixed;
    background-color: #f5f5f5;
    margin-bottom: -35px;
    margin-top: 25px;
    padding: 45px 0px;
}

/*- Programas Home -*/

.programas-home a img {
    margin: 3px 0px;
    opacity: 0.99;
    filter: alpha(opacity=99);
    /* For IE8 and earlier */
    transition: 0.3s;
}

.programas-home a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    /* For IE8 and earlier */
    margin: 3px 0px;
}

/*- Banners Finos Home -*/

#banner-fino-home {
    margin: 97px 0 0 0;
    position: relative;
}

#banner-fino-home.owl-theme .owl-nav {
    top: -40px !important;
}

/*- Acesso Rápido Home -*/

.barra.barra-menu-acesso-informacao .row {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#acessoRapido.nav-tabs {
    border-color: #5d97c2;
}

#acessoRapido.nav-tabs .nav-link:not(.active) {
    padding-top: .325rem;
    padding-bottom: .325rem;
    margin-top: 6px;
    margin-left: -1px;
    z-index: 1;
    color: #FFF !important;
    border-color: #5d97c2;
}

#acessoRapido.nav-tabs .nav-link.active {
    color: #515151 !important;
    background-color: #F8F8F8 !important;
    border-color: #dee2e6 #dee2e6 #fff;
    margin-left: -1px;
    margin-right: -1px;
    z-index: 2;
}

#acessoRapido.nav-tabs .nav-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: #dee2e6 #dee2e6 #fff;
    position: relative;
    font-weight: 400;
}

#acessoRapido.nav-tabs .nav-item:first-child a.nav-link {
    border-top-left-radius: .25rem;
}

#acessoRapido.nav-tabs .nav-item:last-child a.nav-link {
    border-top-right-radius: .25rem;
}

/* Barra de menu da home */

.barra-menu-acesso-informacao {
    /*background: #1a2e8d;*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5b660f+1,02632d+50,5b660f+100 */
    position: relative;
    text-align: center;
    padding: 0px 0 0;

    background: var(--main-bg-base-secundaria);
}

.img-servicos {
    width: 100%;
    max-height: 75px;
    padding: 12px 10px 5px 10px;
    text-align: center;
    margin-top: 10px;
}

.acessoRapido .item {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.acessoRapido .item a {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: block;
    width: 100%;
    height: 100%;
}

.acessoRapido .item a .bloco i {
    width: 100%;
    font-size: 28px;
    margin-left: 10px;
    color: rgba(255,255,255, 0.8);
    text-align: center;
    margin-top: 10px;
}

.acessoRapido .item a .bloco img {
    width: 100%;
    max-height: 100px;
    padding: 12px 10px 5px 10px;
}

.acessoRapido .item a .bloco .texto {
    width: 100%;
    font-size: 13px;
    color: rgba(255,255,255, 0.8);
    transition: 0.3s;
}

.acessoRapido .item a .bloco {
    height: 55px;
    font-weight: 500;
    transition: 0.3s;
    overflow: hidden;
    padding-left: 25px;
    padding-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1066AC;
    border-radius: 5px;
}

.acessoRapido.owl-carousel .owl-dots.disabled {
    display: none;
}

.acessoRapido.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 0;
}

.acessoRapido .item a:hover .bloco {
    border: 1px solid rgb(24, 71, 141);
    border-radius: 2px;
    background-color: #267E70;
}

/* Notícias da Home */


.noticias .pequena .bloco {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /*margin: 0px 0 26px 0;*/
}

.noticias .pequena .bloco:hover .imagem {
    transition: 0.3s;
    transform: scale(1.07);
}

.noticias .pequena .bloco:hover .imagem .imagem .base  {
    background: rgba(0, 0, 0, 0.6);
}

.noticias .pequena .bloco .imagem {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s;
}

.noticias .pequena .bloco .imagem .base {
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.noticias .pequena .bloco .imagem .base .barra-texto {
    text-align: center;
    width: 50px;
    height: 6px;
    float: left;
    background: #631633;
    margin: 40px 0 0 -110px;
}

.noticias .pequena .bloco .imagem .base .texto {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.noticias .pequena .bloco .imagem .base .texto h2 {
    width: 100%;
    font-size: 18px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3em;
    text-align: left;
    font-weight: bold;
    float: left;
}

.noticias .pequena .bloco .imagem .base h3 {
    text-align: left;
    width: auto;
    float: left;
    padding: 5px 0px;
    font-size: 12px;
    color: #FFF;
    border-bottom: 2px solid rgb(255, 222, 46);
    font-weight: 400;
}

.img-acesso-rapido {
    width: 20% !important;
    margin-right: 1rem;
}

.servicos-px-2 {
    padding-right: 2rem;
    padding-left: 2rem;
}

.barra-menu-acesso-informacao .owl-theme .owl-nav [class*="owl-"] {
    color: #FFF;
    background: rgba(255,255,255,0.2) !important;
}

.barra-menu-acesso-informacao .owl-theme .owl-nav [class*="owl-"] {
    color: #FFF;
    background: rgba(255,255,255,0.2) !important;
}

.owl-carousel.servicos .owl-nav {
    top: -120px !important;
}

#eventos-home .item {
    padding: 3px;
}
#eventos-home .item .bloco {
    background: rgba(0,0,0, 0.01);
    border-radius: 6px;
    overflow: hidden;

    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
}
#eventos-home .item .bloco .imagem {
    width: 100%;
    height: 250px;
    background-size: cover!important;
    position: relative;
}
#eventos-home .item .bloco .imagem .descricao {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0,0,0, 0.8);
    padding: 10px;
}
#eventos-home .item .bloco .imagem .data-evento {
    font-size: 16px;
    color: rgba(255,255,255, 1);
    margin-bottom: 5px
}
#eventos-home .item .bloco .imagem .titulo {
    font-size: 14px;
    color: rgba(255,255,255, 0.7);
}

#eventos-home .box-calendario {
    width: 50%;
    min-width: 100%;
    min-height: 80px;
    float: left;
    text-align: center;
    font-weight: 300 !important;
    font-size: 24px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0,0,0, 0.08);
    font-size: 55px;
}
#eventos-home .box-data {
    width: 50%;
    min-width: 100%;
    min-height: 80px;
    float: left;
    text-align: center;
    font-weight: 300 !important;
    font-size: 24px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(3, 115, 180);
    text-align: center;
}

#eventos-home .box-conteudo {
    width: 100%;
    height: auto;
    min-height: 195px;
    background-color: rgba(0,0,0, 0.03);
    padding: 25px 25px 20px 15px;
}
#eventos-home .box-conteudo .texto {
    width: 100%;
    min-width: 100%;
    height: auto;
    font-size: 18px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgba(0,0,0, 0.7);
}
#eventos-home .box-conteudo span {
    width: 100%;
    min-width: 100%;
    font-size: 13px;
    display: block;
    color: rgba(0,0,0, 0.4);

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

/*- Owl Carousel Modificações -*/

.owl-theme .owl-nav {
    top: -75px !important;
    position: absolute !important;
    right: 0px !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    font-size: 35px !important;
}

/*- Containers porcentagens -*/

.container-90 {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-85 {
    width: 85%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-80 {
    width: 80%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-75 {
    width: 75%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*- Modificações no Framework -*/

.btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.card {
    -webkit-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, .0), 0 0px 0px 0 rgba(0, 0, 0, .0);
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, .0), 0 0px 0px 0 rgba(0, 0, 0, .0);
    border: 0;
}


/* .barra.barra-menu-acesso-informacao div:not(.overlay) {
    z-index: 10;
} */

.barra-menu-acesso-informacao .row {
    box-shadow: -1px 0px 11px -3px rgba(0, 0, 0, 0.2);
}

.barra-menu-acesso-informacao .btn-nav {
    background-color: rgba(255, 255, 255, .2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.3s;
}

.barra-menu-acesso-informacao .btn-nav a {
    width: 100%;
    height: 100%;
    display: block;
    color: #FFF;
}

.barra-menu-acesso-informacao .btn-nav:hover {
    background-color: rgba(255, 255, 255, .4);
}

.barra-menu-acesso-informacao .btn-nav:hover>a>i.fa {
    text-shadow: 0 1px #000;
}

.barra-menu-acesso-informacao .btn-nav i {
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Barra de menu da home */

/* Formulário de Busca */

.formulario-busca {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0px;
    width: 230px;
    background-color: #095256;
    padding: 9px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    z-index: 9999;
}

.formulario-busca input[type="search"] {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 24px;
    margin: 0;
    color: #3a3d41;
    padding: 10px 12px;
    border: none;
    width: 100%;
    outline: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    z-index: 2;
}

.formulario-busca button {
    background: #ffffff;
    border: none;
    float: right;
    margin-top: -32px;
    margin-right: 15px;
    position: relative;
    z-index: 3;
}

.formulario-busca button i {
    color: #3a6341;
    font-size: 16px;
}

.formulario-busca.active {
    visibility: visible !important;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

/* Tabs */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: #afafaf !important;
    font-size: 16px;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color:  #fff #fff #24B267 #fff;
    border-width: 2px;
    color: rgba(0, 0, 0, .5);
    font-weight: bold;
}

.nav-tabs {
    border-bottom: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

#myTabContent {
    margin-bottom: 20px;
}

/* Barras Internas */

.barra-breadcrumb {
    background: #E9ECEF;
    height: 48px;
}

.barra-internas-noticia {
    background: url(/imagens/barra-interna-noticia.jpg) fixed center;
    /*border-bottom: 4px solid #c12d22;*/
}

.barra-internas-obras {
    background: url(/imagens/barra-interna-obras.jpg) fixed center;
    /*border-bottom: 4px solid #e08f1b;*/
}

.barra-internas-galeria {
    background: url(/imagens/barra-interna-galeria.jpg) fixed center;
    /*border-bottom: 4px solid #942af7;*/
}

.barra-internas-videos {
    background: url(/imagens/barra-interna-videos.jpg) fixed center;
    /*border-bottom: 4px solid #942af7;*/
}

.barra-internas-secretarias {
    background: url(/imagens/barra-interna-secretarias.jpg) fixed center;
    /*border-bottom: 4px solid #942af7;*/
}

.barra-internas-licitacao {
    background: url(/imagens/barra-interna-licitacao.jpg) fixed center;
    /*border-bottom: 4px solid #a6461d;*/
}

.barra-internas-servicos {
    background: url(/imagens/barra-interna-servicos.jpg) fixed center;
    /*border-bottom: 4px solid #a6461d;*/
}

.barra-internas-eventos {
    background: url(/imagens/barra-interna-eventos.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-gabinete {
    background: url(/imagens/barra-interna-gabinete.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-turismo {
    background: url(/imagens/barra-interna-turismo.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-pagina {
    background: url(/imagens/barra-interna-pagina.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-localizacao {
    background: url(/imagens/barra-interna-localizacao.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-faq {
    background: url(/imagens/barra-interna-faq.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-contato {
    background: url(/imagens/barra-interna-contato.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-concursos {
    background: url(/imagens/barra-interna-concursos.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-entidades {
    background: url(/imagens/barra-interna-entidades.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-legislacao {
    background: url(/imagens/barra-interna-legislacao.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-atos {
    background: url(/imagens/barra-interna-contato.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-busca {
    background: url(/imagens/barra-interna-pagina.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-cadastro {
    background: url(/imagens/barra-interna-pagina.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-autenticacao {
    background: url(/imagens/barra-interna-pagina.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-boletins {
    background: url(/imagens/barra-interna-contato.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-diariooficial {
    background: url(/imagens/barra-interna-contato.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-iluminacao {
    background: url(/imagens/barra-interna-iluminacao.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

.barra-internas-links {
    background: url(/imagens/barra-interna-links.jpg) fixed center;
    /*border-bottom: 4px solid #5daf05;*/
}

/* Lista de imagens */

.image-list a .item {
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
    border: 15px solid #FFF;
}

.image-list a .item .imagem {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-size: cover!important;
}

.image-list a .item .titulo {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
    color: #2C8CB7;
    bottom: 0px;
    left: 0px;
    padding: 10px 15px;
    transition: 0.3s !important;
}

.image-list .item:hover .titulo {
    min-height: 96.1%;
    background-color: rgba(0, 0, 0, .04);
}

/* Paginação */

.pagination .page-item .page-link {
    border: 1px solid #dee2e6;
    color: #727577;
    font-weight: 400;
}

.pagination .page-item:first-child .page-link {
    margin-left: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.pagination .page-item:last-child .page-link {
    margin-right: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.programas-bt {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    margin-bottom: 4px;
    border-radius: 6px;
    overflow: hidden;
}

/* Home Turismo */

#home-turismo .item {
    border-radius: 6px;
    overflow: hidden;
}

#home-turismo .item .descricao {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .7);
    padding: 15px 15px 15px 30px;
}

#home-turismo .item .descricao * {
    color: #FFF;
}

#home-turismo .item .descricao h3 {
    margin-top: 5px;
    font-size: 24px;
    font-weight: 400;
}

#facebookShareLink {
    background: #4267b2;
    border: 1px solid #4267b2;
    border-radius: 3px !important;
    color: #fff;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    -moz-user-select: none;
    white-space: nowrap;
    font-size: 12.2px;
    font-weight: bold;
    position: relative !important;
}

#facebookShareLink:hover {
    background-color: #395896;
}

.carousel .carousel-control-next-icon,
.carousel .carousel-control-prev-icon {
    width: 52px;
    height: 52px;
}

/* Página Licitação */

table.table-valigned td {
    vertical-align: middle;
}

a.info {
    font-weight: bold;
}

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

/* Filtro busca avançada Documentos */

ul.unstyled {
    list-style: none;
    padding-left: 0;
}

/* Páginas Centralizadas */

ul.list-group.status li.list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#accordion .card .card-header a h5 {
    margin-bottom: 0;
}

/* WhatsApp botão*/
.whatsapp-share-button {
    display: inline-block;
    width: 25px;
    height: 20px;
    margin: 0px;
    background-size: 100% 100%; /* ou 'contain' */
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI2MHB4IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA2MCA2MCIgd2lkdGg9IjYwcHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGUvPjxkZXNjLz48ZGVmcy8+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBpZD0ic29pY2FsIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSI+PGcgaWQ9InNvY2lhbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTk3My4wMDAwMDAsIC01MzguMDAwMDAwKSI+PGcgaWQ9InNsaWNlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTczLjAwMDAwMCwgMTM4LjAwMDAwMCkiLz48ZyBmaWxsPSIjNTdCQTYzIiBpZD0ic3F1YXJlLWZsYXQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3My4wMDAwMDAsIDEzOC4wMDAwMDApIj48cGF0aCBkPSJNODAyLjk5NTkzNyw0MDAgTDg1Ny4wMDQwNjMsNDAwIEM4NTguNjU4NjczLDQwMCA4NjAsNDAxLjMzNzMxIDg2MCw0MDIuOTk1OTM3IEw4NjAsNDU3LjAwNDA2MyBDODYwLDQ1OC42NTg2NzMgODU4LjY2MjY5LDQ2MCA4NTcuMDA0MDYzLDQ2MCBMODAyLjk5NTkzNyw0NjAgQzgwMS4zNDEzMjcsNDYwIDgwMCw0NTguNjYyNjkgODAwLDQ1Ny4wMDQwNjMgTDgwMCw0MDIuOTk1OTM3IEM4MDAsNDAxLjM0MTMyNyA4MDEuMzM3MzEsNDAwIDgwMi45OTU5MzcsNDAwIFoiIGlkPSJzcXVhcmUtNDkiLz48L2c+PGcgZmlsbD0iI0ZGRkZGRiIgaWQ9Imljb24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE4Mi4wMDAwMDAsIDE1MC4wMDAwMDApIj48cGF0aCBkPSJNODIxLjA3MTI2Miw0MzQuMjIxMDQ2IEM4MTguMjEwODMxLDQzNC4yMjEwNDYgODE1LjUyMzU2OSw0MzMuNDg5OTY5IDgxMy4xODU2LDQzMi4yMDY4OTIgTDgwNC4xNTM4NDYsNDM1LjA3NjkyMyBMODA3LjA5ODA5Miw0MjYuMzkxODc3IEM4MDUuNjEzMDQ2LDQyMy45NTIzNjkgODA0Ljc1NzUzOCw0MjEuMDkxNTY5IDgwNC43NTc1MzgsNDE4LjAzMzYgQzgwNC43NTc1MzgsNDA5LjA5MzQxNSA4MTIuMDYxMjkyLDQwMS44NDYxNTQgODIxLjA3MTYzMSw0MDEuODQ2MTU0IEM4MzAuMDgwODYyLDQwMS44NDYxNTQgODM3LjM4NDYxNSw0MDkuMDkzNDE1IDgzNy4zODQ2MTUsNDE4LjAzMzYgQzgzNy4zODQ2MTUsNDI2Ljk3Mzc4NSA4MzAuMDgxMjMxLDQzNC4yMjEwNDYgODIxLjA3MTI2Miw0MzQuMjIxMDQ2IFogTTgyMS4wNzEyNjIsNDA0LjQyNDEyMyBDODEzLjUwNzkzOCw0MDQuNDI0MTIzIDgwNy4zNTU4MTUsNDEwLjUyOTM1NCA4MDcuMzU1ODE1LDQxOC4wMzM2IEM4MDcuMzU1ODE1LDQyMS4wMTE0NDYgODA4LjMyNjUyMyw0MjMuNzY5MjMxIDgwOS45NjgxMjMsNDI2LjAxMzA0NiBMODA4LjI1NDg5Miw0MzEuMDY3MDc3IEw4MTMuNTI1MjkyLDQyOS4zOTE4NzcgQzgxNS42OTEyLDQzMC44MTM3ODUgODE4LjI4NTQxNSw0MzEuNjQzMDc3IDgyMS4wNzEyNjIsNDMxLjY0MzA3NyBDODI4LjYzMzQ3Nyw0MzEuNjQzMDc3IDgzNC43ODY3MDgsNDI1LjUzODIxNSA4MzQuNzg2NzA4LDQxOC4wMzM5NjkgQzgzNC43ODY3MDgsNDEwLjUyOTcyMyA4MjguNjMzNDc3LDQwNC40MjQxMjMgODIxLjA3MTI2Miw0MDQuNDI0MTIzIEw4MjEuMDcxMjYyLDQwNC40MjQxMjMgWiBNODI5LjMwODgsNDIxLjc2MTcyMyBDODI5LjIwODM2OSw0MjEuNTk2Njc3IDgyOC45NDE3ODUsNDIxLjQ5Njk4NSA4MjguNTQyNjQ2LDQyMS4yOTg3MDggQzgyOC4xNDI0LDQyMS4xMDA0MzEgODI2LjE3NTg3Nyw0MjAuMTQwMDYyIDgyNS44MDk5NjksNDIwLjAwODI0NiBDODI1LjQ0Mjk1NCw0MTkuODc2MDYyIDgyNS4xNzYsNDE5LjgwOTIzMSA4MjQuOTA5Nzg1LDQyMC4yMDY1MjMgQzgyNC42NDM1NjksNDIwLjYwMzgxNSA4MjMuODc3MDQ2LDQyMS40OTY5ODUgODIzLjY0MzMyMyw0MjEuNzYxNzIzIEM4MjMuNDA5OTY5LDQyMi4wMjY4MzEgODIzLjE3Njk4NSw0MjIuMDYwMDYyIDgyMi43NzcxMDgsNDIxLjg2MTQxNSBDODIyLjM3NzYsNDIxLjY2MzEzOCA4MjEuMDg4OTg1LDQyMS4yNDQwNjIgODE5LjU2MTEwOCw0MTkuODkyMzA4IEM4MTguMzcyNTU0LDQxOC44NDA3MzggODE3LjU2OTg0Niw0MTcuNTQyNTIzIDgxNy4zMzY4NjIsNDE3LjE0NDg2MiBDODE3LjEwMzUwOCw0MTYuNzQ3OTM4IDgxNy4zMTIxMjMsNDE2LjUzMzQxNSA4MTcuNTEyMjQ2LDQxNi4zMzU4NzcgQzgxNy42OTIwNjIsNDE2LjE1NzkwOCA4MTcuOTEyMTIzLDQxNS44NzI0OTIgODE4LjExMjI0Niw0MTUuNjQwOTg1IEM4MTguMzEyMzY5LDQxNS40MDkxMDggODE4LjM3ODgzMSw0MTUuMjQ0MDYyIDgxOC41MTE3NTQsNDE0Ljk3ODk1NCBDODE4LjY0NTQxNSw0MTQuNzE0MjE1IDgxOC41Nzg1ODUsNDE0LjQ4MjcwOCA4MTguNDc4NTIzLDQxNC4yODM2OTIgQzgxOC4zNzg0NjIsNDE0LjA4NTQxNSA4MTcuNTc4MzM4LDQxMi4xMzI5MjMgODE3LjI0NTI5Miw0MTEuMzM4MzM4IEM4MTYuOTEyMjQ2LDQxMC41NDQ0OTIgODE2LjU3OTU2OSw0MTAuNjc2Njc3IDgxNi4zNDU4NDYsNDEwLjY3NjY3NyBDODE2LjExMjQ5Miw0MTAuNjc2Njc3IDgxNS44NDU5MDgsNDEwLjY0MzQ0NiA4MTUuNTc5MzIzLDQxMC42NDM0NDYgQzgxNS4zMTI3MzgsNDEwLjY0MzQ0NiA4MTQuODc5MjYyLDQxMC43NDI3NjkgODE0LjUxMjYxNSw0MTEuMTM5NjkyIEM4MTQuMTQ2MzM4LDQxMS41MzY5ODUgODEzLjExMzYsNDEyLjQ5Njk4NSA4MTMuMTEzNiw0MTQuNDQ5MTA4IEM4MTMuMTEzNiw0MTYuNDAxNiA4MTQuNTQ1ODQ2LDQxOC4yODggODE0Ljc0NjMzOCw0MTguNTUyMzY5IEM4MTQuOTQ2MDkyLDQxOC44MTY3MzggODE3LjUxMTg3Nyw0MjIuOTUzNiA4MjEuNTc2NzM4LDQyNC41NDI0IEM4MjUuNjQzMDc3LDQyNi4xMzA4MzEgODI1LjY0MzA3Nyw0MjUuNjAwOTg1IDgyNi4zNzYzNjksNDI1LjUzNDg5MiBDODI3LjEwODU1NCw0MjUuNDY4OCA4MjguNzQxMjkyLDQyNC41NzUyNjIgODI5LjA3NTQ0Niw0MjMuNjQ4ODYyIEM4MjkuNDA4MTIzLDQyMi43MjE3MjMgODI5LjQwODEyMyw0MjEuOTI3MTM4IDgyOS4zMDg4LDQyMS43NjE3MjMgTDgyOS4zMDg4LDQyMS43NjE3MjMgWiIgaWQ9IndoYXRzYXBwIi8+PC9nPjwvZz48L2c+PC9zdmc+");
    background-repeat: no-repeat;
    background-position: center;
}

.acessoRapido .owl-nav {
    top: 27px !important;
    width: 100%!important;
}
.acessoRapido .owl-nav .owl-next {
    right: -20px;
}
.acessoRapido .owl-nav .owl-prev{
    left: 0px!important;
}

.acessoRapido .owl-nav [class*="owl-next"] {
    position: absolute;
    right: -40px!important;
}
.acessoRapido .owl-nav [class*="owl-prev"] {
    position: absolute;
    left: -40px!important;
}

.exprefeito {
    flex-wrap: wrap;
}
.exprefeito .bloco {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 25px 20px;
    margin: 0 0 20px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.list-group-item a{
    width: 100%;
    height: 100%;
    display: block;
}
.list-group-item a .badge {
    float: right;
}

.home-enquete{
    width: 100%;
    min-height: 300px;
    height: auto;
    background: rgba(0,0,0, 0.02);
    border-radius: 4px;
    overflow: hidden;
}
.home-enquete .titulo{
    background: rgba(0,0,0, 0.08);
    padding: 10px;
}
.home-enquete .msg-votado{
    font-size: 13px;
    color: #000;
    padding-top: 20px;
}
.home-enquete ul{
    padding: 0px;
    margin: 0px;
    padding: 10px;
    list-style: none;
}
.home-enquete ul li{
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0, 0.06);
}
.home-enquete ul li .nome{
    float: left;
    font-size: 13px;
    color: #000;
    padding-top: 10px;
}
.home-enquete ul li .botao{
    float: right;
}

.list-licitacao .Aberta{
    background: #28a745!important;
}

.list-licitacao .Em{
    background: #ffc107!important
}

.list-licitacao .Homologada{
    background: #dc3545!important;
}

.list-licitacao .Cancelada{
    background: #dc3545!important;
}

.list-licitacao .Deserta{
    background: #dc3545!important;
}

.list-licitacao .Revogada{
    background: #dc3545!important;
}

.list-licitacao .Fracassada{
    background: #dc3545!important;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*- Social Home -*/
.social-home {
    height: 240px;
}

.social-home .col-12 {
    text-align: center;
    font-size: 26px;
}

.social-home .col-12 a {
    width: 100%;
    height: 100%;
    display: block;
    color: #FFF;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.social-home .col-12 i {
    padding: 15px;
    font-size: 22px;
}

.social-home .facebook {
    background: #3B5998;
    transition: 0.3s;
}

.social-home .facebook:hover {
    background: #436bdc;
}

.social-home .twitter {
    background: #2AA9E0;
    transition: 0.3s;
}

.social-home .twitter:hover {
    background: #34bdf8;
}

.social-home .instagram {
    background: #A81B83;
    transition: 0.3s;
}

.social-home .instagram:hover {
    background: #d321a4;
}

.social-home .youtube {
    background: #DF2926;
    transition: 0.3s;
}

.social-home .youtube:hover {
    background: #ff3f3c;
}

#menu-topo ul.navbar-nav > li {
    margin-right: 9px;
}

#barra-acessibilidade .texto .alterar a{
    color: rgba(255,255,255, 0.8);
    padding: 5px 15px;
    background: rgba(255,255,255, 0.08);
    margin-right: 10px;
    border-radius: 10px;
}


/* Menu */
.menu-fixo  {
    height: 61px!important;
    position:fixed !important;
    transition: 0.3s;
    top: 0;
    z-index: 99;

    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.20);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.20);
}
.menu-fixo .topo-logo-box img {
    padding: 5px 0px;
    transition: 0.2s;
    width: 105px;
}
.menu-fixo .navbar.scrolling-navbar {
    margin-top: 0px;
    transition: 0.2s;
}
.menu-fixo .navbar.scrolling-navbar.top-nav-collapse {
    padding-top: 0px;
    padding-bottom: 0px;
    transition: 0.2s;
}

#galeria-home .owl-nav [class*="owl-"] {
    border-radius: 4px 0 0 4px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    margin: 0 0 0 -1px;
    padding: 0 10px;
    text-align: center;
    transition: 0.2s;
    background: rgb(0 0 0 / 30%);
}
#home-video .owl-nav [class*="owl-"] {
    border-radius: 4px 0 0 4px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    margin: 0 0 0 -1px;
    padding: 0 10px;
    text-align: center;
    transition: 0.2s;
    background: rgba(255,255,255,0.1);
}
#home-video .item iframe{
    border-radius: 10px;
    overflow: hidden;
}


#concursos-home .item {
    padding: 4px;
}
#concursos-home .item .bloco{
    width: 100%;
    min-height: 272px;
    overflow: hidden;
    padding: 15px 15px;
    position: initial;
    background: rgba(255,255,255, 0.95);
    border-radius: 5px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    overflow: auto;
    /* Estiliza a barra de rolagem no Firefox */
    scrollbar-width: thin; /* Pode ser 'auto', 'thin' ou 'none' */
    scrollbar-color: #888 #f1f1f1; /* thumb-color track-color */
}
#concursos-home .item .bloco .status {

}
#concursos-home .item .bloco .status.aberto {

}
#concursos-home .item .bloco .categoria {
    color: #1B998B;
    font-weight: 600;
    font-size: 21px;
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
}
#concursos-home .item .bloco .titulo {
    color: #0578c2 !important;
    font-weight: 400;
    font-size: 14px;
    min-height: 125px;
}

#concursos-home .item .bloco .data-abertura {
    color: #7b7a7a !important;
    font-size: 13px;
    margin-bottom: 8px;
}
#concursos-home .item .bloco .mais-detalhes {
    color: #1B998B;
    font-weight: 600;
    font-size: 15px;
}


#concursos-home .aberto {
    color: #409343!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#concursos-home .encerrado {
    color: #E14747!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#concursos-home .homologado {
    color: #33b5e5!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#concursos-home .andamento {
    color: #2bbbad!important;
    padding: 5px 0px;
    border-radius: 6px;
}


#concursos-home .card-footer a.btn {
    color: #fff;
    margin: 0;
}
#concursos-home .bt-saiba-mais {
    background: rgba(0,0,0, 0.03)!important;
    border-radius: 6px;
    border: rgba(0,0,0, 0.06)!important;
    color: #2E1E5D!important;
}
#concursos-home .box-descricao {
    font-size: 15px;
    padding: 15px 10px;
    min-height: 120px;
}
#concursos-home .box-descricao span {
    font-size: 13px;
    display: block;
    color: rgba(0,0,0, 0.4)!important;
}

.barra-cinza-home{
    background: #F7F5F3;
}

#vagas-home .item{
    padding: 5px;
}
#vagas-home .item .bloco{
    width: 100%;
    min-height: 263px;
    overflow: hidden;
    padding: 15px 10px;
    position: initial;
    background: #FFF;
    border-radius: 5px;

    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
}

#vagas-home .item .bloco .titulo{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    padding: 15px;
    margin-top: 6px;

    /* display flex */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* centraliza na vertical */
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #0044AF;
}
#vagas-home .item .bloco .icone{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    padding: 10px;
    font-size: 58px;

    /* display flex */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* centraliza na vertical */
    justify-content: center;
    align-items: center;
    color: rgba(0,0,0, 0.15)
}
#vagas-home .item .bloco .data{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    padding: 15px;
    font-size: 14px;

    /* display flex */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* centraliza na vertical */
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Banner LGPD */
.banner-lgpd-consent-container {
    position: fixed;
    left: 0;
    bottom: 10px;
    display: flex;
    width: 100vw;
    justify-content: center;
    z-index: 29999999;
}
.banner-lgpd-consent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 0;
    width: 70%;
    height: 70px;
    padding: 27px;
    background: rgba(0,0,0, 0.8);
    box-shadow: 0 6px 6px 0 rgba(0,0,0,.31);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    color: rgba(255,255,255,1);
}
.banner-lgpd-consent__column {
    padding: 0 54px;
    margin: 0 -30px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 16px;
    display: block !important;
}

.banner-lgpd-consent__column a{
    color: #74bbf7;
    font-weight: bold;
}
@media (max-width: 992px) {
    .banner-lgpd-consent {
        width: 98%;
        height: 120px;
        padding: 17px;
    }
    .banner-lgpd-consent__column {
        padding: 0 40px;
    }
}
/* Banner LGPD */


.img-noticias {
    max-width: 300px;
    max-height: 205px;
    margin: 5px;
}

.mensagem-nao-cadastrado{
    display: block;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 50px 0px;
    font-size: 13px;
}
.mensagem-nao-cadastrado-preto{
    display: block;
    color: rgba(0,0,0,0.5);
    text-align: center;
    padding: 50px 0px;
    font-size: 13px;
}

.barra-info-home .box-bt-info-home {
    padding: 15px;
    border-radius: 5px;
    transition: 0.2s;
    min-height: 150px;
    align-content: center;
}
.barra-info-home .box-bt-info-home:hover {
    background: rgba(0,0,0, 0.04);
}
.barra-info-home .box-bt-info-home .imagem {
    width: 100%;
    height: 50px;
    text-align: center;
    align-content: center;
}
.barra-info-home .box-bt-info-home .imagem img {
    width: 50px;
    margin: auto;
}
.barra-info-home .box-bt-info-home .descricao {
    text-align: center;
    margin-top: 5px;
}

.box-sine{
    padding: 10px;
    text-align: center;
    background: rgba(0,0,0, 0.01);
    border: solid 1px rgba(0,0,0, 0.02);
    border-radius: 5px;
    margin-bottom: 20px;
}
.box-sine .titulo{
    font-size: 22px;
    margin-bottom: 10px;
    color: #0044AF;
}
.box-sine .data{
    font-size: 14px;
    color: rgba(0,0,0, 0.5);
}
.box-sine .bt-sine{
    background: #0044AF;
    color: #FFF;
    border-radius: 5px;
    margin-top: 10px;
}


.menu-lateral-flutuante{
    width: auto;
    height: auto;
    background: rgba(39,69,118, 0.85);
    z-index: 99999;
}

.menu-lateral-flutuante ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-lateral-flutuante ul .facebook {
    background: rgb(66, 103, 178);
}

.menu-lateral-flutuante ul .youtube {
    background: linear-gradient(45deg,
        rgb(255, 0, 0),
        rgb(200, 0, 0),
        rgb(255, 50, 50)
        );
}

.menu-lateral-flutuante ul .twitter {
    background: linear-gradient(45deg,
        rgb(29, 161, 242),
        rgb(0, 132, 255),
        rgb(64, 153, 255),
        rgb(102, 178, 255)
        );
}

.menu-lateral-flutuante ul .flickr {
    background: linear-gradient(45deg,
        rgb(255, 0, 132),
        rgb(204, 0, 255),
        rgb(0, 102, 204),
        rgb(0, 153, 255)
        );
}

.menu-lateral-flutuante ul .instagram {
    background: linear-gradient(45deg,
        rgb(131, 58, 180),
        rgb(225, 48, 108),
        rgb(253, 29, 29),
        rgb(252, 175, 69)
        );
}

.menu-lateral-flutuante ul li a {
    text-align: center;
    display: block;
    padding: 10px;
    font-size: 26px;
    color: rgba(255,255,255, 0.8);
}

.menu-lateral-flutuante ul li a:hover {
    background: rgba(39,69,118, 1);
    color: #FFF;
}

/* Layout desktop (lateral centralizada) */
@media (min-width: 768px) {
    .menu-lateral-flutuante {
        width: auto;
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-left: 0;
        position: fixed;
        top: 50%; /* centraliza verticalmente */
        left: 0;
        transform: translateY(-50%); /* ajusta o centro real */
    }

    .menu-lateral-flutuante ul {
        display: block; /* vertical */
    }

    .menu-lateral-flutuante ul li {
        flex: none;
    }

}


/* Layout mobile (rodapé) */

@media (max-width: 767px) {
    .menu-lateral-flutuante {
        width: 100%;
        border: none;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .menu-lateral-flutuante ul {
        display: flex; /* horizontal */
        justify-content: stretch;
    }

    .menu-lateral-flutuante ul li {
        flex: 1;
    }
    .footer-barra03 {
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 10px 0;
        background-color: #385CAD;
        margin-bottom: 55px;
    }
}


.img-pequena-mobile{
    display: none;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}


.navbar.navbar-dark .breadcrumb .nav-item.active > .nav-link:hover, .navbar.navbar-dark .navbar-nav .nav-item.active > .nav-link:hover, .navbar.navbar-dark .navbar-toggler, .navbar.navbar-dark form .md-form .form-control {
    color: #fff;
    background: #CCC;
    height: 58px;
    margin-top: 5px;
}

.btn-cor01{
    background: #2e73dc!important;
}
.btn-cor02{
    background: #2160c0!important;
}
.btn-cor03{
    background: #1b4f9d!important;
}

.btn-cor01:hover{
    color: #FFF;
}
.btn-cor02:hover{
    color: #FFF;
}
.btn-cor03:hover{
    color: #FFF;
}

table.table td, table.table th {
    padding-top: 6px;
    padding-bottom: 6px;
}
table.table tbody tr td label {
    margin-bottom: 0px!important;
}
table.table tbody tr td p {
    margin-bottom: 0px!important;
}

.list-licitacao-titulo{
    margin-bottom: 0px!important;
    font-size: 1.3rem!important;
}
.list-licitacao-objeto{
    text-justify: inter-word;
}

strong{

}

ul.list-conselhos{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
ul.list-conselhos li{
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0, 0.06);
    background: rgba(0,0,0, 0.02);
    border-radius: 5px;
}
ul.list-conselhos li.active{
    background: rgb(3, 115, 180);
    color: #FFF;
}
ul.list-conselhos li.active a{
    color: #FFF;
}

.conselho .sub-titulo{
    font-size: 18px!important;
    color: #2C8CB7;
    border-bottom: 1px solid rgba(0,0,0, 0.06);
    padding: 10px 0;
}

ul.informacoes{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
ul.informacoes li{
    width: 100%;
    font-size: 15px!important;
    border-bottom: 1px solid rgba(0,0,0, 0.06);
    padding: 10px 0;
}
ul.informacoes li span{
    color: #2C8CB7;
}


#banner-principal-home .owl-nav {
    width: 100%;
    top: 35% !important;
    position: absolute !important;
    right: 0px !important;
}
#banner-principal-home .owl-nav > .owl-prev {
    border-radius: 4px;
    position: absolute;
    left: 40px;
    font-size: 40px;
    color: #FFF;
    padding: 0px 24px 5px 24px;
}
#banner-principal-home .owl-nav > .owl-next {
    border-radius: 4px;
    position: absolute;
    right: 40px;
    font-size: 40px;
    color: #FFF;
    padding: 0px 24px 5px 24px;
}

.html-reset p a, .html-reset p a.disabled:hover, .html-reset p a:disabled:hover{
    color: #007bff !important;
    text-decoration: revert !important;
}

.html-reset strong {
    font-weight: bold !important;
}

.mg-20 {
    margin: 20px 0;
}

.tab-secretaria {
    color: rgba(0, 0, 0, .5) !important;
    font-weight: bold;
    border-bottom: 5px solid #24B267;
    margin-top: 20px;
    font-size: 20px;
}

@media (max-width: 450px) {

    .tab-secretaria {
        margin-left: 15px !important;
    }

}

.barra-base-servico {
    background: url("/imagens/bg-servicos.png");
}

.img-secretaria {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain !important;
    transition: 0.3s;
    border-radius: 2px;
    position: relative!important;
    z-index: 6!important;
}
.mg-t-10 {
    margin-top: 10px !important;
}

/* Ouvidoria */
.anonimo {
    width: 15px;
    height: 15px;
    position: relative;
    margin-left: -15px;
}

/* Acolhimento familiar */
.form-acolhimento{
    /* background-color: gray; */
    white-space: nowrap;
}

.num-filhos {
    margin-left: 66%;
    white-space: nowrap;
}

.data-nascimento{
    margin-top: 10%;
}

.nascimento {
    margin-top: -9%;
}

.assunto {
    margin-left: 4%;
    width: 370px;
}

.mensagem {
    margin-left:  2%;
    width: 770px;
}

.enviar-acolhimento {
    display: block;
    margin-left: 45%;
}

.captcha-div {
    margin-top: 2%;
    margin-left: 37%;
    margin-right: 30%;
}

@media (max-width: 1024px){
    .data-nascimento{
        margin-top: 5%;
    }
    .assunto {
        margin-left: 6%;
        width: 290px;
    }

    .mensagem {
        margin-left: 2%;
        width: 925px;
    }

    .enviar-acolhimento {
        margin-top: 1%;
        margin-left: 40%;
    }

    .captcha-div {
        margin-left: 33%;
    }
}

@media (max-width: 768px){
    .flex-galeria-home {
        display: block;
    }

    .img-galeria-home {
        max-width: 100%;
        height: auto;
    }

    .estado-civil {
        width: 130px;
    }

    .nascimento{
        margin-top: -14%;
        margin-left: 50%;
        width: 160px;
    }

    .tem-filhos {
        margin-left: 10px;
    }

    .num-filhos {
        margin-left: 80%;
        width: 130px;
    }

    .assunto {
        margin-left: 3%;
        width: 450px;
    }

    .mensagem {
        margin-left: 2%;
        width: 690px;
    }

    .enviar-acolhimento {
        margin-top: 15%;
        margin-left: -62%;
    }

    .captcha-div {
        margin-left: 30%;
    }
}

@media (max-width: 425px){
    .estado-civil {
        width: 180px;
    }

    .data-nascimento {
        margin-top: -20%;
        margin-bottom: 0px;
    }

    .nascimento{
        width: 170px;
        margin-left: 54%;
        margin-top: -9%;
    }

    .num-filhos{
        margin-left: 0%;
        width: 395px;
    }

    .assunto {
        width: 395px;
    }

    .mensagem{
        margin-left: 3%;
        width: 395px;
    }

    .enviar-acolhimento{
        margin-top: 2%;
        margin-left: 35%;
    }

    .captcha-div {
        margin-left: 20%;
    }
}

@media(max-width: 394px){
    .assunto{
        width: 365px;
    }

    .mensagem{
        width: 365px;
    }
}

@media (max-width: 375px) {
    .flex-galeria-home {
        display: block;
    }

    .img-galeria-home {
        max-width: 100%;
    }

    .estado-civil{
        width: 150px;
    }

    .nascimento {
        margin-top: -11%;
        width: 150px;
    }

    .assunto {
        margin-left: 5%;
        width: 330px;
    }

    .mensagem {
        margin-left: 5%;
        width: 330px;
    }

    .captcha-div {
        margin-left: 13%;
    }
}
@media (max-width: 450px){
    body .uwy.userway_p1 .userway_buttons_wrapper {
        top: 145px !important;
        left: calc(100vw - 7px) !important;
    }
}
@media (max-width: 320px){
    .estado-civil {
        width: 120px;
    }

    .data-nascimento{
        margin-top: -26%;
    }

    .nascimento {
        margin-top: -13%;
        margin-left: 50%;
        width: 120px;
    }

    .num-filhos {
        width: 290px;
    }

    .assunto {
        width: 290px;
    }

    .mensagem {
        width: 290px;
    }

    .enviar-acolhimento {
        margin-top: 2%;
        margin-left: 30%;
    }

    .captcha-div {
        margin-left: 7%;
    }
}

/*- Licitações Home -*/
#home-licitacoes .item {
    padding: 4px;
}
#home-licitacoes .item .bloco{
    width: 100%;
    min-height: 272px;    
    padding: 15px 15px;
    position: initial;
    background: rgba(255,255,255, 0.95);
    border-radius: 5px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.14);  
}
#home-licitacoes .item .bloco .status {

}
#home-licitacoes .item .bloco .status.aberto {

}
#home-licitacoes .item .bloco .categoria {
    color: #1B998B;
    font-weight: 600;
    font-size: 21px;
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
}
#home-licitacoes .item .bloco .titulo {
    color: #0578c2 !important;
    font-weight: 400;
    font-size: 14px;
    min-height: 180px;
}

#home-licitacoes .item .bloco .data-abertura {
    color: #7b7a7a !important;
    font-size: 15px;
    margin-bottom: 8px;
}
#home-licitacoes .item .bloco .mais-detalhes {
    color: #1B998B;
    font-weight: 600;
    font-size: 15px;
}


#home-licitacoes .aberto {
    color: #409343!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#home-licitacoes .encerrado {
    color: #E14747!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#home-licitacoes .homologado {
    color: #33b5e5!important;
    padding: 5px 0px;
    border-radius: 6px;
}

#home-licitacoes .andamento {
    color: #2bbbad!important;
    padding: 5px 0px;
    border-radius: 6px;
}


#home-licitacoes .card-footer a.btn {
    color: #fff;
    margin: 0;
}
#home-licitacoes .bt-saiba-mais {
    background: rgba(0,0,0, 0.03)!important;
    border-radius: 6px;
    border: rgba(0,0,0, 0.06)!important;
    color: #2E1E5D!important;
}
#home-licitacoes .box-descricao {
    font-size: 15px;
    padding: 15px 10px;
    min-height: 120px;
}
#home-licitacoes .box-descricao span {
    font-size: 13px;
    display: block;
    color: rgba(0,0,0, 0.4)!important;
}

/*- Licitações Home -*/

/* Fontes SW LATO */
@font-face {
    font-family: 'SW Lato';  /* Nome base para a fonte */
    src: url('fonts/SW-Lato-Regular.woff2') format('woff2');
    font-weight: normal;  /* Peso normal para a fonte regular */
    font-style: normal;  /* Estilo normal */
}

@font-face {
    font-family: 'SW Lato';
    src: url('fonts/SW-Lato-Bold.woff2') format('woff2');
    font-weight: bold;  /* Peso bold para a fonte bold */
    font-style: normal;  /* Estilo normal */
}

@font-face {
    font-family: 'SW Lato';
    src: url('fonts/SW-Lato-Black.woff2') format('woff2');
    font-weight: 900;  /* Peso extra negrito para a fonte black */
    font-style: normal;  /* Estilo normal */
}

body {
    font-family: "Open Sans", sans-serif;
}

h1 {
    font-family: 'SW Lato', sans-serif;
    font-weight: bold;  /* Usando a versão bold */
}

h2 {
    font-family: 'SW Lato', sans-serif;
    font-weight: 900;  /* Usando a versão black */
}
/* Fontes SW LATO */

.clima-title {
    font-weight: bold;
    font-size: 12px;
    color: #000000;
    letter-spacing: .5px;
}

.clima-img {
    margin-left: 20px;
    margin-right: 5px;
    height: 20px;
}

.clima-temp {
    font-size: 14px;
    color: #000000;
}

.clima-topo {
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 5px 40px;
    font-weight: 300;
    color: #000000;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.texto-rodape {
    color: #fff;
}

.texto-rodape h4{
    margin-bottom: 10px;
}

.col-rodape {
    justify-items: center;
}

@media (max-width: 991px){
    .col-rodape {
        margin-bottom: 3em;
    }

    .mt-mobile {
        margin-top: 1rem;
    }
}

@media (min-width: 992px){
    .mt-desktop {
        margin-top: 1rem;
    }

}

.btn-whatsapp-noticia {
    background: #289f41;
    border: 1px solid #289f41;
    border-radius: 15px;
    margin-top: 0px;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.btn-whatsapp-noticia:hover {
    color: #289f41;
    background: #fff;
}

.menu-topo-center {
    align-content: center;
}

.barra-atendimento-telefone{
    width: 100%;
    height: auto;
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    backdrop-filter: blur(1px);
}
.barra-atendimento-telefone ul.box-atendimento-telefone{
    padding: 0px;
    margin: 0px;
    list-style: none;
    color: #000;
}
.barra-atendimento-telefone ul.box-atendimento-telefone li{
    font-size: 13px;
    float: left;
    padding: 5px 15px 5px 5px;
    margin-right: 10px;
    border-right: 1px dashed rgba(0,0,0, 0.2);
    color: rgb(96, 96, 96);
}
.titulo-destaque {
    left: 15px;
    right: 15px;
    position: absolute;
    top: 5rem;
    text-align: center;
    color: #fff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.dados-autualizados {
    width: 100%;
    height: auto;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-top: 15px;
    font-size: 13px;
    color: #0954af;
    text-align: center;
    border-top: 1px solid rgba(0,0,0, 0.1);
}