@import url('fonts/fonts.css');

:root {
    --background: #FBFBFB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto-Regular' !important;
    background-color: var(--background);
}

a, a:hover {
    color: #474A4D;
    text-decoration: none;
}

hr {
    border: 1px solid rgba(144, 147, 149, 0.3);
    margin-right: 0;
    width: 65%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 13px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--background);
    border-radius: 50px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--Primary1);
    border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--Primary0);
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0 !important;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-content-center {
    justify-content: center;
}

.justify-content {
    justify-content: flex-end;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-space-beetween {
    justify-content: space-between;
}

.align-items-flex-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-content-center {
    align-items: center;
}

.align-content-between {
    align-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.margin-auto {
    margin: 0 auto;
}

.mt-3 {
    margin-top: 3vh;
}

/* Cor de Fundo */

.back-primary0 {
    background-color: var(--Primary0);
}

.back-primary1 {
    background-color: var(--Primary1);
}

.back-primary2 {
    background-color: var(--Primary2);
}

.back-cinza {
    background: rgba(238, 238, 238, 0.4);
}

.back-white {
    background-color: white;
}

.back-dark {
    background-color: #102530;
}

.no-background {
    background-color: transparent !important;
}

/* Botões Padrões */
.botao {
    font-family: 'Roboto-Bold';
    font-size: 16px;
    border-radius: 6px;
    padding: 8px 16px;
    display: inline-block;
    transition: all .3s;
    border: 2px solid var(--Primary0);
}

.botao-noticia {
    color: var(--Primary0);
    border: 2px solid var(--Primary0);
    background-color: transparent;
}

.botao-noticia:focus,
.botao-noticia:active,
.botao-noticia:hover {
    background-color: var(--Primary0);
    color: white;
}

.botao-newsletter {
    /* border-color: 2px solid var(--Primary0); */
    background-color: var(--Primary0);
    color: white;
    margin: 0;
    border-radius: 6px;
}

.botao-newsletter:active,
.botao-newsletter:focus,
.botao-newsletter:hover {
    background-color: transparent;
    color: var(--Primary0);
    border: 2px solid var(--Primary0);
}

.botao-primary0 {
    color: white;
    background-color: var(--Primary0);
    border: 2px solid var(--Primary0);
}

.botao-primary0:hover,
.botao-primary0:active,
.botao-primary0:focus {
    background-color: transparent;
    color: var(--Primary0);
}

.botao-primary1 {
    color: white;
    background-color: var(--Primary1);
    border: 2px solid var(--Primary1);
}

.botao-primary1:hover,
.botao-primary1:active,
.botao-primary1:focus {
    background-color: transparent;
    color: var(--Primary1);
}

.botao-primary2 {
    color: white;
    background-color: var(--Primary1);
    border: 2px solid var(--Primary1);
}

.botao-primary2:hover,
.botao-primary2:active,
.botao-primary2:focus {
    background-color: transparent;
    color: var(--Primary1);
}

.botao-light {
    background-color: white;
    border: 2px solid white;
    color: var(--Primary0);
}

.botao-light:hover,
.botao-light:active,
.botao-light:focus {
    background-color: transparent;
    color: white;
}

.botao-alerta {
    background-color: #FFD24D;
    border: 2px solid #FFD24D;
    color: #474A4D;
}

.botao-alerta:hover,
.botao-alerta:active,
.botao-alerta:focus {
    background-color: transparent;
    color: #FFD24D;
}

/* Bloco Alinhado */

.bloco-vertical-middle {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .bloco-middle-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bloco-center {
        display: flex;
        justify-content: center;
    }
}

/* Pace.JS */
.pace-progress {
    height: 5px !important;
}

.pace-activity {
    width: 20px !important;
    height: 20px !important;
}

/* Padding Padrão */

.top1 {
    padding-top: 1vh;
}

.top2 {
    padding-top: 2vh;
}

.top3 {
    padding-top: 3vh;
}

.top4 {
    padding-top: 4vh;
}

.top5 {
    padding-top: 5vh;
}

.top6 {
    padding-top: 6vh;
}

.top7 {
    padding-top: 7vh;
}

.top8 {
    padding-top: 8vh;
}

.top9 {
    padding-top: 9vh;
}

.top10 {
    padding-top: 10vh;
}

.top11 {
    padding-top: 11vh;
}

.top14 {
    padding-top: 14vh;
}

.bot1 {
    padding-bottom: 1vh;
}

.bot2 {
    padding-bottom: 2vh;
}

.bot3 {
    padding-bottom: 3vh;
}

.bot4 {
    padding-bottom: 4rem;
}

.bot5 {
    padding-bottom: 5vh;
}

.bot6 {
    padding-bottom: 6vh;
}

.bot7 {
    padding-bottom: 7vh;
}

.pad-left-0 {
    padding-left: 0;
}

.pad-left-2 {
    padding-left: 2vw;
}

.pad-left-3 {
    padding-left: 3vw;
}

.pad-left-4 {
    padding-left: 4vw;
}

.pad-left-5 {
    padding-left: 5vw;
}

.pad-right-0 {
    padding-right: 0;
}

.padding-left {
    padding-left: 30px;
}

.px-1 {
    padding-top: 1vh !important;
    padding-bottom: 1vh !important;
}

.px-2 {
    padding-top: 2vh !important;
    padding-bottom: 2vh !important;
}

.px-3 {
    padding-top: 4vh !important;
    padding-bottom: 4vh !important;
}

div.light_rounded .pp_next:hover,
div.light_rounded .pp_previous:hover {
    /* background-image: none !important; */
}

.pp_gallery li {
    display: none !important;
}

h2 {
    font-size: 21px;
    font-family: 'Roboto-Bold';
    line-height: 1.5;
    margin-bottom: 0;
}

h3 {
    font-size: 18px;
    font-family: 'Roboto-Bold';
    line-height: 1.5;
}

h4 {
    font-family: 'Roboto-Bold';
    font-style: normal;
    /* font-weight: 500; */
    font-size: 16px;
    line-height: 1.3;
    margin-top: 0;
}

h5 {
    font-size: 14px;
    line-height: 1.3;
}

h6 {
    font-size: 12px;
    line-height: 1.3;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

/* LOADER */

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid var(--Primary0);
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Bloco Sombra */
.bloco-sombra {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 25%);
}

.bloco-sombra:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* ============================= */

/* Titulos */
.titulo img {
    width: 30px;
    vertical-align: middle;
    margin-right: 15px;
}

.titulo {
    color: #474A4D;
    position: relative;
    margin-bottom: 20px;
}

.titulo h2 {
    background-color: var(--background);
    padding-right: 20px;
    margin: 0;
}

.titulo::after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #EEEEEE;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
}

/* ============================= */

/* Bloco PATH das Páginas */
.path a {
    /* color: white; */
    font-size: 16px;
}

.path ul li {
    list-style-image: url('../img/icone_seta_direita.svg');
}

.path ul {
    display: inline-flex;
    margin-top: 20px;
    padding-left: 20px;
}

/* ============================= */

/* ACESSIBILIDADE */
#acessibilidade {
    background-color: var(--Primary0);
    min-height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
}

