:root {
    --navy: #081827;
    --blue: #123c66;
    --accent: #2f80ed;
    --light: #f3f6fa;
    --text: #1d2939;
    --white: #fff;
    --border: #dce3ea;
    --danger: #c0392b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-header {
    background: linear-gradient(135deg, #0f2b48 0%, #081726 100%) !important;
    color: #ffffff !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-body {
    text-align: left;
    padding: 60px 20px 80px 20px;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2f80ed;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-body .eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #60a5fa !important;
    margin-bottom: 12px;
    opacity: 1;
}

.hero-body h1 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 800px;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.hero-desc {
    font-size: 1.05rem;
    color: #cbd5e1 !important;
    max-width: 650px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-cta {
    display: inline-block;
    background-color: #2563eb !important;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #1d4ed8 !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   TOPBAR OFICIAL — ACERVO HISTÓRICO
   ========================================================================== */

.acervo-topbar {
    width: 100%;
    background: linear-gradient(135deg, #0f2b48 0%, #081726 100%);
    position: relative;
}

/* linha de destaque sutil embaixo da topbar */
.acervo-topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, #2f80ed 0%, rgba(47, 128, 237, 0) 85%);
    opacity: .55;
}

.acervo-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

.acervo-topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

/* Reset comum dos botões da topbar (evita o "quadrado branco"
   que o navegador desenha por padrão em <button>) */
.acervo-topbar-menu-btn,
.acervo-topbar-search-btn {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background .2s ease, opacity .2s ease;
}

.acervo-topbar-menu-btn {
    width: 38px;
    height: 38px;
    font-size: 1.9rem;
    line-height: 1;
}

.acervo-topbar-menu-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.acervo-topbar-logo-link {
    display: flex;
    align-items: center;
}

.acervo-topbar-logo {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Título antigo — mantido como fallback para páginas que ainda
   não foram migradas para o menu de links (.acervo-topbar-nav) */
.acervo-topbar-title-wrap {
    flex: 1;
}

.acervo-topbar-title {
    display: block;
    color: #ffffff !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* =====================================================
   NAVEGAÇÃO DA TOPBAR (desktop)
   ===================================================== */

.acervo-topbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 28px;
}

.acervo-topbar-nav-link {
    color: rgba(255, 255, 255, .75);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 22px;
    margin-bottom: -22px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.acervo-topbar-nav-link:hover {
    color: #ffffff;
}

.acervo-topbar-nav-link.ativo {
    color: #ffffff;
    border-bottom-color: #2f80ed;
}

/* =====================================================
   BOTÃO DE BUSCA DA TOPBAR
   ===================================================== */

.acervo-topbar-search-btn {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    opacity: .85;
}

.acervo-topbar-search-btn:hover {
    opacity: 1;
}

.acervo-topbar-search-btn svg {
    display: block;
    width: 19px;
    height: 19px;
}

.acervo-topbar-search-btn:focus-visible,
.acervo-topbar-menu-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* ==========================================================================
   ESTILOS GERAIS — MONUMENTOS, AERONAVES E CARDS
   ========================================================================== */

.intro {
    padding: 45px 0 20px;
}

.intro h2 {
    margin-top: 0;
    color: #0f2b48;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    font-weight: 800;
}

.intro p {
    color: #475467;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 60px;
}

.card,
.content-box,
.form,
.admin-panel,
.admin-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(8, 24, 39, .06);
}

.card {
    overflow: hidden;
}

.card img,
.placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.placeholder {
    display: grid;
    place-items: center;
    background: #dfe7ef;
    color: #607080;
}

.card-body {
    padding: 22px;
}

.card h3 {
    margin: 8px 0;
}

.tag {
    display: inline-block;
    background: #e8f1fb;
    color: var(--blue);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .78rem;
    font-weight: bold;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.button.secondary {
    background: #e8eef5;
    color: var(--blue);
}

.button.danger {
    background: var(--danger);
}

/* ==========================================================================
   ELEMENTOS ADMINISTRATIVOS / PÁGINAS INTERNAS
   ========================================================================== */

.topbar {
    position: relative !important;
    top: auto !important;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    background: var(--navy) !important;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1000;
}

.back {
    color: white;
    text-decoration: none;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin {
    padding: 50px 0;
}

.admin-panel {
    padding: 28px;
    margin: 24px 0;
}

.form {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.form label {
    display: grid;
    gap: 7px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.form small {
    font-weight: normal;
    color: #667085;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-item {
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-info img,
.thumb-placeholder {
    width: 72px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
}

.thumb-placeholder {
    display: grid;
    place-items: center;
    background: #dfe7ef;
    color: #667085;
    font-size: .7rem;
}

.admin-info strong {
    display: block;
}

.admin-info small {
    display: block;
    color: #667085;
}

.actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.success {
    background: #e6f6ec;
    border: 1px solid #a8dfbb;
    color: #176b35;
    padding: 14px;
    border-radius: 10px;
    margin: 20px 0;
}

.current-image {
    background: #f7f9fb;
    padding: 15px;
    border-radius: 10px;
}

.current-image img {
    display: block;
    max-width: 320px;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin: 8px 0 12px;
}

.check-label {
    display: flex !important;
    align-items: center;
    gap: 8px !important;
    font-weight: normal !important;
}

.check-label input {
    width: auto;
}

.alert-error {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f1aeb5;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 15px;
}

.logout-button {
    margin-left: auto;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.logout-button:hover {
    background: rgba(255,255,255,0.12);
}

/* ==========================================================================
   PÁGINAS DE DETALHES
   ========================================================================== */

.detail {
    padding: 55px 0 80px;
}

.detail h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-top: 5px;
}

.detail-image {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 16px;
    margin: 15px 0 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
}

.content-box {
    padding: 28px;
    margin-bottom: 22px;
}

.video {
    position: relative;
    aspect-ratio: 16/9;
}

.video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.empty {
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 12px;
    margin-bottom: 50px;
}

footer {
    background: var(--navy);
    color: white;
    padding: 28px 0;
    text-align: center;
}

/* ==========================================================================
   ADMINISTRAÇÃO DE IMAGENS
   ========================================================================== */

.image-management {
    margin-top: 30px;
}

.image-management h2 {
    margin-bottom: 20px;
}

.admin-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-image-card {
    background: #f8fafc;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 15px;
}

.admin-image-card > img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #e9eef3;
    border-radius: 8px;
    margin-bottom: 15px;
}

.admin-image-info label {
    display: block;
    margin-bottom: 12px;
}

.admin-image-info input[type="text"],
.admin-image-info input[type="number"] {
    width: 100%;
    box-sizing: border-box;
}

.new-images {
    margin-top: 25px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
}

.new-images h3 {
    margin-top: 0;
}

.new-images textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
}

.no-images {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

/* ==========================================================================
   MENU LATERAL
   ========================================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.aberto {
    opacity: 1;
    visibility: visible;
}

.menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #0f2b48 0%, #081726 100%);
    color: #ffffff;
    z-index: 9999;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.35);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.menu-lateral.aberto {
    transform: translateX(0);
}

.menu-lateral-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-logo img {
    height: 42px;
    width: auto;
}

.menu-logo span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.menu-fechar {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-fechar:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.05);
}

.menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px 14px;
    gap: 6px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 10px;
    color: #dbeafe;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(3px);
}

.menu-link.ativo {
    background: rgba(96, 165, 250, 0.16);
    color: #ffffff;
    border-left: 3px solid #60a5fa;
}

.menu-icon {
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
}

.menu-lateral-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   CATEGORIAS DO ACERVO
   ========================================================================== */

.acervo-categorias {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 25px;
}

.acervo-categoria {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dce3ea;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(8, 24, 39, 0.06);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.acervo-categoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 24, 39, 0.12);
    border-color: #b9cce0;
}

.acervo-categoria-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f1fb 0%, #dcecff 100%);
    border-radius: 14px;
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(47, 128, 237, 0.08);
}

.acervo-categoria-conteudo {
    min-width: 0;
}

.acervo-categoria-label {
    display: block;
    margin-bottom: 5px;
    color: #2f80ed;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.acervo-categoria h2 {
    margin: 0 0 10px;
    color: #0f2b48;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
}

.acervo-categoria p {
    margin: 0 0 18px;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.55;
}

.acervo-categoria-link {
    display: inline-block;
    color: #2563eb;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.acervo-categoria:hover .acervo-categoria-link {
    transform: translateX(4px);
}

#monumentos {
    scroll-margin-top: 30px;
}

/* ==========================================================================
   COMPATIBILIDADE MÍNIMA COM PÁGINAS ANTIGAS
   ========================================================================== */

.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
}

.btn-menu-clean {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: block !important;
}

.logo-eear-img {
    width: auto !important;
    display: block !important;
    margin: 0 !important;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 800px) {
    .acervo-categorias {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .admin-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .actions {
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =====================================================
   TOPBAR — NAVEGAÇÃO NO MOBILE
   ===================================================== */

@media (max-width: 700px) {

    .acervo-topbar-nav {
        display: flex !important;
        align-items: center;
        gap: 12px;
    }

    .acervo-topbar-nav-link {
        display: block !important;
        font-size: 10px;
        white-space: nowrap;
    }

}

@media (max-width: 600px) {
    .acervo-topbar-row {
        gap: 10px;
        height: 60px;
    }

    .acervo-topbar-left {
        gap: 14px;
    }

    .acervo-topbar-logo {
        height: 34px;
    }

    .acervo-topbar-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1.7rem;
    }

    .acervo-topbar-title {
        font-size: 0.78rem;
        letter-spacing: 1.2px;
    }

    .menu-lateral {
        width: 300px;
        max-width: 88vw;
    }

    .menu-lateral-header {
        padding: 18px 16px;
    }

    .menu-logo img {
        height: 38px;
    }

    .menu-logo span {
        font-size: 0.8rem;
        letter-spacing: 1.3px;
    }

    .menu-fechar {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }

    .menu-links {
        padding: 18px 12px;
        gap: 5px;
    }

    .menu-link {
        padding: 17px 15px;
        min-height: 54px;
        font-size: 1rem;
    }

    .menu-icon {
        width: 28px;
        font-size: 1.25rem;
    }

    .menu-lateral-footer {
        padding: 18px 16px;
        font-size: 0.65rem;
    }

    .acervo-categoria {
        gap: 16px;
        padding: 22px;
    }

    .acervo-categoria-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        font-size: 1.55rem;
    }

    .acervo-categoria h2 {
        font-size: 1.25rem;
    }

    .acervo-categoria p {
        font-size: 0.88rem;
    }
}

@media (max-width: 420px) {
    .acervo-categoria {
        padding: 20px;
        gap: 14px;
    }

    .acervo-categoria-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .acervo-categoria-label {
        font-size: 0.68rem;
    }

    .acervo-categoria h2 {
        font-size: 1.15rem;
    }

    .acervo-categoria p {
        font-size: 0.84rem;
    }

    .acervo-categoria-link {
        font-size: 0.82rem;
    }

    .menu-lateral {
        width: 280px;
        max-width: 90vw;
    }

    .menu-link {
        padding: 16px 14px;
    }
}

/* ==========================================================================
   CORREÇÃO DOS CARDS DO ACERVO — DESKTOP
   Mantida para preservar o layout já aprovado.
   ========================================================================== */

@media (min-width: 801px) {
    .acervo-categorias {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
        width: 100% !important;
        margin-top: 25px !important;
    }

    .acervo-categoria {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 30px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        border: 1px solid #dce3ea !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 25px rgba(8, 24, 39, 0.06) !important;
        color: #1d2939 !important;
        text-decoration: none !important;
    }

    .acervo-categoria-icon {
        display: flex !important;
        flex-shrink: 0 !important;
        width: 64px !important;
        height: 64px !important;
        align-items: center !important;
        justify-content: center !important;
        background: #e8f1fb !important;
        border-radius: 14px !important;
        font-size: 1.9rem !important;
    }

    .acervo-categoria-conteudo {
        display: block !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .acervo-categoria-label {
        display: block !important;
        color: #2f80ed !important;
    }

    .acervo-categoria h2 {
        display: block !important;
        margin: 0 0 10px !important;
        color: #0f2b48 !important;
        font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif !important;
        font-size: 1.45rem !important;
        font-weight: 800 !important;
    }

    .acervo-categoria p {
        display: block !important;
        margin: 0 0 18px !important;
        color: #667085 !important;
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
    }

    .acervo-categoria-link {
        display: inline-block !important;
        color: #2563eb !important;
        font-size: 0.88rem !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }
}

/* ==========================================================================
   HOMEPAGE — NOVO HERO
   IMPORTANTE: estas regras afetam somente .home-hero.
   ========================================================================== */

.home-hero {
    position: relative;
    overflow: hidden;
    background: none !important;
}

/*
   Imagem de fundo real (<img>), controlada com object-fit/
   object-position. Diferente do background-size percentual,
   isso mantém o mesmo ponto da foto (o avião) sempre visível,
   de forma previsível, em qualquer largura/altura de tela.
*/
.home-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Evita o glitch de repintura do Safari/iOS durante o
       "rubber-band" (arrastar a tela além do topo). */
    transform: translateZ(0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    /*
       Ajuste este ponto para "mirar" a parte da foto que
       deve ficar sempre visível (o avião). Formato: X% Y%.
       X: 0% = esquerda da foto, 100% = direita da foto.
       Y: 0% = topo, 100% = base.
    */
    object-position: 70% 35%;

    z-index: 0;
}

/* Gradiente por cima da imagem, para o texto continuar legível. */
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 28, 50, 0.90) 0%,
        rgba(4, 28, 50, 0.70) 35%,
        rgba(4, 28, 50, 0.22) 68%,
        rgba(4, 28, 50, 0.05) 100%
    );
    z-index: 1;
}

/* Conteúdo (topbar + texto do hero) sempre acima da imagem/gradiente. */
.home-hero .home-topbar,
.home-hero .hero-body {
    position: relative;
    z-index: 2;
}

/* A topbar continua usando o mesmo HTML/estrutura já existente,
   mas fica sobre a imagem somente na homepage. */
.home-topbar {
    position: relative;
    z-index: 5;
    background: transparent !important;
}

/* A logo continua com o mesmo tamanho; apenas ganha o link. */
.home-topbar .acervo-topbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Hero existente: apenas ajustamos o espaçamento para acomodar
   a imagem atrás do conteúdo. */
.home-hero .hero-body {
    position: relative;
    z-index: 2;

    min-height: 464px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

/* Mantém o título da homepage grande e legível. */
.home-hero .hero-body h1 {
    max-width: 800px;
    margin-top: 0;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 700px) {

    .home-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(4, 28, 50, 0.88) 0%,
            rgba(4, 28, 50, 0.68) 42%,
            rgba(4, 28, 50, 0.25) 100%
        );
    }

    /*
       Tela mais estreita e alta: reajuste o X% até o avião
       ficar enquadrado (comece testando por aqui).
    */
    .home-hero-img {
        object-position: 68% center;
    }

    .home-hero .hero-body {
        min-height: 525px;

        justify-content: flex-start;

        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }

    .home-hero .hero-body h1 {
        font-size: 2.7rem !important;
        line-height: 1.05 !important;
    }

    .home-hero .hero-desc {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   TELAS MUITO PEQUENAS
   ========================================================================== */

@media (max-width: 420px) {

    .home-hero-img {
        object-position: 68% center;
    }

    .home-hero .hero-body {
        min-height: 525px;
        padding-top: 55px !important;
    }

    .home-hero .hero-body h1 {
        font-size: 2.55rem !important;
    }
}

/* =========================================================
   GALERIA — INDICADORES
   ========================================================= */

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;

    margin-top: 14px;
    padding: 0;
}

.gallery-dot {
    width: 14px;
    height: 4px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 999px;

    background: #c5ced8;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}

.gallery-dot:hover {
    opacity: 0.75;
}

.gallery-dot.ativo {
    width: 30px;
    background: #0f2b48;
}

/* =====================================================
   BUSCA GLOBAL — CAIXA ABAIXO DA TOPBAR
   ===================================================== */

.busca-overlay {
    position: fixed !important;

    top: 58px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;

    width: 100% !important;
    height: auto !important;

    display: none !important;

    align-items: flex-start !important;
    justify-content: flex-end !important;

    padding: 0 8% 0 20px !important;

    background: transparent !important;

    z-index: 999999 !important;

    pointer-events: none !important;
}

.busca-overlay.aberto {
    display: flex !important;
    pointer-events: auto !important;
}

body.busca-aberta {
    overflow: hidden;
}


/* =====================================================
   CAIXA DA BUSCA
   ===================================================== */

.busca-modal {
    position: relative !important;

    width: 540px !important;
    max-width: calc(100vw - 40px) !important;

    margin: 0 !important;

    padding: 30px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #d9e1e8 !important;
    border-top: none !important;

    border-radius: 0 0 16px 16px !important;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.20) !important;

    transform: none !important;

    animation: buscaDescerNova 0.2s ease-out !important;
}

@keyframes buscaDescerNova {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   BOTÃO FECHAR
   ===================================================== */

.busca-fechar {
    position: absolute;

    top: 12px;
    right: 13px;

    width: 34px;
    height: 34px;

    border: none;

    background: transparent;

    color: #17324d;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.busca-fechar:hover {
    background: #eef3f7;
}


/* =====================================================
   CABEÇALHO
   ===================================================== */

.busca-cabecalho {
    margin-bottom: 22px !important;
}

.busca-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #2c82c9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.busca-cabecalho h2 {
    font-size: 25px !important;
    margin-bottom: 8px !important;
}

.busca-cabecalho p {
    font-size: 14px !important;
}


/* =====================================================
   CAMPO DE BUSCA
   ===================================================== */

.busca-campo {
    width: 100% !important;
    margin-bottom: 18px !important;
}

.busca-icone {
    position: absolute;

    left: 14px;

    color: #587087;

    font-size: 16px;

    pointer-events: none;
}

.busca-campo input {
    width: 100% !important;

    min-height: 48px !important;

    padding: 13px 16px 13px 44px !important;

    box-sizing: border-box !important;

    font-size: 15px !important;
}

.busca-campo input:focus {
    border-color: #2c82c9;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(44, 130, 201, 0.10);
}


/* =====================================================
   RESULTADOS
   ===================================================== */
.busca-resultados {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
}


.busca-vazio {
    padding: 24px 18px !important;

    font-size: 14px !important;
}


/* =====================================================
   MOBILE
   ===================================================== */

/* MOBILE */

@media (max-width: 600px) {

    .busca-overlay {
        top: 58px !important;

        padding: 0 10px !important;
    }

    .busca-modal {
        width: 100% !important;

        max-width: none !important;

        padding: 25px 20px !important;
    }

}


/* =====================================================
   MODAL
   ===================================================== */

.busca-modal {
    position: relative;

    width: min(900px, 100%);

    background: #ffffff;

    border-radius: 18px;

    padding: 34px;

    box-sizing: border-box;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.30);

    animation: buscaEntrar 0.22s ease-out;
}

@keyframes buscaEntrar {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   BOTÃO FECHAR
   ===================================================== */

.busca-fechar {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    color: #17324d;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.busca-fechar:hover {
    background: #eef3f7;
}


/* =====================================================
   CABEÇALHO
   ===================================================== */

.busca-cabecalho {
    margin-bottom: 24px;
}

.busca-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #2c82c9;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.busca-cabecalho h2 {
    margin: 0 0 8px;

    color: #102a43;

    font-size: 28px;
}

.busca-cabecalho p {
    margin: 0;

    color: #667085;

    font-size: 15px;
}


/* =====================================================
   CAMPO DE BUSCA
   ===================================================== */

.busca-campo {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    margin-bottom: 24px;
}

.busca-icone {
    position: absolute;

    left: 17px;

    color: #587087;

    font-size: 18px;

    pointer-events: none;
}

.busca-campo input {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 18px 15px 48px;

    border: 1px solid #d6dee6;

    border-radius: 12px;

    background: #f8fafc;

    color: #102a43;

    font-size: 16px;

    outline: none;
}

.busca-campo input:focus {
    border-color: #2c82c9;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(44, 130, 201, 0.12);
}


/* =====================================================
   RESULTADOS
   ===================================================== */

.busca-resultados {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.busca-vazio {
    grid-column: 1 / -1;

    padding: 35px 20px;

    text-align: center;

    color: #667085;

    background: #f5f7fa;

    border-radius: 12px;
}


/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 800px) {

    .busca-overlay {
        padding: 70px 14px 20px;
    }

    .busca-modal {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .busca-resultados {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 550px) {

    .busca-overlay {
        padding: 60px 10px 15px;
    }

    .busca-modal {
        padding: 24px 16px;
    }

    .busca-cabecalho h2 {
        font-size: 23px;
    }

    .busca-resultados {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   BUSCA GLOBAL — AJUSTE MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .busca-overlay {
        position: fixed !important;

        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;

        width: 100% !important;
        height: auto !important;

        display: none !important;

        justify-content: center !important;
        align-items: flex-start !important;

        padding: 0 10px !important;

        background: transparent !important;

        pointer-events: none !important;

        z-index: 999999 !important;
    }

    .busca-overlay.aberto {
        display: flex !important;
        pointer-events: auto !important;
    }


    /* CAIXA */

    .busca-modal {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 24px 18px 20px !important;

        box-sizing: border-box !important;

        border-radius: 0 0 14px 14px !important;

        border-top: none !important;

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20) !important;
    }


    /* CABEÇALHO */

    .busca-cabecalho {
        margin-bottom: 18px !important;

        padding-right: 35px !important;
    }

    .busca-eyebrow {
        font-size: 10px !important;

        margin-bottom: 5px !important;
    }

    .busca-cabecalho h2 {
        font-size: 23px !important;

        line-height: 1.2 !important;

        margin: 0 0 7px !important;
    }

    .busca-cabecalho p {
        font-size: 13px !important;

        line-height: 1.4 !important;

        margin: 0 !important;
    }


    /* BOTÃO FECHAR */

    .busca-fechar {
        top: 12px !important;
        right: 12px !important;

        width: 34px !important;
        height: 34px !important;

        font-size: 25px !important;
    }


    /* CAMPO */

    .busca-campo {
        width: 100% !important;

        margin-bottom: 14px !important;
    }

    .busca-campo input {
        width: 100% !important;

        min-height: 48px !important;

        padding: 12px 14px 12px 42px !important;

        box-sizing: border-box !important;

        font-size: 15px !important;

        border-radius: 9px !important;
    }


    /* RESULTADOS */

    .busca-resultados {
        width: 100% !important;

        max-height: 300px !important;

        overflow-y: auto !important;
    }

    .busca-vazio {
        padding: 20px 12px !important;

        font-size: 13px !important;

        line-height: 1.4 !important;
    }

}


/* =====================================================
   CELULARES PEQUENOS
   ===================================================== */

@media (max-width: 380px) {

    .busca-modal {
        padding: 20px 14px 16px !important;
    }

    .busca-cabecalho h2 {
        font-size: 21px !important;
    }

    .busca-cabecalho p {
        font-size: 12px !important;
    }

}

/* =====================================================
   RESULTADOS DA BUSCA — CARTÕES HORIZONTAIS
   ===================================================== */

.busca-resultados {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
}


/* ITEM */

.busca-resultado-item {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 78px;

    box-sizing: border-box;

    padding: 8px;

    border-radius: 12px;

    background: #ffffff;

    text-decoration: none !important;

    border: 1px solid #e5eaf0;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.busca-resultado-item:hover {
    background: #f5f8fb;
    border-color: #c9d8e6;
    transform: translateY(-1px);
}

/* Miniatura */
.busca-resultado-imagem {
    flex: 0 0 82px;

    width: 82px;
    height: 62px;

    border-radius: 9px;

    overflow: hidden;

    background: #e9eef3;

    display: flex;
    align-items: center;
    justify-content: center;
}


.busca-resultado-imagem img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* SEM IMAGEM */

.busca-sem-imagem {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    color: #52708d;
}

/* Área do texto */
.busca-resultado-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding-left: 13px;
}

.busca-resultado-info strong {
    display: block;

    color: #102f4d;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.25;

    white-space: normal;

    overflow-wrap: break-word;
}

/* Tipo */
.busca-resultado-tipo {
    display: block;

    margin-bottom: 4px;

    color: #2c7bc4;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

/* Nome */
.busca-resultado-nome {
    display: block;

    color: #142b44;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;

    overflow-wrap: break-word;
}

/* Seta */
.busca-resultado-seta {
    flex: 0 0 auto;

    color: #2877bd;

    font-size: 20px;
    font-weight: 600;

    padding: 0 4px;
}

/* =====================================================
   SCROLL DA LISTA
   ===================================================== */

.busca-resultados::-webkit-scrollbar {
    width: 7px;
}

.busca-resultados::-webkit-scrollbar-track {
    background: #f1f4f7;
    border-radius: 10px;
}

.busca-resultados::-webkit-scrollbar-thumb {
    background: #aebdca;
    border-radius: 10px;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .busca-resultado-item {
        min-height: 70px;
        padding: 7px;
    }

    .busca-resultado-imagem {
        flex-basis: 72px;
        width: 72px;
        height: 55px;
    }

    .busca-resultado-info {
        padding-left: 10px;
    }

    .busca-resultado-info strong {
        font-size: 14px;
    }

}

/* =====================================================
   LOGO CIDIT NA TOPBAR
   ===================================================== */

.acervo-topbar-logo-cidit {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* =====================================================
   PÁGINA DE CONTATO
   ===================================================== */

.contato-page {
    background: #f3f6fa;
    min-height: calc(100vh - 70px);
}


/* CONTAINER */

.contato-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HERO
   ===================================================== */

.contato-hero {
    background: linear-gradient(
        135deg,
        #0b2947 0%,
        #123f68 100%
    );

    padding: 75px 0 85px;
    color: #ffffff;
}

.contato-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #55a7ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contato-hero h1 {
    margin: 0 0 18px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;

    letter-spacing: -1.5px;
}

.contato-hero p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 17px;
    line-height: 1.7;
}


/* =====================================================
   CONTEÚDO
   ===================================================== */

.contato-conteudo {
    padding: 70px 0 90px;
}

.contato-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 70px;

    align-items: start;
}


/* =====================================================
   TEXTO
   ===================================================== */

.contato-info {
    padding-top: 12px;
}

.contato-label {
    display: block;

    margin-bottom: 15px;

    color: #1677e8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contato-info h2 {
    margin: 0 0 22px;

    color: #102f4e;

    font-size: 32px;
    line-height: 1.15;

    letter-spacing: -0.7px;
}

.contato-info p {
    margin: 0 0 18px;

    color: #52657a;

    font-size: 15px;
    line-height: 1.75;
}


/* =====================================================
   CARD DO FORMULÁRIO
   ===================================================== */

.contato-formulario {
    background: #ffffff;

    padding: 36px;

    border: 1px solid #dfe7ef;
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(15, 43, 72, 0.08);
}


/* =====================================================
   CAMPOS
   ===================================================== */

.contato-formulario form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contato-formulario label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    color: #173653;

    font-size: 13px;
    font-weight: 700;
}

.contato-formulario input,
.contato-formulario textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #d5dee8;
    border-radius: 10px;

    background: #ffffff;

    color: #18344f;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contato-formulario input {
    height: 48px;
}

