@font-face {
    font-family: "AvenirLTStd";
    src: url("/assets/site/theme23/fonts/AvenirLTStd-Black.otf");
}

@font-face {
    font-family: "AvenirLTStd-Book";
    src: url("/assets/site/theme23/fonts/AvenirLTStd-Book.otf");
}

:root {
    font-size: 1rem;
    --azul: #263789;
    --amarelo:#FFDD00;
    --verde: #70B643;
    --preto: #231f20;
}

html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    background: #f8f8f8;
    color: var(--preto);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li .ph {
    font-size: 1.125rem;
}

ul li .ph-bold {
    font-size: 1.125rem;
}

a {
    color: var(--verde);
    text-decoration: none;
}

a:hover {
    color: var(--verde);
    text-decoration: none;
}

a[href*="mailto"] {
    text-decoration: underline;
}

img {
    border-radius: 6px;
    object-fit: cover;
}

.carousel .ph {
    color: white;
    font-size: 40px;
}

.carousel .ph-bold {
    color: white;
    font-size: 40px;
    background: black;
    border-radius: 8px;
}

.titulo-sessao {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--preto);
}

.titulo-sessao-menor {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

span.azul {
    color: var(--verde);
}

.azul {
    color: var(--azul) !important;
}

span.verde {
    color: var(--verde);
}

.verde {
    color: var(--verde) !important;
}

.btn-ver-todos {
    font-size: 1rem;
    font-weight: 600;
    color: var(--verde);
}

.btn-ver-todos:hover {
    color: var(--verde);
    text-decoration: underline;
}

.btn-ver-todos.sem-margem-esquerda {
    margin-left: -12px;
}

.dropdown-toggle::after {
    content: unset;
}

.dropdown a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: inherit;
}

.dropdown a:active {
    background: rgba(0, 0, 0, 0.05);
    color: inherit;
}

.drop-margin-inner {
    padding: 10px;
}

.navbar-toggler {
    background-color: #edf3fc;
    border-color: transparent;
}

.break-on-mobile {
    display: none;
}

.menu-covid {
    display: flex;
    text-transform: uppercase;
    gap: 30px;
    font-size: 14px;
}

.menu-covid a {
    position: relative;
    font-weight: 500;
}

.menu-covid a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    left: 50%;
    bottom: 0;
    background-color: var(--verde);
    transition: 0.3s;
}

.menu-covid a:hover::after {
    left: 0;
    width: 100%;
}

.menu-covid-mobile,
#menuOuvidoriaMobile,
.titulo-menu {
    display: none;
}

#menuAcessibilidade {
    position: fixed;
    right: 10px;
    bottom: calc(50% + 30px);
    background-color: #ecedff;
    border-radius: 8px;
}

#menuAcessibilidade a,
#menuAcessibilidade li:first-child {
    width: 40px;
    height: 35px;
    box-sizing: content-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menuAcessibilidade li:first-child i {
    color: #888
}

#menuAcessibilidade a:hover {
    background-color: rgba(0, 0, 0, .03);
}

#menuAcessibilidade a,
#menuAcessibilidade i {
    font-size: 16px;
}

#menuAcessibilidade li + li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    height: 1px;
    background-color: #e0e0e0;
}

#menuAcessibilidade li:last-child a {
    border-radius: 0 0 8px 8px;
}

#menuPrincipalWrapper {
    min-height: 123px;
    display: flex;
    background-color: #ffffff;
}

#menuPrincipalWrapper .container {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    align-items: center;
}

#menuPrincipalWrapper .navbar-toggler {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: all 0.5s ease-in-out;
}

#menuPrincipalWrapper .navbar-toggler .burger {
    width: 25px;
    height: 2px;
    position: relative;
    background-color: var(--verde);
    transition: all 0.5s ease-in-out;
}

#menuPrincipalWrapper .navbar-toggler .burger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--verde);
    transition: all 0.5s ease-in-out;
    transform: translateY(-9px);
}

#menuPrincipalWrapper .navbar-toggler .burger::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--verde);
    transition: all 0.5s ease-in-out;
    transform: translateY(9px);
}

#menuPrincipalWrapper .navbar-toggler:not(.collapsed) .burger {
    transform: translateX(-25px);
    background-color: transparent;
}