#acessibilidade a {
    color: var(--background);
    font-size: 12px;
    cursor: pointer;
    padding: 8px;
}

#acessibilidade a span {
    background-color: var(--background);
    color: var(--Primary0);
    padding: 2px 6px;
    font-weight: 700;
    border-radius: 4px;
}

#acessibilidade .dropdown-menu a {
    color: #474A4D;
    font-family: 'Roboto-Bold';
    padding-left: 15px;
}

@media screen and (min-width: 768px) {

    #acessibilidade #MENU-ACESSIBILIDADE {
        display: flex;
    }

    #acessibilidade #MENU-ACESSIBILIDADE ul.navbar-right {
        display: flex;
        justify-content: flex-end;
        padding-right: 0;
    }
}

/* ============================= */

/* Bloco Logo */
#bloco-logo ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    min-height: 130px;
    align-items: center;
}

#bloco-logo ul li a {
    padding: 10px;
    font-weight: 700;
    font-size: 16px;
}

#bloco-logo form {
    margin: 0;
}

.form-padrao input {
    border: 2px solid var(--Primary0);
    border-radius: 6px 0 0 6px;
    border-right: 0;
    height: auto;
    padding: 8px 12px;
    line-height: 24px;
}

.form-padrao input:focus {
    border-color: var(--Primary0);
    box-shadow: inset 0 1px 1px var(--Primary0), 0 0 8px var(--Primary2);
}

