/*@tailwind base;*/
/*@tailwind components;*/
/*@tailwind utilities;*/


body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER TOPBAR */
.topbar {
    background: #005fba;
    color: white;
    font-size: 12px;
    padding: 8px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar .right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 168px;

}
.topbar span {
    padding-right: 16px;
}
.social-link {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link img {
    width: 16px;
    height: 16px;
}
.logo-img {
    filter: brightness(0) saturate(100%);
}

/* HEADER NAVBAR */
.navbar {
    background: #d7ebff;
    padding: 16px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
    position: relative;
    height: 93px;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 60px !important;
}
.logo-ALPB {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 180px;
    height: 65px;
    flex-shrink: 0;
    margin-left: 125px;
}

.logo-ALPB img {
    height: 100%;
    width: auto;
}



/* MENU */
.navbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 600px;
}
.navbar-menu {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}
nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
nav a,
nav button {
    background: none;
    border: none;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    cursor: pointer;
    font-size: 16px;
}
.menu-principal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.menu-principal ul li {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    width: auto;
    text-align: center;
    margin: 0 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.1s ease-in-out;
}
.menu-principal ul li:hover {
    border-bottom-color: #005fba;
}
.menu-principal .menu > li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(209, 209, 209, 0.81);
}
.menu-principal ul li a {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: bold;
}

/* SUBMENU */
.menu-principal ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    padding: 0;
    margin-left: 15px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    clip-path: inset(0 -10px -10px -10px);
    margin-top: 2px;
}
.menu-principal ul li ul.sub-menu li {
    display: block;
    padding: 10px 15px;
    text-align: start;
    /*width: 260px;*/
    left: -10px;
    width: 100%;
}
.menu-principal ul li:hover ul.sub-menu {
    display: block;
}
.menu-principal ul li ul.sub-menu li:hover {
    border-bottom: 2px solid #005fba;
    background-color: #d3e8fb;
}

/* SEARCH */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 120px;
}
.search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 0 4px;
    width: 160px;
}
.search-box form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-box button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0 4px;
    font-size: 14px;
}
.search-box button:hover {
    color: #000;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {

    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar .right {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .navbar {
        height: auto;
    }

    .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 20px;
        gap: 0;
    }

    .logo-ALPB {
        width: 150px;
        height: 50px;
        margin-left: 0;
    }

    nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .menu-principal ul {
        flex-direction: column;
        width: 100%;
    }

    .menu-principal ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ddd;
        margin: 0;
        padding: 12px 0;
    }

    .menu-principal .menu > li:not(:last-child)::after {
        display: none;
    }

    .menu-principal ul li:last-child {
        border-bottom: none;
    }

    .menu-principal ul li ul.sub-menu {
        position: static;
        margin-left: 20px;
        min-width: auto;
        box-shadow: none;
        display: none;
    }

    .menu-principal ul li:hover ul.sub-menu {
        display: block;
    }

    .menu-principal ul li ul.sub-menu li {
        width: auto;
        border-bottom: none;
    }

    .search-box {
        order: 4;
        width: 100%;
        margin: 10px 0 0 0;
    }

    .search-box input {
        width: 100%;
    }

}


