{# Cabeçalho: barra superior (marca + institucional + busca) + barra inferior (categorias, opcional) + drawer #}
{%- set editorias_visible = theme.nav_editorias_visible|default(true) -%}
{%- set editorias = [] -%}
{% for slug in theme.nav_editorias %}
{%- set p = page.find('/' ~ slug) -%}
{% if p %}{% set editorias = editorias|merge([p]) %}{% endif %}
{% endfor %}
{#- itens do topo que abrem dropdown a partir das subpáginas publicadas -#}
{%- set dropdown_slugs = ['pesquisa-e-analise', 'eventos'] -%}
{%- set institucional = [] -%}
{% for slug in theme.nav_institucional %}
{%- set p = page.find('/' ~ slug) -%}
{% if p and slug != 'politica-de-privacidade' %}{% set institucional = institucional|merge([p]) %}{% endif %}
{% endfor %}
{%- set visible = editorias|slice(0, 8) -%}
{%- set overflow = editorias|slice(8) -%}