<div class="search-overlay">
<div id="search-container" class="container">
{# SEARCH FORM #}
{% include 'website/includes/search-form-section.html.twig' %}
{# CATEGORIES #}
<div class="categories">
{% for category in categories %}
{% if category.hasProduct() %}
<a href="{{ path('productListCategory', { type: 'produtos', slug: category.slug }) }}" class="tag">
{{ category.category }}
</a>
{% endif %}
{% endfor %}
</div>
{# PRODUCTS #}
<div class="boxes">
{% if false %}{# @!!! #}
{% for homeLayoutSection, value in homeLayoutSections %}
{% if homeLayoutSection == 'productPlanSection' %}
{% set section = productPlan %}
{% elseif homeLayoutSection == 'productComboSection' %}
{% set section = productCombo %}
{% endif %}
{% if value.active == enum('ClientEnum::YES') %}
{% include getSection(homeLayoutSection) with { layout: 'home', theme: (isDarkTheme? 'dark':'light') }%}
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
</div>