@media (max-width: 1200px) and (min-width: 993px) {
    .topbar .right {
        margin-right: 50px;
    }
    .menu-principal ul li {
        padding: 10px 10px;
        margin: 0 5px;
    }
    .menu-principal .menu > li:not(:last-child)::after {
        right: -2px;
    }
    nav {
        gap: 10px;
    }
    .navbar .container {
        gap: 5px;
        padding: 0 30px;
    }
    .logo-ALPB {
        margin-left: -40px;
    }
    .navbar-content {
        max-width: 500px;
    }
    .search-box {
        margin-right: 0;
    }
    .search-box input {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .logo-ALPB {
        width: 140px;
        height: 45px;
    }
    .topbar {
        font-size: 11px;
    }
    .social-link {
        width: 20px;
        height: 20px;
    }
    .social-link img {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 480px) {

    .navbar .container {
        padding: 0 15px !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-box {
        margin-right: 0 !important;
        width: 100%;
        padding: 8px 12px;
    }

    .search-box input {
        width: 100%;
        min-width: 0;
    }

    .logo-ALPB {
        margin-left: 0 !important;
        width: 130px;
    }
}


/* BOTÃO HAMBÚRGUER */
.hamburger-button {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}
/* MENU MOBILE LATERAL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 25px rgba(0,0,0,0.18);
    padding: 80px 22px 30px;
    transition: right .35s ease;
    z-index: 99999;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid #e6e6e6;
}
.mobile-menu.open {
    right: 0;
}
.close-mobile {
    position: absolute;
    top: 28px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #444;
    transition: transform .2s ease;
}
.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-nav li {
    border-bottom: 1px solid #e4e4e4;
    padding: 0;
    position: relative;
}
.mobile-nav li a {
    display: block;
    padding: 14px 2px;
    font-size: 17px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
    transition: color .2s ease;
}
.mobile-nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .2s ease;
    padding-left: 13px;
}
.mobile-nav li.open > .sub-menu {
    max-height: 1000px;
    padding-top: 4px;
}
.mobile-nav .sub-menu li a {
    display: block;
    padding: 10px 0 10px 10px;
    font-size: 15px;
    color: #444;
    border-left: 2px solid transparent;
    transition: all .2s ease;
}
.mobile-nav .sub-menu li a:hover {
    color: #00008B;
    border-left-color: #00008B;
    background: #eef2ff;
}
.mobile-nav .submenu-toggle {
    float: right;
    font-size: 22px;
    cursor: pointer;
    padding: 10px;
    color: #1c1c1c;
    transition: transform .25s ease;
}
.mobile-nav li.open .submenu-toggle {
    transform: rotate(90deg);
    color: #00008B;
}
.mobile-nav li {
    position: relative;
}
.mobile-nav li a {
    display: block;
    padding: 14px 0;
}
.mobile-nav li.has-children > a {
    padding-right: 25px;
}
@media (max-width: 992px) {

    .hamburger-button {
        display: block;
    }
    .navbar-content {
        display: none !important;
    }
    .search-box {
        width: 100%;
    }
}




/*INDEX*/

/* SECTION SLIDER NOTICIAS */
.noticias-section {
    padding: 1rem 0;
}

/*CABEÇALHO NOTICIAS*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    padding: 0 20px;
}
.title-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    /*background-color: #ffffff;*/
}
.title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #005fba;
}
.title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #005fba;
    text-decoration: none;
}
.title:hover {
    text-decoration: underline;
    color: #005fba;
}
.logo-container-unale {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00008B;
    width: 100px;
    height: 100px;
}
.logo-wrapper-unale {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-unale {
    height: 100px;
    width: auto;
}



@media (max-width: 1200px) and (min-width: 993px) {
    .header {
        padding: 0 23px;
    }
    .title {
        font-size: 1.5rem;
    }
    .logo-container-unale {
        width: 90px;
        height: 90px;
    }
    .logo-unale {
        height: 90px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .title-container {
        margin-top: 1.5rem;
    }
    .title {
        font-size: 1.3rem;
    }
    .title-bar {
        height: 1.2rem;
    }
    .logo-container-unale {
        width: 80px;
        height: 80px;
    }
    .logo-unale {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }
    .title {
        font-size: 1.3rem;
    }
    .title-bar {
        height: 1.2rem;
    }
    .logo-container-unale {
        width: 70px; /* Selo ainda menor */
        height: 70px;
    }

    .logo-unale {
        height: 70px;
    }
}






/* GRID FOTO MANCHETE E DESTAQUES*/
.noticias-section .container {
    max-width: 1200px;
    margin-top: -6px;
    padding: 0 1.25rem;
}
.noticias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .noticias-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* CARROSSEL - FOTO MANCHETE */
.noticias-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.carousel-wrapper {
    position: relative;
    height: 40rem;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.carousel-slide {
    flex: 0 0 100%;
    position: relative;
}
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1.5rem !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.57) 70%, transparent 100%) !important;
    width: 100% !important;
    max-width: 100% !important;
}
.carousel-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: start;
}
.carousel-title a {
    color: inherit;
    text-decoration: none;
}
.carousel-title a:hover {
    text-decoration: underline;
    color: #ffffff;
}
.carousel-excerpt {
    color: #fff;
    font-size: 1rem;
    text-align: start;
}
/* botões do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0, 95, 186);
    color: #fff;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    transition: background 0.3s;
    align-items: center;
    justify-content: center;
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

/* indicadores */
.news-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}
.news-indicator.active {
    background-color: #005fba;
    transform: scale(1.2);
}
.news-indicator:hover {
    background-color: #9CA3AF;
}




