<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Barras de rolagem */

::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track:enabled{ background-color: #CCC; }
::-webkit-scrollbar-thumb:vertical{ background-color: #B7222D; }
::-webkit-scrollbar-thumb:horizontal{ background-color: #B7222D; }

:hover { -webkit-transition: 0.1s ease-in; -moz-transition: 0.1s ease-in; -o-transition: 0.1s ease-in }



*{
    font-family: 'Lato', sans-serif;
    line-height: 110%;
    color: #4D4D4D;
}


/* Margens e distribuiÃ§Ã£o de elementos */

main{
    width: 100%;
    padding: 35px 0;
    background: linear-gradient(to top, #FAFAFA, #FFF);
}

.content{
    width: 85%;
    margin: 0 auto;
    max-width: 1500px;
}

.d_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.d_flex_center{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

span,
span a{
    font-weight: bold;
    display: block;
    font-size: 15px;
    cursor: pointer;
}


.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Caixa Modal */

#caixa_modal{
    display: none;
    z-index: 99;
    position: fixed;
    background: #FFF;
    top: 50%;
    left: 50%;
    margin-left: -350px;
    margin-top: -125px;
    width: 700px;
}

#caixa_modal .topo{
    background: #B7222D;
}

#caixa_modal .topo h2{
    flex-basis: 450px;
    color: #FFF;
    font-weight: normal;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-left: 25px;
}

#caixa_modal .topo span{
    color: #FFF;
    background: #941C24;
    padding: 15px;
    
}

#caixa_modal .topo span:hover{
    background: #9E825A;
}

#caixa_modal .interno{
    padding: 15px 25px;
    max-height: 250px;
    overflow-y: auto;
}

#caixa_modal .interno .padrao_tabela{
    justify-content: space-between;
}

#caixa_modal .interno .padrao_tabela .hora{
    flex-basis: 12%;
}

#caixa_modal .interno .padrao_tabela .titulo{
    flex-basis: 33%;
}

#caixa_modal .interno .padrao_tabela .local{
    flex-basis: 50%;
}


/* Estilo de galeria de Imagens */

.gallery img{
    opacity: 0.75;
    padding: 7px;
}

.gallery img:hover{
    opacity: 1;
}

.galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.galeria article{
    flex-basis: 18%;
}


/* Avisos */

.erro{
    background: #B7222D;
    width: 100%;
    padding: 15px;
    color: #FFF;
    text-align: center;
}

.sucesso{
    background: #01A85B;
    width: 100%;
    padding: 15px;
    color: #FFF;
    text-align: center;
}


/* BotÃµes TOPO e VOLTAR PÃGINA */