.contato-formulario textarea {
    min-height: 150px;

    resize: vertical;
}

.contato-formulario input::placeholder,
.contato-formulario textarea::placeholder {
    color: #98a6b5;
}

.contato-formulario input:focus,
.contato-formulario textarea:focus {
    outline: none;

    border-color: #2585df;

    box-shadow:
        0 0 0 3px rgba(37, 133, 223, 0.12);
}


/* =====================================================
   BOTÃO
   ===================================================== */

.contato-botao {
    width: 100%;

    margin-top: 4px;

    min-height: 50px;

    padding: 13px 20px;

    border: none;
    border-radius: 10px;

    background: #126bd6;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contato-botao:hover {
    background: #0d5fbe;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(18, 107, 214, 0.22);
}


/* =====================================================
   RODAPÉ
   ===================================================== */

.contato-footer {
    padding: 30px 0;

    background: #071d31;

    color: rgba(255,255,255,0.75);

    text-align: center;

    font-size: 13px;
}

.contato-footer p {
    margin: 0;
}


/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 800px) {

    .contato-hero {
        padding: 55px 0 60px;
    }

    .contato-conteudo {
        padding: 50px 0 65px;
    }

    .contato-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contato-info {
        padding-top: 0;
    }

    .contato-formulario {
        padding: 26px;
    }

}