/* DESTAQUES */
.noticias-secundarias {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.noticia-item {
    transition: transform 0.3s;
}
.noticia-item:hover {
    /*text-decoration: underline;*/
}
.noticia-thumb {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.noticia-titulo {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #005fba;
}
.noticia-titulo a {
    text-decoration: none;
    color: inherit;
}
.noticia-titulo a:hover {
    text-decoration: underline;
    color: #00008B;
}
.carousel-excerpt-destaque {
    color: #535353;
    font-size: 0.8rem;
    text-align: start;
    margin-top: 0.3rem;
}
.noticias-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    /*margin-right: 370px;*/
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.ver-todas {
    font-size: 0.9rem;
    font-weight: 600 !important;
    color: #005fba !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem
}
.ver-todas .material-symbols-outlined {
    font-size: 1.2rem;
    vertical-align: middle;
}
.ver-todas-texto:hover{
    text-decoration: underline;
}
.noticias-separator{
    margin: 1rem auto 0;
    max-width: 1200px;
    padding: 0 20px;
    border: 0;
    border-top: 1px solid #ddd;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
@media (max-width: 1200px) and (min-width: 993px) {
    .noticias-footer {
        padding: 0 30px;
    }
    .noticias-separator {
        padding: 0 30px;
        max-width: 960px;
    }
    .ver-todas {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .noticias-footer {
        padding: 0 20px;
        margin-top: 1rem;
    }
    .noticias-separator {
        padding: 0 20px;
        max-width: 100%;
    }
    .ver-todas {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .noticias-footer {
        padding: 0 15px;
    }
    .noticias-separator {
        padding: 0 15px;
        max-width: 100%;
    }
    .ver-todas {
        font-size: 0.75rem;
    }
}




/*ESPAÇO CIDADÃO*/
.espaço-cidadao {
    padding: 24px 0;
}
.container-espaço-cidadao {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.title-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.title-bar {
    width: 4px;
    height: 24px;
    background-color: #005fba;
}
.title-link {
    font-size: 24px;
    font-weight: bold;
    color: #005fba;
    text-decoration: none;
}
.title-link:hover {
    text-decoration: underline;
    color: #005fba;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.card {
    background-color: #e2effd;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}
.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: #005fba;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}
.card:hover .card-icon {
    transform: scale(1.1);
}
.card-icon .material-icons {
    font-size: 36px;
}
.card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.2;
}




/*TV-ASSEMBLEIA*/

/*.noticias-separator-tv{*/
/*    margin: 0 auto 1rem;*/
/*    max-width: 1200px;*/
/*    padding: 0 20px;*/
/*    border: 0;*/
/*    border-top: 1px solid #ddd;*/
/*}*/
.secao-padding {
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.container-centralizado {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.flex-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.flex-itens-centro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.barra-azul {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #005fba;
}
.titulo-principal {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 700;
    color: #005fba;
}
.titulo-principal:hover {
    text-decoration: underline;
    color: #005fba;
}
.link-videos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #005fba;
}
.texto-link {
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #005fba;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.texto-link:hover {
    color: #005fba;
    text-decoration: none;
}
.texto-sublinhado:hover {
    text-decoration: underline;
}
.icone-seta {
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-decoration: none;
}
.icone-seta:hover {
    text-decoration: none !important;
}
.grid-videos {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .grid-videos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-videos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/*.video-iframe {*/
/*    width: 100%;*/
/*    height: 12.5rem;*/
/*    border-radius: 0.300rem;*/
/*    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);*/
/*}*/
.video-iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* mantém proporção de vídeo */
    overflow: hidden;
    border-radius: 0.3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
.margem-texto {
    margin-top: 1rem;
}
.titulo-video {
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 600;
    color: #1F2937;
}
.titulo-video a:hover {
    color: #00008b;
}
@media (max-width: 480px) {


    .titulo-principal {
        font-size: 18px;
    }
}
@media (max-width: 400px) {


    .titulo-principal {
        font-size: 15px;
    }
}



/*CARROSSEL HORIZONTAL BANNER*/
.carousel-section {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
}
.container-banner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.carousel-wrapper-banner {
    margin-bottom: 0.5rem;
    position: relative;
}
.carousel-container-banner {
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.carousel-banner {
    position: relative;
    overflow: hidden;
}
.carousel-track-banner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide-banner {
    flex-shrink: 0;
    width: 100%;
}
.carousel-image-banner {
    width: 100%;
    height: 11.25rem;
    object-fit: cover;
}
.carousel-button-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #005fba;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}
.carousel-container-banner:hover .carousel-button-banner {
    opacity: 1;
}
.prev-button-banner {
    left: 1rem;
}
.next-button-banner {
    right: 1rem;
}
.carousel-button-banner:hover {
    background-color: #005fba;
}
.indicators-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}
.horizontal-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}
.horizontal-indicator.active {
    background-color: #005CC8FF;
}
.horizontal-indicator:hover {
    background-color: #9ca3af;
}
.indicators-news {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 3px;
}
.news-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}
.news-indicator.active {
    background-color: #005fba;
}
.news-indicator:hover {
    background-color: #9ca3af;
}
/* ======== CARROSSEL - AJUSTES MOBILE ======== */
@media (max-width: 768px) {

    .carousel-section {
        padding-top: 0.5rem;
        padding-bottom: 1.5rem;
    }

    .container-banner {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 100%;
    }

    .carousel-wrapper-banner {
        margin-bottom: 0.8rem;
    }

    .carousel-image-banner {
        height: 5rem;
        object-fit: cover;
    }

    .carousel-button-banner {
        width: 2rem;
        height: 2rem;
        opacity: 1;
    }

    .prev-button-banner {
        left: 0.5rem;
    }

    .next-button-banner {
        right: 0.5rem;
    }

    .indicators-banner {
        margin-top: 1rem;
        gap: 0.3rem;
    }

    .horizontal-indicator {
        width: 0.4rem;
        height: 0.4rem;
    }
}






/*CARROSSEL CARDS CAMPANHAS*/
.carousel-section-card {
    padding: 3.25rem 0;
}
.container-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.carousel-container-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.carousel-track-card {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2.5rem;
}
.carousel-item-card {
    overflow: hidden;
    border-radius: 0.125rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.carousel-image-card {
    width: 10rem;
    height: 20rem;
    object-fit: cover;
}
.carousel-controls-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.carousel-button-card {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.carousel-button-card:hover {
    background-color: #f9fafb;
    border-color: #005fba;
}
.carousel-button-card .material-icons {
    color: #4b5563;
    font-size: 1rem;
}
.carousel-indicators-card {
    display: flex;
    gap: 0.5rem;
}
.indicator-card {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.indicator-card:hover {
    background-color: #9ca3af;
}
.indicator-card.active {
    background-color: #005fba;
}





.category-18 .content-wrapper {
    min-height: auto;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.categoria18{
    /*background-color: #357b49;*/
}
.category-18-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-18-layout .featured-image {
    flex: 0 0 150px;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-18-layout .conteudo {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}
.category-18-layout .conteudo p {
    text-indent: 0 !important;
    margin-top: 0 !important;
}

.category-18-layout img.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 1rem;
}

/* Responsivo: telas pequenas */
@media (max-width: 768px) {
    .category-18-layout {
        flex-direction: column;
    }

    .category-18-layout .featured-image,
    .category-18-layout .conteudo {
        max-width: 100%;
        flex: unset;
    }

    .category-18-layout .featured-image {
        margin-bottom: 1rem;
    }
}










/*RODAPÉ*/
footer {
    background-color: #005fba;
    color: #d3e8fb;
    padding-top: 2rem;
    padding-bottom: 3rem;
    margin-top: 3rem;
}
.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.social-links a {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2e8c;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.social-links a:hover {
    transform: scale(1.1);
}
.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%);

}
.logo-container-footer {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.logo-container-footer img {
    height: 72px;
    filter: brightness(0) invert(1);
}
.footer-text {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-divider {
    border-top: 1px solid #60a5fa;
    margin-bottom: 2rem;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom div:first-child {
        margin-bottom: 0;
    }
}
.footer-bottom p {
    margin: 0 0 1rem 0;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}




/* PAGE - NOTICIAS */
.page-noticias-section {
    padding: 1rem 0 1.5rem;
}
.noticias-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.25rem;
}
/* cabeçalho */
.noticias-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}
.noticias-title-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}
.noticias-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
}
.noticias-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    text-decoration: none;
}
.noticias-title:hover {
    text-decoration: underline;
    color: #00008B;
}
.noticias-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.noticias-header-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
/* grid de notícias */
.page-noticias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 1024px) {
    .page-noticias-grid {
        grid-template-columns: 4fr 1fr;
    }
}
.page-noticias-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .page-noticias-item {
        flex-direction: row;
    }
}
.noticias-item-image {
    width: 100%;
    height: 12rem;
}
@media (min-width: 768px) {
    .noticias-item-image {
        width: 18rem;
        height: auto;
    }
}
.noticias-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}
.noticias-item-content {
    padding: 1.5rem;
    flex: 1;
}
.noticias-item-date {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.noticias-item-title {
    font-size: 1.30rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 0.75rem;
    text-decoration: none;
}
.noticias-item-title:hover {
    text-decoration: underline;
    color: #00008B;
}
.noticias-item-excerpt {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.5;
}
.noticias-divider {
    border-top: 1px solid #E5E7EB;
    margin: 1rem auto;
    max-width: 64rem;
}

/* sub menu de notícias secundárias */
.noticias-secondary {
    /*background-color: #F3F4F6;*/
    /*padding: 0.25rem;*/
    /*padding-left: 1rem;*/
}
@media (min-width: 1024px) {
    .noticias-secondary {
        border-left: 1px solid #E5E7EB;
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }
}
.noticias-secondary-item {
    background-color: #FFFFFF;
}
.noticias-secondary-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}
.noticias-secondary-link:hover {
    background-color: #DBEAFE;
}

/* paginação */
.noticias-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0 auto 0.75rem;
}
.noticias-page-info {
    font-size: 0.875rem;
    color: #4B5563;
}
.noticias-pagination-buttons {
    display: flex;
    gap: 0.25rem;
}
.noticias-pagination-button {
    padding: 0.25rem;
    color: #000;
}
.noticias-pagination-button svg {
    width: 1rem;
    height: 1rem;
}





/*NOTICIA PRINCIPAL*/
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 2rem;
}
.content-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}
.content-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news {
    width: 100%;
    padding: 1rem;
}
article {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
article h2 {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}
article .subtitulo {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}
.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.meta span {
    display: inline-block;
    margin-right: 1rem;
}
article p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}
.conteudo {
    line-height: 1.6;
}
.featured-image {
    display: block;
    margin: 30px auto 25px;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    border-radius: 8px;
}
.featured-image.banner-image {
    width: 1160px;
    height: 180px;
    max-width: 100%;
    margin-bottom: 2rem;
    margin-top: -25px;
}
.featured-image.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.conteudo img {
    display: block;
    margin: auto 10px 0 10px;
    width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    /*box-shadow: 0 1px 4px rgba(0,0,0,0.1);*/
}
.conteudo figure {
    text-align: center;
    margin: 20px auto;
}
.conteudo figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}
.tags-and-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.tags span {
    background: #dfeefb !important;
    color: #00008B;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}
/*segunda opcção de tags*/
/*.tags span {*/
/*    background-color: #eee;*/
/*    padding: 0.2rem 0.5rem;*/
/*    margin-right: 0.3rem;*/
/*    border-radius: 4px;*/
/*    font-size: 14px;*/
/*}*/
.share-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.share-section span {
    font-size: 14px;
    color: #666;
}
.share-section button {
    background: none;
    border: none;
    cursor: pointer;
}
.share-section button svg {
    width: 20px;
    height: 20px;
    fill: #00008B;
}
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem 0.9rem 0.9rem 0.9rem;
    }
    article {
        padding: 18px;
    }

    article h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    article p {
        font-size: 15px;
    }

    .subtitulo {
        font-size: 16px;
    }

    .meta {
        font-size: 12px;
        gap: 3px;
    }

    .meta span {
        margin-right: 0.5rem;
    }

    .conteudo {
        font-size: 15px;
        line-height: 1.5;
    }

    .conteudo img {
        width: 100% !important;
        max-width: 100%;
        margin: 15px auto;
    }

    .featured-image {
        aspect-ratio: auto;
        height: auto;
    }

    .tags-and-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tags span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .share-section span {
        font-size: 12px;
    }

    .share-section button svg {
        width: 18px;
        height: 18px;
    }

    .news {
        padding: 0.5rem;
    }
}