.area_botoes{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.area_botoes span{
    margin: 0 2px;
    color: #FFF;
    font-size: 12px;
    padding: 7px 10px;
    background: #9E825A;
}

.area_botoes span:hover{
    background: #B7222D;
}


/* PaginaÃ§Ã£o */

.paginacao{
    width: 100%;
    padding-top: 35px;
}

.paginacao span a{
    background: #FFF;
    color: #FFF;
    margin: 5px 2px;
    background: #B7222D;
    padding: 10px 15px;
}

.paginacao span a:hover{
    background: #941C24;
}

.exibindo{
    width: 100%;
    text-align: center;
    color: #999;
    margin-bottom: 35px;
    font-size: 14px;
    margin-bottom: 35px;
}


/* Tamanhos dos tÃ­tulos */

h2{
    width: 100%;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #9E825A;
}

p{
    font-size: 18px;
    margin-bottom: 10px;
}

p a{
    color: #941C24;
    font-weight: bold;
}

p a:hover{
    color: #B7222D;
}


/* PÃ¡gina de Erro */

.erro404,
.sem-registro{
    overflow: hidden;
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.erro404 h2,
.sem-registro h2{
    font-size: 100px;
    font-weight: bold;
    color: #B7222D;
    letter-spacing: -7px;
    margin: 0;
    line-height: 75%;
}

.erro404 h3,
.sem-registro h3{
    text-transform: uppercase;
    font-size: 30px;
    margin: 0;
    margin-top: 35px;
    color: #4D4D4D;
    letter-spacing: -1px;
    font-weight: 400;
}

.erro404 p,
.sem-registro p{
    margin-top: 20px;
}



/* Estilo de FormulÃ¡rio */

.invalid{ 
    width: 100%;
    display: block;
    font-size: 14px; 
    color: #DD4B39; 
    margin-top: 10px;
    font-weight: 600;
}

form{
    overflow: hidden;
}

form input:required,
form select:required,
form textarea:required{
    border-left: 5px solid #941C24;
}

form input:disabled,
form select:disabled,
form textarea:disabled{
    cursor: no-drop;
}

form .linha{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form section{
    margin-bottom: 35px;
}

form article{
    margin-top: 20px;
    width: 100%;
}

form article label{
    padding-bottom: 8px;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}

form input, textarea{
    width: 100%;
    padding: 20px;
    border: 1px solid #CCC;
    font-size: 16px;
    color: #555;
}

form input[type=date],
form input[type=time]{
    padding: 17px 20px;
}

form select{
    width: 100%;
    height: 58px;
    border: 1px solid #CCC;
    font-size: 16px;
    padding: 15px;
    color: #555;
}

form textarea{
    height: 150px;
}

form input[type=submit]{
    width: auto;
    padding: 15px 25px;
    margin-top: 25px;
    display: block;
    float: right;
    background: #B7222D;
    color: #FFF;
    cursor: pointer;
    font-size: 15px;
    border: 0;
    font-weight: bold;
}

form input[type=submit]:hover{
    background: #941C24;
}


#fundo_menu{
    position:fixed !important; 
    position:absolute;
    top:0px; 
    z-index:10; 
    width:100%; 
    height:100%; 
    opacity:0.5; 
    background-color:#000;
    right:0;
    display: none;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Header */

#busca{
    display: none;
}

#busca input{
    background: #9F7E58;
    padding: 25px;
    font-size: 25px;
    color: #FFF;
    text-align: center;
}

#busca input::placeholder{
    color: #FFF;
}

#busca input:required{
    border: 0;
}

.superior{
    padding: 15px 0;
    font-size: 12px;
    border-bottom: 1px solid #EEE;
    background: #FAFAFA;
}

.superior ul{
    flex-basis: 330px;
}

.superior ul li a{
    font-size: 15px;
    font-weight: bold;
}

.abrir_mobile{
    display: none;
}

header{
    width: 100%;
    padding: 35px 0;
}

header .logo img{
    width: 175px;
}

header .escolha{
    flex-basis: 325px;
    position: relative;
    padding-left: 15px;
    margin: 0;
    padding: 0;
}

header .escolha .icone{
    flex-basis: 60px;
}

header .escolha .bt{
    flex-basis: 250px;
    margin: 0;
    padding: 0;
}

#bt_municipios{
    color: #9E825A;
    font-weight: 900;
}

#bt_municipios:hover{
    color: #B7222D;
}

header .escolha .redbar{
    width: 50px;
    height: 7.5px;
    background: #B7222D;
    margin-top: 10px;
}

header .escolha ul.municipios{
    width: 300px;
    background: #FAFAFA;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    z-index: 15;
    top: 25px;
    left: 75px;
    padding: 15px 15px 10px 15px;
    display: none;
    border-top: 0;
}

header .escolha ul.municipios li a{
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #EEE;
}

header .escolha ul.municipios li a:hover{
    background: #B7222D;
    color: #FFF;
}

header .escolha span{
    color: #999;
    font-size: 18px;
    text-transform: uppercase;    
}

header .escolha span:hover{
    color: #B7222D;
}

header .escolha p{
    width: 200px;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

header .canais{
    flex-basis: 240px;
}

header .canais h2{
    flex-basis: 120px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0;
}

header .canais img{
    width: 35px;
    margin-left: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    opacity: 0.25;
}

header .canais img:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: normal;
    opacity: 1;
}

header .opcoes_user{
    flex-basis: 250px;
}

header .opcoes_user img{
    width: 70px;
}

header .opcoes_user span a{
    padding: 7px;
    background: #999;
    margin: 3px;
    color: #FFF;
}

header .opcoes_user span a:hover{
    background: #555;
}

header .opcoes_user .menu_user{
    margin-top: 5px;
}

header .opcoes_user span.sair a{
    background: #B7222D;
}

header .opcoes_user span.sair a:hover{
    background: #941C24;
}


/* NavegaÃ§Ã£o */

.menu{
    width: 90%;
    padding: 0 2.5%;
    margin: 0 auto;
    background: #B7222D;
    border-bottom: 3px solid #9E825A;
}