#menuPrincipalWrapper .navbar-toggler:not(.collapsed) .burger::before {
    transform: rotate(45deg) translate(18px, -18px);
}

#menuPrincipalWrapper .navbar-toggler:not(.collapsed) .burger::after {
    transform: rotate(-45deg) translate(18px, 18px);
}

#menuPrincipal {
    flex-grow: 1;
    background-color: var(--verde);
    border-top: 4px solid var(--amarelo);
}

#menuPrincipal ul:not(.dropdown-menu) {
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

#menuPrincipal a.nav-link {
    display: flex;
    gap: 2px;
    padding: 5px 9px;
    align-items: center;
    color: #ffffff;
    background-color: transparent;
    outline: none;
    font-weight: 500;
}

#menuPrincipal a.nav-link i {
    font-size: 0.8em;
}

#menuPrincipal a.nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

#menuPrincipal .dropdown-menu {
    min-width: 230px;
}

#menuPrincipal .dropdown-menu a {
    padding: 5px 20px;
    white-space: normal;
    min-width: 420px;
}

#menuPrincipal .navbar-nav > li.dropdown > a::after {
    content: "\e136";
    font-family: "Phosphor";
    font-weight: bold;
    font-size: 0.7rem;
    border: 0;
}

#menuPrincipal .navbar-nav > li.dropdown.show > a::after {
    content: "\e13c";
}

.menuPrincipal-desktop {
    padding: 2rem;
}

#logo img,
#logo svg {
    max-height: 100px;
    width: 100%;
    object-fit: contain;
    object-position: left;
    border-radius: 0;
}

.logo-contraste {
    display: none;
}

#logo-flex {
    font-family: "AvenirLTStd", sans-serif;
    display: flex;
    align-items: center;
    line-height: 1.3;
    gap: 0 10px;
}

.logo-flex-container {
    border-right: 2px solid #7c7c7b;
    padding-right: 15px;
    width: 219px;
}

#logo-sigla {
    font-family: "AvenirLTStd", sans-serif;
    color: #333333;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: right;
}

.logo-flex-img {
    width: 120px;
}

.logo-flex-img img {
    width: 100% !important;
}

#logo-descricao {
    font-family: "AvenirLTStd-Book", sans-serif;
    text-align: right;
    color: #333333;
    font-weight: 600;
}

/*logo animation*/
#contorno path {
}

#logoFinal {
    opacity: 0;
}

#contorno #prefeitura path {
    stroke: #7C7C7B;
    stroke-width: .5;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

#contorno #portoVelho path {
    stroke: black;
    stroke-width: .5;
    stroke-dasharray: 93;
    stroke-dashoffset: 93;
}

#contorno #brasao path {
    stroke: #9f4600;
    stroke-width: 2;
    stroke-dasharray: 1119;
    stroke-dashoffset: 1119;
}

#contorno #faixa path {
    stroke: #004ebd;
    stroke-width: 2;
    stroke-dasharray: 555;
    stroke-dashoffset: 555;
}

@keyframes line-anim {
    80% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 0;
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animar-svg #contorno path {
    animation: line-anim 2s ease-in-out normal;
}

.mostrar-logo {
    animation: fill .3s linear;
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
}

/*fim logo animation*/

#menuOuvidoria {
    display: flex;
    gap: 12px;
}

#menuOuvidoria a,
#menuOuvidoria button i {
    color: #7c7c7b;
    position: relative;
    display: flex;
    align-items: center;
    /*text-transform: uppercase;*/
    font-size: 0.8125rem;
    font-weight: 500;
    transition: 0.3s;
}

#menuOuvidoria a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #7c7c7c;
    transition: 0.3s;
}

#menuOuvidoria a:hover::after {
    left: 0;
    width: 100%;
}

#menuOuvidoria img {
    max-width: 24px;
}

#menuOuvidoria button,
#campoBusca button {
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
}

#menuOuvidoria button i {
    font-size: 1rem;
}

#ouvidoria-esic {
    display: flex;
}

#contrasteFonte {
    display: flex;
}

#contrasteFonte a {
    margin-left: 5px;
}

.divider {
    border: 0;
    border-top: 2px solid brown;
}

