{% if reserva.contato is not empty  and getStOrcamento() != true %}

    <hr/>
    <div class="row item">
        <div class="col-12">
            <h2>{{ __('contato') }}</h2>
            <p><b>{{ __('nome') }}:</b> {{ reserva.contato.nmCompleto }}</p>
            <p><b>{{ __('email') }}:</b> {{ reserva.contato.nmEmail }}</p>
            <p>
                <b>{{ __('telefone') }}:</b> {{ reserva.contato.telefone.nrDDD is not empty ? '('~reserva.contato.telefone.nrDDD~')' : '' }} {{ reserva.contato.telefone.nrTelefone }}
            </p>
        </div>
    </div>
{% endif %}