/* Cabeçalho */
.site-header {
    background: #fff;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.header-column-div{
    display: flex;
    flex-direction: column;
}
.gov-logo {
    width: 50px;
    height: auto;
}
.header-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.menu-icon {
    color: var(--Pure-pure-100, #000);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway", sans-serif;
    font-size: 20.19px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.header-links a {
    margin: 0px 5px;
    color: var(--all-teal-900, #0B4F4A);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway", sans-serif;
    font-size: 11.67px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.header-banner {
    padding: 40px;
    background-image: url('../assets/banner-header.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.header-content h1 {
    color: #FFF;
    font-family: "Raleway", sans-serif;
    font-size: 65.333px;
    font-style: normal;
    font-weight: 500;
    line-height: 98px; /* 150% */
}
.btn-login {
    border-radius: 50px;
    background: var(--all-teal-800, #005F5A);
    border: 1px solid white;
    color: white;
    padding: 10px 26px;
    border-radius: 20px;
    cursor: pointer;
}

.breadcrumbs {
    margin-top: 20px;
    margin-left: 60px;
    padding: 15px 40px;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: white;
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px;
    border: 0.5px solid #DFE4EA;
    box-shadow: 0 1px 3px 0 rgba(166, 175, 195, 0.40);
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumbs .arrow { margin: 0 8px; }

/* Grid da Página */
.page-container {
    display: flex;
    gap: 30px;
    margin: 30px auto;
    margin-top: 0px;
    padding: 60px;
}

/* Sidebar Esquerda */
.sidebar-filters {
    width: 30vw;
    flex-shrink: 0;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 24px;
    align-self: flex-start;
}

/* Área Principal */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Footer */
.site-footer {
    background-color: #094043;
    color: white;
    padding: 50px 40px;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu strong, .footer-newsletter strong {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 900px) {
    .page-container { flex-direction: column; }
    .sidebar-filters { width: 100%; }
    .footer-content { flex-direction: column; }
}