.form-padrao .input-group-btn {
    width: auto;
}

.form-padrao button {
    font-size: 18px;
    border: 2px solid var(--Primary0);
    border-left: 0;
    transition: all .2s;
    padding: 0 14px;
    color: var(--Primary0);
}

.form-padrao button:hover,
.form-padrao button:active,
.form-padrao button:focus {
    background-color: var(--Primary0);
    color: white;
    border-color: var(--Primary0);
}

/* ============================= */

/* Bloco Menu */
#bloco-menu {
    box-shadow: 0px 2px 4px rgba(45, 64, 74, 0.25);
}

#bloco-menu ul.nav.navbar-nav::before,
#bloco-menu ul.nav.navbar-nav::after {
    display: none;
}

#bloco-menu, #bloco-menu ul {
    background-color: #e7e7e7;
    right: 0;
    left: unset;
}

#bloco-menu ul .dropdown-submenu {
    position: relative;
}

#bloco-menu ul .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
}

#bloco-menu ul ul.dropdown-menu li a:active, #bloco-menu ul ul.dropdown-menu li a:hover, #bloco-menu ul ul.dropdown-menu li a:focus {
    color: var(--Primary0);
}

#bloco-menu ul li a {
    font-size: 16px;
    font-family: 'Roboto-Medium';
    color: #474A4D;
    padding: 15px 5px;
}

#bloco-menu ul.dropdown-menu li a {
    padding: 10px 15px;
}

#bloco-menu .navbar {
    margin: 0;
    min-height: auto;
    border: none;
}

@media (min-width: 768px) {

    #bloco-menu .navbar-collapse.collapse {
        padding: 0;
    }

    #bloco-menu ul.nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

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

@media screen and (max-width: 768px) {

    #bloco-menu .navbar-toggle {
        border-color: #001026;
        margin-top: 2vh;
        margin-right: 2vh;
    }

    #bloco-menu .navbar-toggle .icon-bar {
        background-color: #474A4D;
    }

    #bloco-menu .navbar-form .form-control {
        position: absolute;
        width: 2800%;
        height: 47px;
        right: 130%;
        margin-top: -5px;
    }

    #bloco-menu .navbar-collapse {
        border-top: 1px solid #474A4D;
    }
}

/* ============================= */

/* Bloco Destaques / Notícias */


#destaques h2 {
    margin-top: 0;
}

#slide .carousel-control {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}

#slide .carousel-control fieldset {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (width: 992px) {
    #destaques .imagem {

    }
}

@media screen and (max-width: 768px) {
    #slide .col-lg-4.col-md-5 {
        padding-top: 30px;
    }
}

h5.text-muted {
    border-left: 2px solid var(--Primary0);
    padding-left: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
}

#subdestaques h4 {
    font-family: 'Roboto-Medium';
    font-weight: unset;
    line-height: 1.5;
}

#subdestaques .imagem {
    height: 15.1rem;
}

#subdestaques h5 {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    #subdestaques .imagem {
        height: 16vh;
    }
}

/* ============================= */

/* Bloco Acesso Rápido */
#acesso a {
    font-family: 'Roboto-Medium';
}

.acesso-rapido-item {
    transition: all .2s;
    display: grid;
    justify-items: center;
    min-height: 120px;
    align-items: center;
    font-size: 16px;
    padding: 10px 5px;
    border-radius: 10px;
}

#acesso-rapido-item-covid {
    border-top: 10px solid var(--Primary0);
}

.acesso-rapido-item svg {
    font-size: 25px;
}

.acesso-rapido-item p {
    text-align: center;
    /* font-family: 'Roboto-Regular'; */
    color: #727374;
}

@media screen and (max-width: 992px) {
    #acesso-rapido .acesso-rapido-item {
        margin-bottom: 30px;
    }
}

