{% extends '_templates/base.twig' %}

{% block title %}
    {{ page.page_title }}
{% endblock %}

{% block style %}
    <style>
        [data-b2c-preloader] {
            display: none;
        }
    </style>
{% endblock %}

{% block content %}
    {% include '_templates/includes/header.twig' %}

    <section class="main home">

        <div data-b2c-content class="animate__animated animate__fadeIn">

            {% include 'perfil/informacoes/informacoes.twig' %}
        </div>
    </section>

    {% include '_templates/includes/footer.twig' %}

{% endblock %}

{% block scripts %}
    <script>
        (function () {
            B2C.perfil();
            setMascaras();
        })();
    </script>
{% endblock %}