@media (max-width: 500px) {

    .contato-container {
        width: min(100% - 28px, 1100px);
    }

    .contato-hero h1 {
        font-size: 38px;
    }

    .contato-hero p {
        font-size: 15px;
    }

    .contato-info h2 {
        font-size: 27px;
    }

    .contato-formulario {
        padding: 22px;
        border-radius: 14px;
    }

}

/* =====================================================
   DADOS DE CONTATO
   ===================================================== */

.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-top: 32px;
    padding-top: 26px;

    border-top: 1px solid #dce5ee;
}

.contato-dado {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contato-dado-icone {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: #e8f2fc;

    color: #126bd6;

    font-size: 18px;
}

.contato-dado-titulo {
    display: block;

    margin-bottom: 5px;

    color: #173653;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contato-dado a,
.contato-dado-texto {
    display: block;

    color: #52657a;

    font-size: 14px;
    line-height: 1.65;
}

.contato-dado a {
    color: #126bd6;

    text-decoration: none;

    font-weight: 600;
}

.contato-dado a:hover {
    text-decoration: underline;
}

/* =====================================================
   MENSAGENS FLUTUANTES DO FORMULÁRIO
   ===================================================== */

.contato-mensagem {
    position: fixed;
    top: 88px;
    right: 24px;

    width: min(390px, calc(100% - 48px));
    box-sizing: border-box;

    padding: 16px 20px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    border-radius: 12px;

    font-size: 14px;
    line-height: 1.5;

    z-index: 9999;

    box-shadow:
        0 12px 30px rgba(15, 43, 72, 0.16);

    animation:
        contatoMensagemEntrada 0.35s ease forwards;
}

.contato-mensagem strong {
    font-size: 15px;
}

.contato-mensagem-sucesso {
    background: #eef8f1;
    border: 1px solid #c7e5d0;
    color: #216b3d;
}

.contato-mensagem-erro {
    background: #fff4f4;
    border: 1px solid #e7c4c4;
    color: #9b3030;
}

@keyframes contatoMensagemEntrada {

    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .contato-mensagem {
        top: 78px;
        right: 14px;
        width: calc(100% - 28px);
    }

}

@media (max-width: 760px) {

    .acervo-topbar-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        position: relative !important;

        width: auto !important;
        height: auto !important;

        overflow: visible !important;

        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .acervo-topbar-nav-link {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        width: auto !important;
        height: auto !important;

        white-space: nowrap !important;

        font-size: 10px !important;
    }

}