/* ============================= */

/* Bloco TV CÂMARA */

#web-tv .bloco-sombra {
    padding-top: 15px;
    padding-bottom: 15px;
}

#web-tv hr {
    width: 90%;
}

#web-tv h5 {
    margin-top: 0;
}

#web-tv h4 {
    display: inline-block;
    background-color: var(--Primary0);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
}

#web-tv svg {
    position: absolute;
    right: -5%;
    top: 37%;
    background-color: #E7E7E7;
    width: 25px;
    height: 25px;
    padding: 7px;
    padding-left: 8px;
    border-radius: 50px;
}

#web-tv .item-play:hover svg {
    background-color: #505050;
    color: white;
}

#web-tv .item-play {
    margin-bottom: 12px;
}

#web-tv h3 {
    font-size: 14px;
    color: var(--Primary0);
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

#web-tv h2 {
    font-size: 21px;
    color: var(--Primary0);
    text-transform: uppercase;
}

#web-tv p {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 45px;
}

.botao-noticia {
    color: var(--Primary0);
    border: 2px solid var(--Primary0);
    background-color: transparent;
    font-weight: 700;
    font-size: 16px;
    /* margin-top: 2vh; */
    border-radius: 6px;
    padding: 8px 16px;
    display: inline-block;
}

.botao-noticia:focus,
.botao-noticia:active,
.botao-noticia:hover {
    background-color: var(--Primary0);
    color: white;
}


/* Bloco Notícias */
#noticias h3 {
    font-size: 16px;
    line-height: 24px;
}

#noticias p {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
}

.imagem {
    overflow: hidden;
    /* display: flex; */
    border-radius: 6px;
    /* height: 120px; */
}

.imagem img {
    height: 100%;
    min-width: 100%;
    /* margin: auto auto 0; */
    /* margin-bottom: 0; */
    object-fit: cover;
    margin-inline: auto;
}

#noticias .acesso-rapido-item p {
    text-align: center;
    font-size: 14px;
    font-family: 'Roboto-Medium';
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    #noticias .imagem img {
        min-height: 140px;
    }
}

/* /.Bloco Notícias */

@media screen and (max-width: 768px) {
    #web-tv iframe {
        height: 450px;
    }

    #web-tv .pad-right-0 {
        padding-right: 15px;
    }

    #web-tv .d-flex {
        display: block;
    }

    #web-tv .bloco-sombra {
        margin-bottom: 30px;
    }

}

/* Bloco Banner */

/* Bloco Links Úteis */
.link {
    background-position: 93% 50%;
    background-repeat: no-repeat;
    min-height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
}

.nota-fiscal {
    background-image: url(../img/btn-nota-fiscal.png);
    background-color: #006cb0;
}

.servicos-online {
    background-image: url(../img/btn-servicos-online.png);
    background-color: #ffc107;
}

.cimpolosul {
    background-image: url(../img/btn-consorcio.png);
    background-color: #388e3c;
}

.acesso-informacao {
    background-image: url(../img/btn-acesso-informacao.png);
    background-color: #d32f2f;
}

.link a {
    color: white;
    display: grid;
}

.link a h3 {
    margin: 0;
}

.editais a {
    color: #149a77;
}

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

.links-uteis a {
    display: grid;
    min-height: 140px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ababab;
    justify-items: center;
    align-items: center;
    border-radius: 6px;
    justify-content: center;
    align-content: center;
}

.links-uteis a svg {
    font-size: 30px;
}

.links-uteis a h4 {
    margin: 0;
    margin-top: 25px;
}

/* /.Bloco Links Úteis */

/* Bloco Carta de Serviços */
#carta-servico h2 {
    padding-left: 20px;
}

#carta-servico p {
    font-size: 18px;
    margin-bottom: 30px;
}

#carta-servico .acesso-rapido-item h3 {
    font-size: 18px;
    font-family: 'Roboto-Medium';
    line-height: 1.3;
    text-decoration: underline;
    text-align: left;
    margin: 10px 0;
    color: #474A4D;
}