#campoBusca {
    height: 30px;
    overflow: hidden;
    /*border: 1px solid #ccc;*/
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.m {
    margin-top: -30px;
}

#links {
    display: flex;
    transition: .3s;
}

#links, #menuOuvidoria {
    height: 30px;
}

#campoBusca button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b7b7b;
    position: relative;
}

#formBusca {
    position: relative;
}

#formBusca input {
    border: 1px solid #BBB;
    border-radius: 4px;
    width: 320px;
}

#SearchableText {
    padding-right: 45px;
    height: 30px;
}

#campoBuscaMobile {
    display: none;
}

#collapseBusca {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 10px;
    background-color: #f1f0f5;
    border-radius: 0 0 4px 4px;
}

#campoBusca #btnBusca {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0s;
    border-radius: 0 4px 4px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btnBusca:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#busca-principal {
    width: 300px;
}

#busca-principal .input-group-text {
    padding: 0;
}

#busca-principal .input-group-text button {
    height: 100%;
    border: 0;
    width: 40px;
    border-radius: 0 4px 4px 0;
    color: #666;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--verde);
    overflow-x: hidden;
    transition: 0.5s;
    padding-bottom: 50px;
    z-index: 9999;
}

.sidenav a {
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    color: #ffffff;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidenav a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav a.closebtn {
    border: none;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 36px;
    margin-left: 0;
    padding: 14px 25px;
}

.sidenav::-webkit-scrollbar-track {
    width: 8px;
}

.sidenav::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

.sidenav::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.sidenav .fa-angle-right {
    float: left;
    font-size: 1.5em;
    margin-right: 8px;
}

#mySidenavInner > a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#secretariasTitulo {
    padding-left: 20px;
    color: #ffffff;
    font-weight: bolder;
    margin: 14px 0px;
    font-size: 36px;
}

.sub-secretarias a {
    padding: 5px 0px 5px 35px;
    border-top: none;
}

#filtrarSecretarias {
    border: 0;
    margin: 8px 8px 8px 20px;
    padding: 0 10px;
    background-color: #ffffff;
    height: 35px;
    width: calc(100% - 50px);
    line-height: 35px;
    outline: none;
}

#destaquesWrapper {
    margin-top: 8px;
}

#destaquesWrapper img {
    width: 100%;
    height: unset; /*333px; */
    display: block;
}

#carouselDestaques .carousel-indicators li {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    margin-left: 6px;
    border-radius: 100%;
}

#carouselDestaques .carousel-indicators .active {
    opacity: 1;
    background-color: var(--amarelo);
}

#carouselDestaques ol.carousel-indicators {
    bottom: -10px;
}

#carouselDestaques .carousel-control-next,
#carouselDestaques .carousel-control-prev {
    opacity: 0.7;
}

#servicos {
    background: white;
}

.servicos-items {
    border-top: 4px solid #F8D849;
}

.servicos-head-titulo {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 30px;
    background: var(--verde);
}

.servicos-head p {
    margin: 0;
    margin-left: 10px;
    color: white;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;

}

.servicos-head i {
    font-size: 22px;
    color: white;
}

.servicos-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.servicos-body-content {
    margin-left: 30px;
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
}

.servicos-body-content a {
    white-space: normal;
    display: block;
    padding: 7px;
    position: relative;
}

.servicos-body-content a:hover {
    filter: brightness(0.7);
}

.tag-novo {
    background: red;
    color: white;
    border-radius: 4px;
    padding: 0 5px;
    font-size: .9rem;
}

.tag-novo:empty {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    left: -6px;
    padding: 0;
}

.tag-novo + .tag-novo {
    display: none;
}

#lista-informacoes .info {
    position: relative;
}

#lista-informacoes .info img {
    cursor: pointer;
    transition: all 0.3s ease-out;
    border-radius: 0;
    border: 0;
    width: 100%;
    height: 320px;
}

#lista-informacoes .info:hover img {
    box-shadow: 0 0 20px rgba(0, 0, 150, 0.3);
}

.informacoes-description {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-align: center;
    padding: 1.25rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.informacoes-description p {
    color: var(--preto);
    font-size: 1rem;
    font-weight: 500;
}

.ver-todos-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--preto);
}

