{%- assign politica =site.data['termos-de-uso'].termos_uso-%}

{{ politica.title }}

{% for p in politica.paragraphs %}

{{ p | markdownify }}

{% endfor %}
{% for s in politica.sections %}

{{ s.title }}

{% if s.paragraphs %} {% for p in s.paragraphs %}

{{ p | markdownify }}

{% endfor %} {% endif %} {% if s.items %}
    {% for li in s.items %}
  • {{ li | markdownify }}
  • {% endfor %}
{% endif %} {% if s.paragraphs_extra %} {% for p in s.paragraphs_extra %}

{{ p | markdownify }}

{% endfor %} {% endif %} {% if s.subsections %} {% for ss in s.subsections %}

{{ ss.title }}

{% if ss.paragraphs %} {% for sp in ss.paragraphs %}

{{ sp | markdownify }}

{% endfor %} {% endif %} {% if ss.items %}
    {% for li in ss.items %}
  • {{ li | markdownify }}
  • {% endfor %}
{% endif %}
{% endfor %} {% endif %} {% if s.paragraphs_after %} {% for p in s.paragraphs_after %}

{{ p | markdownify }}

{% endfor %} {% endif %}
{% endfor %}