#carta-servico a p {
    margin: 0;
    text-align: left;
    /* color: initial; */
}

#carta-servico .acesso-rapido-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    #carta-servico {
        padding-top: 30px;
    }

    #carta-servico .text-center p {
        margin-top: 0;
    }

    #carta-servico .acesso-rapido-item {
        margin-bottom: 3vh;
    }
}

/* /.Bloco Carta de Serviços */

/* Bloco Swiper */
.swiper {
    z-index: 0;
}
/* /.Bloco Swiper */


/* /.Bloco Banner */
.banners .swiper-slide {
    background-color: var(--background);
}

.banners .swiper-button-next,
.banners .swiper-button-prev {
    top: 50%;
    font-size: 21px;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.6);
    color: white;
}

.banners .swiper-slide img {
    display: block;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .banners .swiper-slide img {
        /* width: 100%; */
    }
}

/* Bloco Newsletter */

.redes {
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
    padding: 0;
}

.redes li a {
    padding: 8px;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

#newsletter .redes li a {
    width: 70px;
    height: 70px;
}

@media screen and (min-width: 992px) {
    .redes {
        float: right;
    }
}

@media screen and (max-width: 992px) {
    .redes {
        margin-top: 3vh;
        justify-content: center;
    }
}

#newsletter .titulo h2 {
    background-color: transparent;
}

#newsletter .titulo::after {
    display: none;
}

#newsletter .newsletter-form input {
    border-radius: 6px;
    border: 2px solid var(--Primary0);
    outline: none;
    font-size: 16px;
    padding: 8px;
}

@media screen and (max-width: 768px) {
    #newsletter .bloco-vertical-middle, #newsletter .newsletter-form {
        display: block;
    }

    #newsletter .newsletter-form {
        text-align: center;
        margin-bottom: 30px;
    }

    #newsletter .newsletter-form input {
        margin-right: 0;
        width: 100%;
        padding: 10px;
        margin-bottom: 25px;
    }
}

/* Bloco Horários */
#horarios h3, #horarios h4 {
    line-height: 1.5;
}

#horarios {
    color: white;
    /* margin-bottom: 40px; */
}

#horarios .titulo h2 {
    margin-bottom: 10px;
    font-size: 21px;
}

#horarios .titulo p {
    font-size: 16px;
    line-height: 24px;
}

#horarios iframe {
    width: 100%;
    height: 300px;
}

/* Bloco Rodapé */

#rodape,
#rodape a {
    color: white;
}

#rodape h2 {
    text-transform: uppercase;
}

#rodape h2 svg {
    font-size: 30px;
}

#rodape .bord-left {
    border-left: 1px solid rgba(248, 248, 248, 0.5);
}

#rodape h5 {
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.5;
}

#rodape ul {
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

#rodape ul li a {
    color: white;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    line-height: 24px;
}


@media screen and (max-width: 768px) {
    #rodape .bloco-vertical-middle {
        display: block;
    }

    #rodape .bord-left {
        padding-bottom: 30px;
    }
}

/* Bloco Sub-Rodapé */
#sub-rodape {
    color: white;
}

#sub-rodape p {
    margin: 0;
}

@media screen and (max-width: 768px) {    
    #sub-rodape p {
        text-align: center;
    }

    #sub-rodape img {
        margin-top: 2vh;
        margin-inline: auto;
    }
}


@media screen and (max-width: 1085px) {
    .top7 {
        padding-top: 5em;
    }
}

@media screen and (max-width: 992px) {
    #acesso .acesso-rapido-item h4 {
        min-height: 100px;
    }

    #noticias .col-md-5.top3 {
        padding-top: 0;
    }

    #redes .col-md-4 {
        padding-bottom: 3em;
    }

    #redes .acesso-rapido-item {
        min-height: 0;
    }

}

