@italoborges
That’s okay, don’t lose hope, there’s lots of creative ways to solve problems in HS using the tools they give you. Here’s how I would approach this.
Go to your advanced menu builder and create 3 menus; 1 for the main nav, and 2 for the 2 unique sub-navs.
Next. Go to the template builder and create a new local custom module.
Next. Add choice field with 3 options (None, Solutions, DataCenter)
Next. In the HTML/HUBL section, add the following (note: change out the id to match your new submenu ids)
{% if module.sub_menu != 'none' %}
{% if module.sub_menu == 'solutions' %}
{% menu "sub_menu_1" id='the_id_of_your_first_submenu', overrideable=False, root_type='site_root', flyouts='false', max_levels='1', flow='horizontal', label='Sub Menu 1' %}
{% endif %}
{% if module.sub_menu == 'datacenter' %}
{% menu "sub_menu_1" id='the_id_of_your_second_submenu', overrideable=False, root_type='site_root', flyouts='false', max_levels='1', flow='horizontal', label='Sub Menu 1' %}
{% endif %}
{% endif %}
Next. Go back to your template and add the new local module
Next. Create a web page based on that template and when you choose a different menu from the dropdown, you will see the submenus change
Next. Use your CSS skills to make it appear the way the designer intended
If this solution helps; please, mark it as solved
tim@belch.io