.bloco-acesso-rapido .card {
    flex-direction: row;
    background: transparent;
    border: 0;
    gap: 20px;
    flex-grow: 1;
    flex-wrap: wrap;
}

.bloco-acesso-rapido .card > div {
    background: white;
}

.mais-servicos-titulo > h4 {
    margin-top: 15px;
}

.acesso-rapido-card {
    border: 2px solid var(--verde);
    border-radius: 6px;
    padding: 20px;
    height: 100%;
    width: 352px;
}

.acesso-rapido-card li {
    padding: 8px;
}

.acesso-rapido-card li:hover {
    color: var(--verde);
}

.acessoRapido {
    font-weight: 400;
    color: var(--preto);
    font-size: 16px;
}

.acesso-rapido-titulo {
    color: var(--preto);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 16px;
}

.intranet {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.intranet .col-sm-3 {
    background: #cccccc;
    padding: 20px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 90px;
}

a.btn-cinza {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

#canaisAcesso {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}

#canaisAcesso .col-sm-3 {
    height: 150px;
    padding: 0 5px;
    margin-bottom: 20px;
}


#canaisAcesso a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F0F5;
    border-radius: 6px;
    height: 100%;
    width: 100%;
}

#canaisAcesso .col-sm-3 img {
    width: 100%;
    height: 100%;
}


#noticias {
    display: grid;
    grid-template-columns: 544px 1fr;
    grid-template-rows: repeat(2, 157px);
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background: #eee;
    border-radius: 10px 0 10px 10px;
    position: relative;
    border: 1px solid #e0e0e0;
}

#noticias img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#linkAgencia {
    position: absolute;
    bottom: 100%;
    right: -1px;
    background: #eee;
    border-radius:6px 6px 0 0;
    padding: 10px 20px;
    font-weight: 600;
    color: #007bff;
    text-decoration: underline;
    border: 1px solid #e0e0e0;
    border-bottom: 0;
}

.item-noticia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 156px;
    gap: 16px;
}

.item-noticia .image-noticia {
    grid-column: 1;
}

.item-noticia .info span {
    font-weight: 600;
    color: var(--verde);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item-noticia .info p {
    margin-top: 6px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--preto);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.item-noticia .info .data-noticia {
    margin-top: 5px;
    font-weight: 300;
    color: var(--preto);
}

.item-noticia:first-of-type {
    grid-row: 1/3;
    position: relative;
    display: block;

    .info {
        position: absolute;
        padding: 0 20px 10px;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.65) 100%);
        border-radius: 0 0 6px 6px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        text-shadow: 0 0 5px black;
    }

    .info span {
        font-weight: 600;
        color: #ecf0f3;
        font-size: 18px;
    }

    .info .data-noticia {
        margin-top: 6px;
        font-weight: 400;
        color: #ecf0f3;
    }

    .descricao-noticia-destaque p {
        font-weight: 600;
        font-size: 22px;
        color: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    & > a {
        display: block;
        height: 100%;
    }
}

.grid-outras-secretarias {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.grid-outras-secretarias img {
    width: 100%;
    height: 115px;
    object-fit: cover;
}

.noticia-secretarias {
    display: block;
    gap: 10px;
    align-items: start;
    align-self: start;
}

.noticias-secretarias-info {
    margin-top: 6px;
    font-size: 0.95em;
    line-height: 1.5em;
}

.noticias-secretarias-info p {
    font-weight: 500;
    color: var(--preto);
}

.noticias-secretarias-info p small {
    font-weight: 500;
}

.noticias-secretarias-info > small {
    font-weight: 600;
}

.gestores-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
    padding-top: 30px;
}

.gestor {
    display: flex;
    align-items: start;
    gap: 10px;
}

.gestor img {
    width: 70px;
    object-fit: cover;
}

.img-gestor {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.img-avatar {
    box-shadow: none;
}

.gestor-info {
    font-weight: 500;
    font-size: 14px;
}

.gestor-info span {
    color: var(--preto);
    text-transform: uppercase;
}

.gestor-info p {
    font-size: 12px;
}

#programasEAcoes {
    display: flex;
    flex-direction: column;
}

