{% extends "_layouts/main.html" %} {% import 'macros.twig' as macros %} {% block main %} {# ========================= SEC 1 — INTRO + CARTÕES DE CONTACTO contacts_section_1: - section_title (RTE) - contacts_info (matriz: title, text, link_href, icone) ========================= #} {% set sec1 = entry.contacts_section_1.one() ?? null %} {% if sec1 %}
{% if sec1.section_title %}

{{ macros.limpar_paragrafos(sec1.section_title) }}

{% endif %}
{% if sec1.contacts_info|length %} {% set con_wids = [ 'ebbea0bb-40cd-8931-9fdf-cc41b84fa961', '67e1f149-3751-3548-20c9-4ac611ee80cf', '80d161d3-2a56-2273-5e27-67e4ad49dba5' ] %}
{% endif %} {% endif %} {# ========================= SEC 2 — MENSAGEM DIRETA (formulário) contacts_section_2: - section_title (RTE) - image (asset) - image_2 (asset) (Formulário Webflow mantido como está.) ========================= #} {% set sec2 = entry.contacts_section_2.one() ?? null %} {% if sec2 %} {% set sec2_img = sec2.image.one() ?? null %} {% set sec2_img_2 = sec2.image_2.one() ?? null %}
{% if sec2.section_title %}

{{ macros.limpar_paragrafos(sec2.section_title) }}

{% endif %}
{{ freeform.form('contacto').render }}
{% if sec2_img %} {{ sec2_img.title }} {% endif %} {% if sec2_img_2 %} {{ sec2_img_2.title }} {% endif %}
{% endif %} {% endblock %}