@media (min-width: 992px) {

    .conteudo img {
        float: right;
        margin: 10px 0 15px 20px;
        max-width: 45%;
        height: auto;
        border-radius: 6px;
        object-fit: cover;
    }

    .conteudo img.alignleft {
        float: left;
        margin: 10px 20px 15px 0;
        max-width: 45%;
    }

    .conteudo img.alignright {
        float: right;
        margin: 10px 0 15px 20px;
        max-width: 45%;
    }
}

@media (max-width: 991px) {

    .conteudo img {
        float: none !important;
        margin: 15px auto !important;
        max-width: 100% !important;
        width: 100% !important;
        display: block;
    }
}





/* ÚLTIMAS NOTICIAS */
.ultimas-noticias-section {
    padding: 1rem 0;
}
.container-ultimas-noticias {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-header {
    margin-bottom: 2.75rem;
}
.news-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00008B;
    margin-bottom: 0.5rem;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.news-article {
    border-radius: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    padding: 6px;
}
.article-image {
    overflow: hidden;
    margin: -6px -6px 0 -6px
}
.article-thumb {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    display: block;
}
.article-content {
    padding: 0.75rem;
    /*padding: 6px*/
}
.article-meta {
    margin-bottom: 0.5rem;
}
.post-date {
    color: #9CA3AF;
    font-size: 0.875rem;
}
.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.article-title a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.article-title a:hover {
    text-decoration: underline;
}
.article-excerpt {
    color: #4B5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}
.article-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-footer {
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    padding: 0 20px;
    margin: 2rem auto 0.75rem auto; ;
}
.divider {
    border: none;
    height: 1px;
    background-color: #E5E7EB;
    margin-bottom: 3rem;
}






/*.single-noticia-thumb img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    max-height: 400px;*/
/*    object-fit: cover;*/
/*}*/
/*.single-noticia-title {*/
/*    font-size: 2rem;*/
/*    margin: 20px 0;*/
/*}*/
/*.single-noticia-content {*/
/*    font-size: 1.1rem;*/
/*    line-height: 1.6;*/
/*}*/
/*.meta {*/
/*    color: #666;*/
/*    margin-bottom: 20px;*/
/*}*/
.tags span {
    background: #f0f0f0;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 3px;
}
/*.ver-todas {*/
/*    color: #007bff;*/
/*    text-decoration: none;*/
/*    font-weight: bold;*/
/*}*/
/*.ver-todas:hover {*/
/*    text-decoration: underline;*/
/*}*/



.videos-secundarios {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    background-color: #d63638;
}
.video-item {
    flex: 1;
    max-width: 300px;
}
.video-thumb {
    width: 100%;
    height: auto;
}
.video-embed iframe {
    width: 100%;
    height: 200px;
}
.video-titulo {
    font-size: 1.2em;
    margin: 10px 0;
}
.carousel-excerpt-video {
    font-size: 0.9em;
    color: #666;
}


.site-main {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 2rem 1rem;
}

.single-ultimas-noticias{
    /*margin-top: 4rem;*/
    margin: 4rem auto -2rem auto;
}

.entry-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
}

.entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
}