#programasEAcoes .titulo-sessao-menor {
    white-space: nowrap;
    margin: 0;
    padding: 20px 0;
}

#galeriaVideos {
    display: grid;
    grid-template-columns: 544px 1fr;
    grid-template-rows: repeat(2, 160px);
    grid-gap: 30px;
    margin-bottom: 150px;
}

#galeriaVideos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

#galeriaVideos img:hover {
    box-shadow: 0 0 20px rgba(0, 0, 150, 0.3);
}

#galeriaVideos li {
    position: relative;
}

#galeriaVideos .item-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 156px;
    gap: 16px;
}

#galeriaVideos li:first-child {
    grid-row: 1/3;
}

#galeriaVideos li:first-child div {
    margin-top: 10px;
}


#galeriaVideos li:not(:first-child) a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 156px;
    gap: 16px;
}

#galeriaVideos li:not(:first-child) a i {
    left: 100px;
}

#galeriaVideos .ph {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    font-size: 50px;
    color: #ffffff;
    text-shadow: 0px 0px 15px #000;
}

#galeriaVideos .ph-bold {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    font-size: 50px;
    color: #ffffff;
    text-shadow: 0px 0px 15px #000;
}

.mix-details {
    height: 200px;
}

.mix-details img {
    width: 100%;
    height: 100%;
}

#sliderGaleria .row + .row {
    margin-top: 20px;
}

#sliderGaleria .carousel-control-next {
    background: var(--preto);
}

#sliderGaleria .carousel-control-prev {
    background: var(--preto);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    width: 30px;
    height: 3px;
    background-color: var(--preto);
    opacity: 0.3;
}

.carousel-control-next {
    position: absolute;
    top: calc(50% - 45px);
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.3;
    transition: opacity 0.15s ease;
    right: 10px;
}

.carousel-control-next:focus {
    opacity: 0.6;
}

.carousel-control-next:hover {
    opacity: 0.6;
}

.carousel-control-prev {
    position: absolute;
    top: calc(50% - 45px);
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.3;
    transition: opacity 0.15s ease;
    left: 10px;
}

.carousel-control-prev:focus {
    opacity: 0.6;
}

.carousel-control-prev:hover {
    opacity: 0.6;
}

.row.galerias {
    margin-bottom: 30px;
}

.row.galerias img {
    height: 190px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.row.galerias .card {
    height: 100%;
    transition: .3s;
}

.row.galerias .card:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.row.galerias .card-title,
.row.galerias .card-text {
    font-size: 1rem;
    color: var(--preto);
}

footer {
    margin-top: 30px;
    background-color: var(--verde);
    color: #ffffff;
    padding: 10px 0;
    font-weight: 500;
    border-top: 4px solid var(--amarelo);
}

footer .tag {
    opacity: 0.7;
    text-transform: uppercase;
    font-size: 13px;}

footer a {
    color: #ffffff;
    font-size: 14px;
}

footer a:hover {
    color: var(--amarelo);
}

footer .coluna1 {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-right: 3rem;
}

footer #imgFooter {
    width: 150px;
    border-radius: 0;
    margin: 18px;
}

footer .coluna2 {
    display: flex;
    flex-direction: column;
}

footer .coluna2 > * {
    margin-bottom: -10px;
}

footer .coluna2 p {
    max-width: 300px;
}

footer .coluna3 a {
    line-height: 200%;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

footer div#linksRedesSociais {
    display: flex;
    justify-content: space-between;
}

footer div#linksRedesSociais i {
    font-size: 30px;
}

#posFooter {
    height: 50px;
    background-color: var(--verde);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

#posFooter img {
    max-height: 50px;
    max-width: 75px;
}

#avisoCookie {
    display: none;
}

