* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #99B4F2;
    font-family: 'Verdana', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 782px;
    margin: 9px auto;
    background-color: white;
}

/* Header */
header {
    background-color: white;
    padding: 0;
}

.header-top {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0;
}

.header-top>* {
    border-bottom: 2px solid #99B4F2;
}

.header-logo {
    width: 602px;
    flex: none;
}

.header-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.header-portal {
    padding: 0;
    display: flex;
    gap: 0;
}

.header-portal a img {
    display: block;
    height: 22px;
}

.header-banner {
    display: flex;
    width: 100%;
    gap: 0;
}

.header-banner img {
    display: block;
}

.banner-logo {
    width: 70px;
    flex: none;
}

.banner-title-left {
    width: 183px;
    flex: none;
}

.banner-title-main {
    width: 529px;
    flex: none;
}

.nav-separator {
    height: 24px;
    background: url('/pagina_index/006.gif') repeat-x;
}

/* Layout Principal */
.main-wrapper {
    display: flex;
    background-color: white;
}

/* Navigation Sidebar */
nav {
    width: 179px;
    background-color: #99B4F2;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.nav-item {
    width: 100%;
    height: auto;
}

.nav-item a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.nav-item img {
    display: block;
    width: 100%;
    height: auto;
}

.nav-section-title {
    width: 100%;
    padding: 0;
}

.nav-section-title img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-spacer {
    height: 36px;
    background-color: #7394EF;
}

.nav-filler {
    flex: 1;
    background-color: #7394EF;
}

/* Main Content */
main {
    width: 604px;
    flex: none;
    background-color: white;
    padding: 5px 14px 20px 14px;
    min-height: 690px;
}

.content-header {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.content-header-marker {
    flex-shrink: 0;
}

.content-header-title {
    flex: 1;
}

.content-title-image {
    display: block;
    max-width: 572px;
    width: auto;
    height: auto;
}

.section-title {
    font-size: 12px;
    font-weight: bold;
    margin: 20px 0 12px 0;
    text-align: left;
}

.year-nav {
    width: 100%;
    margin: 10px 0;
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0;
    list-style: none;
    margin: 0;
    background-color: #fff;
}

.year-grid li {
    display: flex;
    background-color: #E9EEFC;
    margin: 2px 0px;
}

.year-grid a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #4A69B5;
    text-decoration: none;
    padding: 4px 0;
}

.year-grid a:hover,
.year-grid a:focus {
    text-decoration: underline;
}

.resolutions-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.resolutions-header img {
    display: block;
}

.resolutions-title {
    font-size: 13px;
    color: #000;
}

.resolutions-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.container-title-resolution {
    display: flex;
    align-items: flex-start;
    gap: 8px; /* Espaço entre a seta e o texto */
    word-break: break-word; /* Quebra palavras longas */
    overflow-wrap: anywhere; /* Garante que o overflow não aconteça */
    margin-bottom: 5px;
}

.container-title-resolution > .title-resolution-text {
    margin-left: 2px;
    display: inline;
}

.container-title-resolution img {
    margin-top: 3px;
}

.container-seta {
    padding-top: 3px;
}

.resolutions-item {
    margin: 10px 0;
}

.resolutions-item-header {
    font-size: 12px;
}

.resolutions-item-header img {
    margin-top: 2px;
}

.resolutions-item a {
    color: #4A69B5;
    text-decoration: none;
}

.resolutions-item a:hover {
    text-decoration: underline;
}

.resolutions-item p {
    margin: 0px 0 0 20px;
}

.conteudo_interno {
    text-align: justify;
    font-size: 11px;
    line-height: 1.27;
    color: #000;
    margin: 10px 0;
}

article p.conteudo_interno {
    text-indent: 2em;
}

.text3 {
    color: #4A69B5;
    font-size: 12px;
    font-weight: bold;
}

.credito {
    color: #000;
    font-size: 9px;
}

ul.conteudo_interno {
    margin-left: 30px;
    list-style-position: inside;
}

ul.conteudo_interno li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Footer */
footer {
    background-color: white;
    border-top: 2px solid #999;
    margin-top: 25px;
}

.footer-info {
    background-color: #E8F1FD;
    padding: 10px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.27;
    color: #333;
}

.footer-copyright {
    color: #000;
    font-size: 10px;
    font-weight: bold;
    background-color: white;
    padding: 5px;
    text-align: center;
    border-top: 1px solid #000;
}