.deputados-section {
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #000000;
}
.container-deputados {
    max-width: 1160px;
    margin: 0 auto;
}
.deputados-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.deputados-header .title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    font-weight: bold;
}
.deputados-header .title .line {
    width: 4px;
    height: 24px;
    background-color: #005CC8FF;
}
.deputados-header .link-videos a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: #005CC8FF;
}
.title:hover {
    text-decoration: underline;
}
.texto-link-deputados{
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 600 !important;
    color: #005CC8FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.texto-link-deputados:hover {
    color: #005CC8FF;
    text-decoration: none;
}
.texto-sublinhado-deputados{
    color: #005CC8FF;
    text-decoration: none;
}
.texto-link-deputados:hover .texto-sublinhado-deputados {
    text-decoration: underline;
}
.icone-seta-deputados {
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-decoration: none !important;
}
.texto-link-deputados:hover .icone-seta-deputados {
    text-decoration: none !important;
}
.deputados-content {
    display: flex;
    gap: 2rem;
    margin-top: 0;
}
.deputados-filtro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 550px;
    padding-top: 12rem;
}
.deputados-filtro,
.deputados-carousel {
    flex: 1;
}
.deputados-filtro input,
.deputados-filtro select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    width: 100%;
    background-color: #d3e8fb;
}
.deputados-filtro input:focus,
.deputados-filtro select:focus {
    border-color: #005CC8FF;
    box-shadow: 0 0 0 2px rgba(0,0,139,0.2);
}
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #292929;
}
.select-wrapper select::-ms-expand {
    display: none;
}
.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #005CC8FF;
    pointer-events: none;
    font-size: 1.8rem;
    z-index: 1;
}
.deputados-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}
.carousel-track-deputados {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.carousel-slide-deputados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows: auto;*/
    grid-template-rows: 225px 225px;
    row-gap: 1rem;
    column-gap: 1rem;
    min-width: 100%;
    /*min-height: 500px;*/
    box-sizing: border-box;
    background-color: #f9fafb;
    border: 1px solid #a1cfff;
    border-radius: 8px;
    padding: 1rem;
}
.deputado-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    padding: 0 1rem 0 1rem;
    transition: transform 0.3s;
    width: 100%;
    max-width: 170px;
    min-height: 225px;
    justify-self: center;
    margin: 0 auto;
    box-sizing: border-box;
}
.deputado-card:hover {
    transform: translateY(-2px);
}
.deputado-img {
    width: 170px;
    height: 170px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;;
    margin-bottom: 0.5rem;
}
.deputado-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}
.deputado-name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: break-word;
    margin-bottom: 0.25rem;
}
.deputado-party {
    font-size: 0.8rem;
    color: gray;
    text-transform: uppercase;
    margin-bottom: 0;
}
.no-deputados {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    min-height: 450px;
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 1rem;
    box-sizing: border-box;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.indicator-deputados {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.indicator-deputados.active {
    background-color: #005CC8FF;
}
.carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.carousel-prev-deputados,
.carousel-next-deputados {
    background-color: #005CC8FF;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}
@media (max-width: 992px) {
    .deputados-content {
        flex-direction: column;
        gap: 2rem;
    }

    .deputados-filtro {
        padding-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .deputados-carousel {
        width: 100%;
        padding-top: 1rem;
    }

    .carousel-slide-deputados {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .deputados-section {
        padding: 1.5rem 0.75rem;
    }

    .deputados-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .deputados-header .title {
        font-size: 20px;
    }

    .deputados-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .deputados-filtro {
        padding-top: 0;
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .deputados-carousel {
        width: 100%;
        padding-top: 1rem;
        order: 2;
    }

    .carousel-slide-deputados {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .deputado-card {
        max-width: 100%;
        min-height: auto;
        padding: 0.5rem;
    }

    .deputado-img {
        width: 100%;
        height: 150px;
    }

    .deputado-name {
        font-size: 0.85rem;
    }

    .deputado-party {
        font-size: 0.75rem;
    }

    .no-deputados {
        min-height: 300px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .deputados-section {
        padding: 1rem 0.5rem;
    }

    .deputados-header .title {
        font-size: 20px;
    }

    .texto-link-deputados {
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }

    .deputados-content {
        gap: 1rem;
    }

    .deputados-filtro {
        gap: 0.75rem;
    }

    .deputados-filtro input,
    .deputados-filtro select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .carousel-slide-deputados {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 0.4rem;
        padding: 0.5rem;
    }

    .deputado-card {
        max-width: 100%;
        min-height: auto;
        padding: 0.3rem;
    }

    .deputado-img {
        width: 100%;
        height: 90px;
    }

    .deputado-name {
        font-size: 0.65rem;
        line-height: 1.1;
        margin-bottom: 0.15rem;
    }

    .deputado-party {
        font-size: 0.6rem;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.4rem;
    }

    .indicator-deputados {
        width: 0.4rem;
        height: 0.4rem;
    }

    .carousel-controls {
        margin-top: 0.75rem;
    }

    .carousel-prev-deputados,
    .carousel-next-deputados {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .no-deputados {
        min-height: 200px;
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}



#barra-inferior {
    background-color: #00008b;
    color: #fff;
    padding: 10px 0;
}

#searchform {
    display: flex;
    gap: 10px;
    align-items: center;
}

#searchform input.criterio {
    flex: 1;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

#searchform input.localizar {
    background-color: #212185;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

#searchform input.localizar:hover {
    background-color: #1a1a70;
}

.lista-h {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.lista-h a {
    color: #fff;
    text-decoration: none;
}

.lista-h a:hover {
    text-decoration: underline;
}

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

.listaNoticias li {
    margin-bottom: 15px;
}

.listaNoticias li a {
    color: #00008b;
    text-decoration: none;
}

.listaNoticias li a:hover {
    text-decoration: underline;
}




/* SEARCH */

.container_24 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 20px;
}
#centro {
    width: 100%;
    margin: 0 auto;
}
.listaNoticias {
    width: 100%;
}
/* resultados */
#box1 {
    width: 100%;
    margin: 20px 0;
}
/* cabeçalho da busca */
#box1 header {
    /*font-size: 28px;*/
    /*font-weight: 700;*/
    color: #00008B;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00008B;
    font-size: 1.7rem;
    font-weight: 700;
}
/* lista de resultados */
#box1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* item individual de resultado */
#box1 li {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}
#box1 li:last-child {
    border-bottom: none;
}
#box1 li:hover {
    background-color: #f8f9fa;
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding-right: 15px;
}
/* título do resultado */
#box1 span {
    display: block;
    margin-bottom: 10px;
}
#box1 span a {
    font-size: 20px;
    font-weight: 600;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}
