{% if hasProducts %}
{# HOME PAGE #}
{% if homeLayoutSections is defined %}
{% set page = 'banner' %}
{% set bg = (homeLayoutSections.searchSection.background)? ' sec-bg-alt' : '' %}
{# INTERNAL PAGES #}
{% else %}
{% set page = 'topo' %}
{% set bg = ' sec-bg-alt' %}
{% endif %}
<div class="busca-contem-{{ page }}{{ bg }}">
<div class="container">
{% include 'website/includes/search-form-section.html.twig' %}
</div>
</div>
{% endif %}