{% extends 'base.html.twig' %} {% block title %}{{ 'woo.meta_title'|trans }} | Saúl Morales Pacheco{% endblock %} {% block meta_description %}{{ 'woo.meta_description'|trans }}{% endblock %} {% block body %} {# Navigation with language switcher #} {% include 'partials/_nav.html.twig' %} {# Hero Section #}

{{ 'woo.hero.title'|trans }}

{{ 'woo.hero.subtitle'|trans }}

{# Problems Section #}

{{ 'woo.problems.title'|trans }}

☕ {{ 'woo.problems.billing'|trans }}

{{ 'woo.problems.billing_desc'|trans }}

📦 {{ 'woo.problems.shipping'|trans }}

{{ 'woo.problems.shipping_desc'|trans }}

💳 {{ 'woo.problems.payments'|trans }}

{{ 'woo.problems.payments_desc'|trans }}

{# Solution Section #}

{{ 'woo.solution.title'|trans }}

{{ 'woo.solution.text'|trans }}

{# Services Section #}

{{ 'woo.services.title'|trans }}

{{ 'woo.services.billing_title'|trans }}

{{ 'woo.services.billing_desc'|trans }}

{{ 'woo.services.shipping_title'|trans }}

{{ 'woo.services.shipping_desc'|trans }}

{{ 'woo.services.payments_title'|trans }}

{{ 'woo.services.payments_desc'|trans }}

{{ 'woo.services.custom_title'|trans }}

{{ 'woo.services.custom_desc'|trans }}

{# Social Proof #}

🇨🇴 {{ 'woo.proof.text'|trans }}

{# Form Section #}

{{ 'woo.form.title'|trans }}

{# Form #} {{ form_start(woo_form, { 'action': path('woocommerce_colombia_submit'), 'attr': { 'id': 'woo-form', 'class': 'woo-form', 'novalidate': 'novalidate', 'data-error-validation': 'woo.form.error_validation'|trans, 'data-error-network': 'woo.form.error_generic'|trans } }) }}
{{ form_label(woo_form.name, 'woo.form.name'|trans, {'attr': {'class': 'woo-form__label'}}) }} {{ form_widget(woo_form.name, {'attr': {'class': 'woo-form__input', 'placeholder': 'woo.form.name_placeholder'|trans}}) }}
{{ form_label(woo_form.email, 'woo.form.email'|trans, {'attr': {'class': 'woo-form__label'}}) }} {{ form_widget(woo_form.email, {'attr': {'class': 'woo-form__input', 'placeholder': 'woo.form.email_placeholder'|trans}}) }}
{{ form_label(woo_form.website, 'woo.form.website'|trans, {'attr': {'class': 'woo-form__label'}}) }} {{ form_widget(woo_form.website, {'attr': {'class': 'woo-form__input', 'placeholder': 'woo.form.website_placeholder'|trans}}) }}
{{ form_label(woo_form.need, 'woo.form.need'|trans, {'attr': {'class': 'woo-form__label'}}) }} {{ form_widget(woo_form.need, {'attr': {'class': 'woo-form__select'}}) }}
{# Hidden reCAPTCHA token #} {# CSRF Token #} {{ form_row(woo_form._token) }} {# Message container #} {# Submit button #} {{ form_end(woo_form, {'render_rest': false}) }}
{# Bottom CTA #}

{{ 'woo.cta_bottom.title'|trans }}

{{ 'woo.cta_bottom.button'|trans }}
{# Footer #} {% include 'partials/_footer.html.twig' %} {% endblock %}