#box1 span a:hover {
    color: #00008B;
    text-decoration: underline;
}
/* descrição */
#box1 p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

#box1 p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

#box1 p a:hover {
    color: #333;
    text-decoration: underline;
}
#box1 ul > p {
    font-size: 18px;
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-style: italic;
}
@media screen and (max-width: 768px) {
    .container_24 {
        padding: 0 15px;
    }

    #box1 header {
        font-size: 24px;
    }

    #box1 span a {
        font-size: 18px;
    }

    #box1 p {
        font-size: 15px;
    }

    #box1 li {
        padding: 20px 0;
    }
}
@media screen and (max-width: 480px) {
    #box1 header {
        font-size: 22px;
        margin-bottom: 20px;
    }

    #box1 span a {
        font-size: 16px;
    }

    #box1 p {
        font-size: 14px;
    }
}






/*transparencia*/

#page-transparencia {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px 5rem 20px;
}

#content {
    width: 100%;
}

/* conteúdo + sidebar */
.transparencia-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.transparencia-content {
    flex: 1;
    max-width: 850px;
}

.transparencia-sidebar {
    width: 300px;
    flex-shrink: 0;
}

#menu-grande {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

#menu-grande li {
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: normal;
    flex: 1 1 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: #00008b;
    border: 1px solid #ddd;
    color: #ffffff;
    min-height: 140px;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
}

#menu-grande li .material-symbols-outlined {
    font-size: 45px;
    color: #ffffff;
}

.menus-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: stretch;
}

.menus-container nav,
.menus-container nav ul,
.menus-container nav li,
.menus-container nav a {
    all: unset;
}

.menus-container nav ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menus-container nav li {
    display: block;
    padding: 6px 1px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 6px;
}

.menus-container nav li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menus-container nav a {
    display: block;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.menus-container nav a:hover {
    color: #00008b;
    text-decoration: underline;
}


.box-content,
.box-content h3,
.box-content nav ul li,
.box-content nav ul li a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    box-sizing: border-box;
}

.box-content {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    flex: 1 1 250px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.box-content h3 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #00008b;
    border-bottom: 2px solid #00008b;
    padding-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.box-content nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /*flex: 0;*/
}

.box-content nav ul li {
    padding: 2px 1px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.box-content nav ul li:last-child {
    border-bottom: none;
}

.box-content nav ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 13px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.box-content nav ul li a:hover {
    color: #00008b;
    text-decoration: underline;
}

/* banners */
#banners-transparencia {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-item {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.clear {
    clear: both;
}