@media screen and (max-width: 768px) {
    #acessibilidade {
        position: relative;
        margin: 0;
    }

    #acessibilidade .navbar-toggle .icon-bar {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: white;
    }

    #acessibilidade .navbar-toggle {
        background-color: transparent;
        border: none;
        margin: 0;
    }

    #acessibilidade .text-right button {
        margin-right: 2em;
    }

    #acessibilidade .text-right a {
        margin-top: 5px;
        font-family: 'Roboto-Medium';
    }

    #acessibilidade .text-right {
        padding-top: 1em;
        padding-bottom: 1em;
    }

    #acessibilidade .nav {
        text-align: left;
        margin: 0;
        /* padding: 15px 0; */
    }

    .top7 {
        padding-top: 3em;
    }

    .titulo h4 {
        line-height: 1.5;
        text-align: justify;
    }

    .titulo img {
        margin-right: 5px;
    }

    h2 {
        /* font-size: 1.6em; */
    }

    #slide .item {
        height: 20em;
    }

    #slide .carousel-indicators li, #slide .carousel-indicators .active {
        width: 30px;
        height: 5px;
        border-radius: 5px;
        margin-right: 5px;
    }

    #slide .carousel-caption h3 {
        font-size: 5vw;
        line-height: 1.5;
    }

    #acesso .acesso-rapido-item h4 {
        min-height: auto;
    }

    #noticias .bloco-noticia-1 {
        height: 25em;
    }

    #noticias .col-md-5, #noticias .col-md-5.top3 {
        padding-top: 3em;
    }

    #banner a {
        overflow: hidden;
        display: block;
    }

    #banner img {
        height: 10em;
        max-width: none;
        position: relative;
    }
}

/* Páginas */
.panel-primary {
    border: none;
    margin: 0;
}

.panel-primary>.panel-heading,
.btn-primary, .btn-info {
    background-color: var(--Primary0);
    border-color: var(--Primary0);
}

.panel img {
    max-width: 100%;
}

/* /.Página de Busca */

/* CSS CONTRASTE */
.contrast img, .contrast img, .contrast iframe {
    filter: grayscale(100%) contrast(120%);
}

.contrast a {
    color: white !important;
}

.contrast, .contrast nav, .contrast div, .contrast li, .contrast ol, .contrast header, .contrast footer, .contrast section, .contrast main, .contrast aside, .contrast article, .contrast #bloco-menu ul, .contrast button, .contrast input[type=button], .contrast input[type=reset], .contrast input[type=submit] {
    background: #121817 !important;
    color: white !important;
}

.contrast h1, .contrast h2, .contrast h3, .contrast h4, .contrast h5, .contrast h6, .contrast p, .contrast label, .contrast strong, .contrast em, .contrast cite, .contrast q, .contrast i, .contrast u, .contrast span {
    color: white !important;
}

.contrast #acessibilidade span, .contrast #acessibilidade i {
    color: initial !important;
}

.contrast input[type=button], .contrast input[type=reset], .contrast input[type=submit] {
    border: none !important;
}

.contrast input[type=text], .contrast input[type=password], .contrast input[type=url], .contrast input[type=search], .contrast input[type=email], .contrast input[type=tel], .contrast input[type=date], .contrast input[type=month], .contrast input[type=week], .contrast input[type=datetime], .contrast input[type=datetime-local], .contrast textarea, .contrast input[type=number] {
    background: #121817 !important;
    border: 1px solid white !important;
    color: white !important;
}

.contrast .panel-primary>.panel-heading {
    border-color: transparent;
}

.contrast button.btn,
.contrast .acesso-rapido-item {
    border: 2px solid white !important;
}

.contrast .btn-default,
.contrast .back-cinza,
.contrast .botao-noticia,
.contrast .titulo h2 {
    background-color: transparent;
}

.contrast .btn-primary .badge,
.contrast #bloco-menu ul li a:hover,
.contrast #bloco-menu ul li a:focus,
.contrast #bloco-menu ul li a:active {
    color: var(--Primary0) !important;
}

.contrast .botao-noticia {
    border-color: white !important;
}

.contrast .item-play svg {
    color: #121817;
}


/* STYLE PRIVACIDADE DO SITE */

.cookies-container {
    color: #222;
    position: fixed;
    bottom: 2rem;
    z-index: 1000;
    left: 0;
}

.card-title {
    font-size: 21px;
    line-height: 59%;
}

.card span {
    font-weight: 700;
    font-size: 14px;
}