.menu span{
    background: #941C24;
    padding: 10px;
}

.menu span:hover{    
    background: #9E825A;
}

.menu span img{
    width: 46px;
}

nav li a{
    color: #FFF;
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 25px 15px;
}

nav li a:hover{
    background: #9E825A;
}


#abre_menu{
    color: #FFF;
    font-weight: 900;
    font-size: 18px;
    display: none;
    padding: 20px 0;
}


.buttons{
    width: 205px;
}

.buttons span.seta{
    background: #FFF;
    color: #CCC;
    border: 1px solid #CCC;
    padding: 10px 12px;
}

span.more a{
    width: 110px;
    margin-left: 10px;
    text-align: center;
    background: #B7222D;
    color: #FFF;
    padding: 5px 0;
}

span.more a:hover{
    background: #941C24;
}


#navegacao{
    border-bottom: 1px solid #CCC;
    display: block;
    padding: 25px 0;
    margin: 0;
}

.navegacao{
    display: none;
}

h1{
    width: 100%;
    font-size: 35px;
    color: #B7222D;
    text-transform: uppercase;
    font-weight: 900;
}

#navegacao .content .breadcrumbs{
    font-size: 12px;
    font-weight: normal;
    color: #999;
    margin-top: 5px;
}

#navegacao .content .breadcrumbs b{
    color: #999;
}

#navegacao .content .breadcrumbs a{
    text-decoration: underline;
    color: #999;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


.brasoes{
    background: #FFF;
    padding: 25px;
    position: relative;
    border-top: 1px solid #CCC;
}

.buttons{
    position: absolute;
    top: -18px;
    right: 7.5%;
}

.brasoes li{
    padding: 10px 15px;
    text-align: center;
}

.brasoes li:hover{
        
}

.brasoes li img{
    height: 90px;
    margin: 0 auto;
}

.brasoes li .nome{
    text-transform: uppercase;
    margin-top: 10px;
    color: 4D4D4D;
    font-size: 12px;
}


/* RodapÃ© */

footer{
    background: #FFF;
    padding: 0;
}

footer .esquerda{
    flex-basis: 60%;
    padding: 35px 35px 0 0;
    padding-left: 7.5%;
}

footer .esquerda ul{
    flex-basis: 30%;
}

footer .esquerda ul h2{
    color: #B7222D;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

footer .esquerda ul li a{
    color: #555;
    padding: 5px 0;
    display: block;
    font-weight: 500;
}

footer .esquerda ul li.red a{
    color: #B7222D;
    font-size: 18px;
    font-weight: 900;
    margin-top: 10px;
}

footer .esquerda .logomarca{
    flex-basis: 30%;
    text-align: center;
}

footer .esquerda .logomarca img{
    width: 200px;
    margin-top: 80px;
}


.copyright{
    padding: 35px 0;
    color: #555;
    font-size: 12px;
}

.copyright .criacao{
    margin-top: 5px;
    font-weight: normal;
}

.copyright .criacao a{
    font-weight: bold;
    color: #555;
}

.copyright .criacao a:hover{
    color: #941C24;
}


footer .direita{
    flex-basis: 40%;
    background: #FFF;
}


.gatilho{
    background: #9E825A;
    padding: 35px;
    padding-right: 18%;
}

.gatilho h2{
    color: #FFF;
    font-weight: 900;
    font-size: 30px;
    margin: 0;
}

.gatilho p{
    max-width: 500px;
    margin: 5px auto 25px auto;
    color: #FFF;
    font-size: 16px;
}

.gatilho form{
    margin: 0 auto;
}

.gatilho input:required{
    border-left: 5px solid #CCC;
}

.gatilho input{
    background: #FFF;
    color: #555;
    padding: 18px;
    font-size: 14px;
    margin-bottom: 10px;
}

.gatilho input[type=submit]{
    flex-basis: 100px;
    background: #941C24;
    color: #FFF;
    cursor: pointer;
    font-size: 15px;
    margin: 0;
}

.gatilho input[type=submit]:hover{
    background: #FFF;
    color: #941C24;
}

.btn_entidade a{
    display: bloclk;
    padding: 10px;
    margin-left: 10px;
    background: #EEE;
}

.btn_entidade.selecionado a{
    background:  #B7222D;
    color: #FFF;
}

</pre></body></html>