/* Responsividade */
@media (max-width: 1024px) {
    .transparencia-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .transparencia-sidebar {
        width: 100%;
        max-width: 100%;
    }
    #menu-grande {
        display: none !important;
    }

    #banners-transparencia {
        display: none !important;

    }
    .banner-item {
        min-width: 240px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .banner-image {
        max-width: 50%;
        margin: 0 auto;
    }

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

    .box-content {
        flex: 1 1 calc(50% - 10px);
        min-width: 260px;
    }

    #menu-grande li {
        flex: 1 1 calc(50% - 8px);
        padding: 12px 15px;
        min-height: 120px;
    }
    #menu-grande li .material-symbols-outlined {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    #menu-grande {
        flex-wrap: wrap;
        justify-content: center;
    }

    #menu-grande li {
        flex: 1 1 90%;
        min-height: 110px;
        padding: 10px 12px;
        text-align: center;
    }

    #menu-grande li .material-symbols-outlined {
        font-size: 32px;
    }

    .menus-container {
        flex-direction: column;
    }

    .box-content {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .banner-item {
        min-width: 280px;
    }
    .banner-image {
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    #page-transparencia {
        padding: 1rem 10px 3rem 10px;
    }
    #menu-grande {
        justify-content: center;
    }

    #menu-grande li {
        flex: 1 1 100%;
        font-size: 13px;
        padding: 10px 8px;
        text-align: center;
        min-height: 100px;
    }

    #menu-grande li .material-symbols-outlined {
        font-size: 28px;
    }

    .box-content h3 {
        font-size: 13px;
    }

    .box-content nav ul li {
        font-size: 13px;
    }
}



/* SEÇÃO VIAP */
.viap-section {
    font-family: Arial, Helvetica, sans-serif;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.viap-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.viap-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 2px;
}

.viap-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
    text-decoration: none;
}


/* DESCRIÇÃO */
.viap-description {
    font-size: 16px;
    background-color: #f5f5f5;
    padding: 0.85rem;
    border-left: 4px solid #353894;
    border-radius: 4px;
    line-height: 1.6;
    color: #333;
}

.viap-description a {
    color: #353894;
    text-decoration: none;
    font-weight: 500;
}

.viap-description a:hover {
    text-decoration: underline;
}

/* SELECTS E FILTROS  */
.viap-section select {
    font-size: 15px;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-left: 0.5rem;
    background-color: #fff;
    color: #333;
}

.viap-section select:focus {
    outline: none;
    border-color: #353894;
    box-shadow: 0 0 4px rgba(53, 56, 148, 0.4);
}

/* TEXTO DE ATUALIZAÇÃO */
.viap-update {
    margin-top: 1.5rem;
    font-size: 15px;
    color: #555;
}

.viap-update b {
    color: #000;
}


/* FORMULÁRIO DE FILTRO VIAP */