.card-link {

    font-weight: 800;
    text-decoration: none;
    color: #2F2F2F;
}

.card-text {
    line-height: 150%;
    align-items: center;
    color: #505050;

}

.cookies-content {
    background: white;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;

    border-radius: 4px;
    background: rgba(251, 251, 251, 0.95);

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies-pref label {
    margin-right: 1rem;
}

.cookies-save {
    grid-column: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: var(--Primary0);
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 2rem;
    font-size: 16px;
}

.cookies-save:hover {
    background: var(--Primary2);
    transition: .3s;
}

@media (max-width: 500px) {
    .cookies-content {
        grid-template-columns: 1fr;
    }

    .cookies-save {
        grid-column: 1;
        grid-row: 3;
    }
}

/* Slider Swiper */

.destaques {
    border-radius: 6px;
    /* height: 55vh; */
}

.destaques .swiper-slide::before {
    background: linear-gradient(180deg, rgba(71, 74, 77, 0) 64.03%, rgba(71, 74, 77, 0.5) 72.31%, rgba(71, 74, 77, 0.6) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
}

.destaques .swiper-slide {
    /* display: flex;
    justify-content: center;
    position: relative;
    color: white;
    overflow: hidden;
    border-radius: 6px;
    flex-direction: column;
    align-content: center; */
    /* display: grid; */
}

.destaques .swiper-slide .texto {
    position: absolute;
    bottom: 6vh;
    padding: 0 5vh;
    color: white;
}

.destaques .swiper-slide .texto p {
    font-size: 16px;
}

.destaques .swiper-slide .texto h2 {
    margin-bottom: 3vh;
}

.destaques .swiper-control {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    flex-direction: column;
    z-index: 99;
}

.destaques .swiper-control div {
    display: flex;
    flex-direction: column;
    position: unset;
    margin: 0;
    width: 50px;
    height: 50px;
    color: #224457;
    background-color: white;
}

.destaques .swiper-button-next:after,
.destaques .swiper-button-prev:after,
.banners .swiper-button-next:after,
.banners .swiper-button-prev:after {
    font-size: 17px;
}

.destaques .swiper-pagination .swiper-pagination-bullet {
    border-radius: 4px;
    width: 55px;
    height: 10px;
}

.destaques .swiper-pagination-bullet-active {
    background-color: white;
}

.destaques .swiper-horizontal>.swiper-pagination-bullets, .destaques .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 3vh;
}

@media screen and (max-width: 992px) {

    .destaques .swiper-slide {
        flex-direction: row;
    }

    .destaques .swiper-slide .texto {
        bottom: 2vh;
        padding: 0 2vh;
    }
}

@media screen and (max-width: 768px) {
    .destaques {
        height: 40vh;
    }

    .destaques .swiper-slide .texto {
        bottom: 4vh;
    }
}


/* Bloco Fique Conectado ou Newsletter V2 */
#bloco-fique-conectado .titulo h2 {
    background-color: transparent;
}

#bloco-fique-conectado .titulo::after {
    display: none;
    font-weight: unset;
}

#bloco-fique-conectado input {
    border: 2px solid var(--Primary0);
    padding: 8px 16px;
    height: auto;
    font-size: 16px;
}

#bloco-fique-conectado button {
    display: flex;
    /* width: 100%; */
    /* justify-content: center; */
}

#bloco-fique-conectado .loader {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-top: 2px solid var(--Primary2);
    margin-left: 15px;
}

@media screen and (min-width: 992px) {
    #bloco-fique-conectado form {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    #bloco-fique-conectado .bloco-vertical-middle {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    #bloco-fique-conectado button {
        float: right;
    }

    .card {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .card h3 {
        margin-top: 0;
    }

    .card .form-group.text-right {
        margin-bottom: 0;
    }

    #bloco-fique-conectado input {
        margin-bottom: 2vh;
    }
}

/* Páginas */
.panel-primary {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.panel-body table[border='0'] {
    border: none;
}

.panel-body table[border='0'] td {
    border: none;
}

.panel-body table[border='0'] tr {
    border: none;
}

.auto-caption img {
    height: auto !important;
}