#avisoCookie .container {
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    position: fixed;
    bottom: 10px;
    left: calc(50% - 570px);
    display: flex;
    border-radius: 6px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination > li > a:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > li > a:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination > li > span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > li:first-child > a {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination > .active > a {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .active > a:hover {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .active > a:focus {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .active > span {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .active > span:hover {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .active > span:focus {
    z-index: 3;
    color: #ffffff;
    background-color: var(--verde);
    border-color: var(--verde);
    cursor: default;
}

.pagination > .disabled > span {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .disabled > span:hover {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .disabled > span:focus {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .disabled > a {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .disabled > a:hover {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .disabled > a:focus {
    color: #777777;
    background-color: #ffffff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination-lg > li > a {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.pagination-sm > li > a {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

#msgSemusa {
    padding: 20px;
    background: #eee;
    font-size: 1.3em;
    margin: -5px 0 10px;
}

#msgSemusa a {
    color: var(--verde);
    padding: 0;
    margin-top: 8px;
}

main .container {
    margin-top: 30px;
}

.noticia-conteudo {
    font-size: 18px;
}

.legenda {
    text-align: center;
    margin: 15px 0;
    color: var(--verde);
}

.artigo-img-wrap {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.artigo-img-wrap > img {
    width: 100%;
}

.artigo-img-wrap[style*=float] {
    /*max-width: 615px;*/
    width: unset;
}

.artigo-img-wrap[style*=left] .legenda {
    padding-right: 15px;
}

.artigo-img-wrap[style*=right] .legenda {
    padding-left: 15px;
}

#noticiaTag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    font-size: 18px;
    font-weight: 500;
    width: calc(50% + 50vw);
}

.not-titulo {
    color: var(--preto);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2.5em;
    text-align: left;
}

.not-autor {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.not-autor > * {
    margin-right: 25px;
    font-weight: 600;
    font-size: 16px;
}

.not-autor .data {
    font-weight: 500;
}

.not-autor .avatar img {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    border: 2px solid #4478da;
    box-sizing: content-box;
}

article p {
    text-align: justify;
    margin-bottom: 25px;
    line-height: 1.6;
}

article img[style*=float] {
    margin: 15px;
}

article img[style*="float: left"] {
    margin-left: 0;
}

article img[style*="float: right"] {
    margin-right: 0;
}

.not-categoria {
    margin: 50px 0;
    font-weight: 500;
}

.not-categoria a {
    font-weight: 400;
}

.not-redes {
    display: flex;
    gap: 10px;
    align-items: center;

    &:first-child {
        font-weight: bold;
    }

    & > a {
        width: 38px;
        height: 38px;
        border-radius: 4px;
        background: black;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    #not-link-whatsapp {
        background-color: #26d366;
    }

    .ver-foto-de-capa {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.noticia-redes-sociais + .galeria-inner {
    margin-top: 30px;
}

.wrapper-resultado {
    padding: 30px 0;
}

#resultBarra {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.resultado-pesquisa {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 256px auto;
    grid-template-rows: 157px;
    gap: 15px;
}

.resultado-pesquisa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#btnPA::after {
    content: "\e13c";
    font-family: "Phosphor";
    font-weight: bold;
    border: 0;
}

#btnPA.collapsed::after {
    content: "\e136";
}

.tag-noticia {
    font-weight: 500;
    font-size: 16px;
    color: var(--preto);
    margin-bottom: 5px;
    line-height: 120%;
}

.titulo-noticia-pesquisa {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.descricao-noticia {
    color: var(--preto);
    font-weight: 300;
    margin-bottom: 10px;
}

.datanot {
    color: var(--preto);
    font-weight: 100;
    font-size: 15px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    #mySidenav {
        box-shadow: rgba(0, 0, 0, 0.5) 4px 0px 14px;
    }
}


.arquivos table.dataTable tbody tr {
    background-color: transparent;
}

.arquivos table.dataTable tbody td {
    padding: 0;
    border: 0;
    display: flex;
}

.arquivos table.dataTable tbody td.dataTables_empty {
    justify-content: center;
    color: gray;
}

#dtseparador {
    padding: 12px 20px 4px;
    font-weight: bold;
    background-color: #eee;
    margin-top: 36px;
    display: flex;
    flex-basis: 100%;
}

.arquivos table.dataTable tbody td:has(#dtseparador) {
    flex-wrap: wrap;
}

.arquivos a {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.arquivos td:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.arquivos i {
    font-size: 1.4em;
    color: var(--verde);
    margin: 0 4px;
}

.arquivos .ph-folder-simple {
    color: #F4BE2E;
}

.arquivos .icone {
    width: auto;
    height: auto;
    max-width: 21px;
    max-height: 24px;
    margin-right: 7px;
}

.arquivos .arquivos-total,
.arquivos .edit-link {
    /*margin-left: auto;*/
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 40px;
    justify-content: end;
    color: #444;
}

.arquivos .edit-link {
    display: none;
    padding: 0;
    justify-content: center;
}

.arquivos .lgg td:hover .edit-link {
    display: flex;
}

.arquivos .arquivo-descricao {
    color: #999;
    /* margin-left: 8px; */
    /* font-size: .875rem; */
}

.arquivos .arquivo-assuntos {
    float: right;
    font-size: 11px;
}

.arquivos .arquivo-info {
    width: 35px;
}

.arquivos input[type="search"] {
    border: 1px solid #aaa;
    border-radius: 4px;
}

/* nova aparência da lista de arquivos */
.arquivos #datatablesgrid_wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 6px;
}

.arquivos #datatablesgrid_wrapper table {
    width: 100% !important;
    border: 0;
}

.arquivos label {
    margin-bottom: 0;
}

.arquivos #datatablesgrid_length,
.arquivos #datatablesgrid_filter,
.arquivos #datatablesgrid_info,
.arquivos #datatablesgrid_paginate {
    width: 50%;
    background-color: rgba(0, 0, 0, .06);
    padding: 10px;
    font-weight: normal;
    /* border-bottom: 1px solid rgba(0,0,0,.125); */
    /* border-radius: 8px 8px 0 0; */
}

.arquivos #datatablesgrid_length {
    border-top-left-radius: 6px;
}

.arquivos #datatablesgrid_filter {
    border-top-right-radius: 6px;
}

.arquivos #datatablesgrid_info {
    border-bottom-left-radius: 6px;
}

.arquivos #datatablesgrid_paginate {
    border-bottom-right-radius: 6px;
}

.arquivos #datatablesgrid_info {
    display: flex;
    align-items: center;
}

.arquivos table.dataTable thead th {
    border: 0;
    font-weight: normal;
    font-size: .875rem;
    color: rgba(0, 0, 0, 0.7);
    background: none;
}

.arquivos table.dataTable thead th.sorting_desc:after {
    font-family: "Phosphor";
    vertical-align: middle;
    margin-left: 5px;
    content: "\e136";
}

.arquivos table.dataTable thead th.sorting_asc:after {
    font-family: "Phosphor";
    vertical-align: middle;
    margin-left: 5px;
    content: "\e13c";
}

.arquivos #datatablesgrid_length,
.arquivos #datatablesgrid_filter {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.arquivos #datatablesgrid_info,
.arquivos #datatablesgrid_paginate {
    border-top: 1px solid rgba(0, 0, 0, .125);
    margin-top: 20px;
}

.arquivos .arquivo-item,
.arquivos .pasta-item {
    flex-grow: 1;
}

.arquivos .arquivo-item,
.arquivos .pasta-item {
    padding: 4px 15px;
    color: #444;
}

.arquivos .vazio {
    color: #888;
}

.arquivos .vazio i {
    color: #aaa;
}

.arquivos #datatablesgrid_length select,
.arquivos input[type="search"] {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 4px;
    background-color: white;
}

.arquivos #breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* font-weight: 500; */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.arquivos #breadcrumb a {
    display: unset;
    border-radius: 4px;
    color: var(--preto);
}