.viap-filter-form {
    background-color: #f8f8fc;
    /*border: 1px solid #dfe2f7;*/
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1190px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.viap-filter-form label {
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    margin-right: 0.5rem;
}

.viap-filter-form input[type="radio"] {
    accent-color: #00008B;
    margin: 0.7rem 0.3rem 0 0;
}

.viap-filter-form input[type="radio"] + label {
    margin-right: 1rem;
    font-weight: 500;
    color: #333;
}

.viap-filter-form select {
    font-size: 15px;
    padding: 0.45rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    margin: 0.4rem 0.6rem 0.8rem 0;
    color: #333;
}

.viap-filter-form select:focus {
    outline: none;
    border-color: #00008B;
    box-shadow: 0 0 4px rgba(0, 0, 139, 0.3);
}

.viap-filter-form .bt-link {
    background-color: #00008B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.viap-filter-form .bt-link:hover {
    background-color: #0000b3;
    transform: translateY(-1px);
}

.viap-filter-form a {
    margin-left: 1rem;
    color: #353894;
    font-weight: 500;
    text-decoration: none;
}

.viap-filter-form a:hover {
    text-decoration: underline;
}






/* Contratação Direta de Pequenos Valores*/

.title-container-contratacao {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.title-bar-contratacao {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 4px;
}

.title-contratacao {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    text-decoration: none;
    margin: 0;
}

.subtitle-contratacao {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.4rem;
    margin-bottom: 2rem;
}

.lista-v-contratacao {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.lista-v-contratacao li {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/*.lista-v li:hover {*/
/*    background: #f0f8ff;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);*/
/*}*/

.lista-v-contratacao h5 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.lista-v-contratacao p {
    line-height: 1.6;
    color: #333;
}

.box-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #00008B;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
    margin: 1rem auto 0;
}

.box-download:hover {
    background: #3535ae;
}

.box-download .material-symbols-outlined {
    font-size: 22px;
    color: #ffffff;
    vertical-align: middle;
}

.lista-v-contratacao li.linha {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 2rem 0;
}




/* Licitação */

.title-container-licitacao {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.title-bar-licitacao {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 4px;
}

.title-licitacao {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    text-decoration: none;
    margin: 0;
}

/* Subtítulo */
.subtitle-licitacao {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.4rem;
    margin-bottom: 2rem;
}

/* Lista de Licitações */
.lista-v-licitacao {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.lista-v-licitacao li {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Centraliza botão e conteúdo */
}

.lista-v-licitacao h5 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
}

.lista-v-licitacao p {
    line-height: 1.6;
    color: #333;
}

/* Botão de Download */
.box-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #00008B;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
    margin: 1.5rem auto 0;
}

.box-download:hover {
    background: #0055aa;
    transform: translateY(-2px);
}

.box-download .material-symbols-outlined {
    font-size: 22px;
    color: #add8e6;
    vertical-align: middle;
}

/* Linha divisória */
.lista-v-licitacao li.linha {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 2rem 0;
}



/* SEÇÃO PRESTADORES */
.prestadores-section {
    font-family: Arial, Helvetica, sans-serif;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.prestadores-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.prestadores-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 2px;
}

.prestadores-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
}

.prestadores-content {
    margin-top: 1.5rem;
}

.prestadores-periodo {
    font-size: 15px;
    color: #444;
}

.prestadores-alerta {
    background-color: #f8f8fc;
    padding: 0.7rem;
    border-radius: 4px;
    font-size: 15px;
    border-left: 4px solid #00008B;
    margin: 1rem 0;
}

.prestadores-update {
    font-size: 15px;
    color: #555;
    margin-top: 0.5rem;
}

.prestadores-observacao {
    font-size: 14px;
    color: #666;
    margin-top: 0.8rem;
}

.prestadores-observacao a {
    color: #353894;
    text-decoration: none;
}

.prestadores-observacao a:hover {
    text-decoration: underline;
}

/* LISTAGEM */
.prestadores-lista {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.prestadores-lista li {
    font-size: 15px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.prestadores-lista li a {
    color: #00008B;
    text-decoration: none;
    font-weight: 500;
}

.prestadores-lista li a:hover {
    text-decoration: underline;
}

.prestadores-empty {
    font-size: 15px;
    color: #777;
}

/* SEÇÃO REMUNERATÓRIA */
.remuneratoria-section {
    font-family: Arial, Helvetica, sans-serif;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    max-width: 1200px;
}

/* CABEÇALHO */
.remuneratoria-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.remuneratoria-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 2px;
}

.remuneratoria-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
}

/* DESCRIÇÃO */
.remuneratoria-description {
    font-size: 16px;
    background-color: #f5f5f5;
    padding: 0.85rem;
    border-left: 4px solid #353894;
    border-radius: 4px;
    line-height: 1.6;
    color: #333;
}

.remuneratoria-description a {
    color: #353894;
    text-decoration: none;
    font-weight: 500;
}

.remuneratoria-description a:hover {
    text-decoration: underline;
}

/* LISTAGEM */
.remuneratoria-lista {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.remuneratoria-lista li {
    font-size: 15px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.remuneratoria-lista li a {
    color: #00008B;
    text-decoration: none;
    font-weight: 500;
}

.remuneratoria-lista li a:hover {
    text-decoration: underline;
}

/* OBSERVAÇÃO */
.remuneratoria-observacao {
    font-size: 14px;
    color: #666;
    margin-top: 0.8rem;
}

.remuneratoria-observacao a {
    color: #353894;
    text-decoration: none;
}

.remuneratoria-observacao a:hover {
    text-decoration: underline;
}

/* PERÍODO EXIBIÇÃO */
.remuneratoria-periodo {
    font-size: 15px;
    color: #444;
}

/* ATUALIZAÇÃO */
.remuneratoria-update {
    font-size: 15px;
    color: #555;
    margin-top: 1rem;
}

/* BOTÕES ANTERIORES */
.bt-link-anteriores {
    background-color: #00008B;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 0.5rem;
    display: inline-block;
}

.bt-link-anteriores:hover {
    background-color: #0000b3;
}



/* SEÇÃO QUANTITATIVO DE CARGOS */
.quantitativo-section {
    font-family: Arial, Helvetica, sans-serif;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    max-width: 1200px;
}

/* CABEÇALHO */
.quantitativo-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.quantitativo-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 2px;
}

.quantitativo-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
}

/* DESCRIÇÃO */
.quantitativo-description {
    font-size: 16px;
    background-color: #f5f5f5;
    padding: 0.85rem;
    border-left: 4px solid #353894;
    border-radius: 4px;
    line-height: 1.6;
    color: #333;
}

.quantitativo-description a {
    color: #353894;
    text-decoration: none;
    font-weight: 500;
}

.quantitativo-description a:hover {
    text-decoration: underline;
}

/* LISTAGEM */
.quantitativo-lista {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.quantitativo-lista li {
    font-size: 15px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.quantitativo-lista li a {
    color: #00008B;
    text-decoration: none;
    font-weight: 500;
}

.quantitativo-lista li a:hover {
    text-decoration: underline;
}

/* OBSERVAÇÕES E LINKS */
.quantitativo-observacao {
    font-size: 14px;
    color: #666;
    margin-top: 0.8rem;
}

.quantitativo-observacao a {
    color: #353894;
    text-decoration: none;
}

.quantitativo-observacao a:hover {
    text-decoration: underline;
}

.quantitativo-update {
    font-size: 15px;
    color: #555;
    margin-top: 1rem;
}

.bt-link-anteriores {
    background-color: #00008B;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 0.5rem;
    display: inline-block;
}

.bt-link-anteriores:hover {
    background-color: #0000b3;
}



/*REMUNERAÇÕES*/
.viap-section-remuneracoes {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid #004aad;
    border-radius: 6px;
}

.viap-header-remuneracoes {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.viap-title-bar-remuneracoes {
    width: 6px;
    height: 32px;
    background: #004aad;
    margin-right: 10px;
}

.viap-title-remuneracoes {
    font-size: 22px;
    color: #004aad;
    margin: 0;
}

.viap-description-remuneracoes {
    background: #eef3ff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.viap-filter form {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.viap-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.viap-list li {
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
}

.viap-info, .viap-updated, .viap-previous {
    font-size: 14px;
    margin-top: 1rem;
}

.bt-link-anteriores {
    background: #004aad;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.bt-link-anteriores:hover {
    background: #003080;
}

.interna{
    margin-top: 1rem;
}
.funcionamento-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #cccccc;
}

.funcionamento-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #00008B;
    border-radius: 2px;
}

.funcionamento-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
}
