/* ===== TOPBAR INSTITUCIONAL 90+ ===== */
/* Extraído de includes/menu_topo.php */
.topbar-90 {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(10, 12, 15, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-90-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-90-marca {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    color: #f0f4f8;
}

.topbar-90-marca img {
    height: 26px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.18));
}

.topbar-90-marca .marca-texto {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.topbar-90-marca .marca-texto sup {
    font-size: 0.55rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 1px;
}

.topbar-90-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.topbar-90-nav::-webkit-scrollbar {
    display: none;
}

.topbar-90-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.topbar-90-nav a i {
    font-size: 0.78rem;
    opacity: 0.75;
}

.topbar-90-nav a:hover {
    color: #f0f4f8;
    background: rgba(255, 255, 255, 0.05);
}

.topbar-90-nav a.ativo {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

@media (max-width: 768px) {
    .topbar-90-inner {
        padding: 10px 16px;
        gap: 14px;
    }

    .topbar-90-marca .marca-texto {
        display: none;
    }

    .topbar-90-nav a span {
        display: none;
    }

    .topbar-90-nav a {
        padding: 8px 12px;
    }

    .topbar-90-nav a i {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .topbar-90-nav a {
        transition: none;
    }
}

/* Oculta o menu institucional no mobile — informação duplicada no rodapé */
@media (max-width: 768px) {
    .topbar-90 {
        display: none;
    }
}