.arquivos #breadcrumb a:hover {
    text-decoration: underline;
}

.arquivos #breadcrumb span {
    color: #aaa;
}

/* FIM nova aparência da lista de arquivos */

a[href*="/arquivos/download/56434/"] {
    position: relative;
}

a[href*="/arquivos/download/56434/"]:after {
    content: "Em relação aos incentivos relacionados a projetos culturais, o Município de Porto Velho não possui programas de incentivos fiscais com foco específico nesse público.";
    display: none;
    position: absolute;
    top: 0;
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .3);
}

a[href*="/arquivos/download/56434/"]:hover:after {
    display: initial;
}

#carouselProgramasDesktop ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
}

#carouselProgramasDesktop li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    cursor: pointer;
    text-align: center;
    height: 100%;

    small {
        color: #999;
    }
}

#carouselProgramasDesktop li a:hover {
    box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.08);
}

#carouselProgramasDesktop a {
    font-weight: 500;
    color: var(--preto);
    text-align: center;
}

@media (max-width: 575px) {
    #carouselProgramasDesktop ul {
        display: block;
    }

    #carouselProgramasDesktop li {
        margin-bottom: 10px;
    }
}

#listaSecretarias .sub {
    padding-left: 45px;
    border-top: 0;
    position: relative;
}

#listaSecretarias .sub::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 30px;
    border: 1px solid white;
    border-top: 0;
    border-right: 0;
    left: 20px;
    top: 0;
}

/*====[ NOVA PESQUISA ]====*/
#novaPesquisa .nav-tabs .nav-link {
    background-color: white;
    border-color: #ccc;
    margin-right: 15px;
    border-radius: 23px;
}

#novaPesquisa .nav-tabs .nav-item.show .nav-link,
#novaPesquisa .nav-tabs .nav-link.active {
    border-color: #999;
    background-color: rgba(0, 0, 0, .01);
}

#novaPesquisa button:focus {
    outline: 0px auto -webkit-focus-ring-color;
}

#novaPesquisa .tab-content {
    padding-top: 20px;
}

#bannerContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

#novaPesquisa i.ph-folder-simple {
    color: #F4BE2E;
    vertical-align: middle;
    font-size: 1.3em;
}

#novaPesquisa i.ph-file {
    color: #E94848;
    vertical-align: middle;
    font-size: 1.1em;
}

#nav-arquivos ul:not(.pagination) a {
    padding: 2px 0;
    display: inline-block;
    color: #444;
}

#nav-arquivos .icone {
    width: 18px;
    height: auto;
}

#nav-menus i {
    vertical-align: middle;
    font-size: 0.9em;
}

#novaPesquisa .nav-tabs {
    border: 0;
}

#nav-galerias .card-img-top {
    border-radius: 4px 4px 0 0;
}

#nav-fotos img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

#nav-conteudos img {
    width: 200px;
    height: 100%;
    margin-right: 15px;
    border-radius: 6px 0 0 6px;
}

#nav-conteudos .um {
    font-weight: bold;
    margin-top: 5px;
    color: #333;
}

#nav-conteudos .dois {
    font-weight: 500;
    color: var(--verde);
    font-size: 1.2em;
}

#nav-conteudos .tres {
    color: #666;
}

#nav-conteudos .quatro {
    font-size: .85em;
    margin-top: 2px;
    color: #999;
    margin: 10px 0;
}

/*====[ FIM NOVA PESQUISA ]====*/

#indicadores-filho {
    top: 34px;
    left: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #menuOuvidoria {
        gap: 10px;

        a {
            white-space: nowrap;
        }
    }

}

/*====[ RODAPÉ ]====*/

footer {
    padding: 30px 0;

    .col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #brasaoRodape {
        width: 250px;
        margin: 0 auto;
    }

    address {
        line-height: 1.3rem;
        max-width: 400px;
    }

    a {
        text-decoration: underline;
    }

    ul#linksRodape {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        a {
            display: block;
            position: relative;
        }

        li:not(:last-child) a {
            padding-right: 16px;

            &::after {
                content: "";
                position: absolute;
                text-decoration: none;
                width: 2px;
                height: 2px;
                top: calc(50% - 1px);
                right: 7px;
                background-color: white;
                border-radius: 100%;
            }
        }
    }

    #linksRedesSociais a {
        text-decoration: none;
        margin: 0 10px;
    }

    .separador {
        width: 5px;
        height: 5px;
        background: white;
        border-radius: 100%;
        position: relative;

        &::after,
        &::before {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: white;
            border-radius: 100%;
        }

        &::after {
            left: 15px;
        }

        &::before {
            right: 15px;
        }


    }

}

#coleta {
    background-color: var(--verde);
}

.btn-primary {
    background-color: var(--verde);
    border-color: var(--verde);
}

blockquote {
    background: #eaeaea;
    border-left: 4px solid #bbbbbb;
    padding: 30px;
    border-radius: 1px;
    font-style: italic;
    font-size: .9em;

    p:last-of-type {
        margin-bottom: 0;
    }
}
/*====[ FIM RODAPÉ ]====*/
