Skip to content
  • Who we are
    • OUR OFFICES
    • Corporate Social Responsibility
    • 50 years of history
    • CAREER
  • Practice areas
  • Lawyers
  • Awards and recognitions
  • Legal Intelligence Center
  • Newsletter
  • Who we are
    • OUR OFFICES
    • Corporate Social Responsibility
    • 50 years of history
    • CAREER
  • Practice areas
  • Lawyers
  • Awards and recognitions
  • Legal Intelligence Center
  • Newsletter
Search entire site
  • SEARCH LAWYERS
  • SEARCH AREAS OF PRACTICE
  • SEARCH LEGAL INTELLIGENCE CENTER
  • SEARCH ALL SITE
'); } } function chamadaAjax_254(field, parametros, limpar) { // Show loading state $moduleContainer.find('.results_search').html(""); $moduleContainer.find('.search-box-container.loading').show(); $.ajax({ url: '/en/component/ajax/?module=search_ajax&format=json&limit=4', type: 'GET', dataType: 'json', data: parametros, }) .done(function(data) { if (data.success) { // Make sure we have all the data before calling popularesultados if (data.data) { // Wait for the next tick to ensure DOM is ready setTimeout(function() { popularesultados_254(field, data.data, limpar); initOwl_254(); $moduleContainer.find(".search-box-container .loading").hide(); }, 0); } } }) .fail(function(jqXHR, textStatus, errorThrown) { console.error("Falha ao obter items:", textStatus, errorThrown); }) .always(function() { $(field).parents('.search-box-container').find('.search-button').show(); }); } function popularesultados_254(field, resultados, limpar) { if (!($(field).parents('.search-box-container').find('.search-box-left').hasClass('opened'))) { $(field).parents('.search-box-container').find('.open-search-all').click(); } let html = ''; if (!limpar) { html = $(field).parents('.search-box-container').find('.results_search').html(); } let layoutHeaders = {}; // cabecalho advogados if (resultados.adv.length > 0) { html += '
RESULTS IN LAWYERS'; html += 'SEE ALL RESULTS >'; html += '
'; html += '
'; $.each(resultados.adv, function(index, resultado) { html += populaResultado_254(resultado, field); }) html += "
"; } // cabecalho IJ if (resultados.ij.length > 0) { html += '
RESULTS IN LEGAL INTELLIGENCE CENTER'; html += 'SEE ALL RESULTS >'; html += '
'; $.each(resultados.ij, function(index, resultado) { html += populaResultado_254(resultado, field); }) } // cabecalho areas de atuacao if (resultados.area.length > 0) { html += '
RESULTS IN AREAS OF PRACTICE'; html += 'SEE ALL RESULTS >'; html += '
'; html += "
"; $.each(resultados.area, function(index, resultado) { html += populaResultado_254(resultado, field); }) } $moduleContainer.find('.results_search').html(html); $moduleContainer.find('.search-box-container.marea').show(); // Adiciona link "Ver todos os resultados" se houver resultados em qualquer categoria if (resultados.adv.length > 0 || resultados.ij.length > 0 || resultados.area.length > 0) { let verTodosHtml = '
Show all results
'; $moduleContainer.find('.results_search').append(verTodosHtml); } } // checa o click fora do box de busca $(document).click(function(e) { if ($(e.target).is($moduleContainer.find('.search-box-container')) || $(e.target).parents($moduleContainer.find(".search-box-container")).length) { // Clicou dentro deste módulo específico } else { // Clicou fora deste módulo específico $moduleContainer.find('.search-box-fixed').css({ // 'transform': 'translateY(-100%)', // 'opacity': '0', // 'pointer-events': 'none' }); $moduleContainer.find('.search-box-fixed').removeClass('opened'); $moduleContainer.find('.search-box-left').removeClass('opened'); $moduleContainer.find('.search-box-options').removeClass('opened'); $moduleContainer.find('.search-box-options-wrapper').removeClass('opened'); $moduleContainer.find('.search-box-container').find('.search-button').show(); $moduleContainer.find('.search-box-container').find('.loading').hide(); $moduleContainer.find('.search-box-container').find('.results_search').html(''); $moduleContainer.find('.search-box-container').find('.mod-search-q254').val(''); $moduleContainer.find('.search-icon-search').removeClass('d-none'); $moduleContainer.find('.search-icon-times').addClass('d-none'); $moduleContainer.find('.reset-search').hide(); } }); $moduleContainer.find('.search-box-container .open-search-all').on('click', function() { if ($(this).parent().hasClass('opened')) { $(this).parent().removeClass('opened'); $moduleContainer.find('.search-box-options').removeClass('opened'); $moduleContainer.find('.search-box-options-wrapper').removeClass('opened'); $moduleContainer.find('.search-box-fixed').removeClass('opened'); $moduleContainer.find('.search-box-fixed').css({ // 'transform': 'translateY(-100%)', // 'opacity': '0', // 'pointer-events': 'none' }); } else { $(this).parent().addClass('opened'); $moduleContainer.find('.search-box-options').addClass('opened'); $moduleContainer.find('.search-box-options-wrapper').addClass('opened'); $moduleContainer.find('.search-box-fixed').addClass('opened'); $moduleContainer.find('.search-box-fixed').css({ // 'transform': 'translateY(0)', // 'opacity': '1', // 'pointer-events': 'all' }); } }); $moduleContainer.find('.search-box-options .option').on('click', function() { $moduleContainer.find('.search-box-options .option').removeClass('active'); $(this).addClass('active'); categoria_busca_ajax_254 = $(this).attr('buscar'); if (categoria_busca_ajax_254 == undefined) { categoria_busca_ajax_254 = 'tudo'; } if ($moduleContainer.find('.mod-search-q254').val().length >= 3) { buscaAjax_254($moduleContainer.find('.mod-search-q254')); } }); function reposicionaBusca_254() { aberto = false; $moduleContainer.find('.search-box-container').find('.open-search-all').click(); $moduleContainer.find('.search-box-fixed').removeClass('opened'); $moduleContainer.find('.search-box-left').removeClass('opened'); $moduleContainer.find('.search-box-options').removeClass('opened'); $moduleContainer.find('.search-box-options-wrapper').removeClass('opened'); $moduleContainer.find('.search-box-container').find('.search-button').show(); $moduleContainer.find('.search-box-container').find('.loading').hide(); $moduleContainer.find('.search-box-container').find('.results_search').html(''); $moduleContainer.find('.search-box-container').find('.mod-search-q254').val(''); $moduleContainer.find('.search-icon-search').removeClass('d-none'); $moduleContainer.find('.search-icon-times').addClass('d-none'); } function posicionaModalResultados_254() { let altura = $moduleContainer.find('.search-box-container').outerHeight(); let largura = $moduleContainer.find('.search-box-container').outerWidth(); let posicao = $moduleContainer.find('.search-box-container').offset(); let top = posicao.top + altura; let left = posicao.left; $moduleContainer.find('.search-box-container.marea').css({ 'top': top, 'left': left, 'width': largura }); } $moduleContainer.find('.mod-search-ajax .search-button').click(function(event) { event.preventDefault(); if (q_254.length > 0) { buscarTodosResultados_254(); } }); $moduleContainer.find('.button.btn.btn-primary.open').click(function(event) { event.preventDefault(); if ($(this).hasClass('opened')) { $(this).removeClass('opened'); $moduleContainer.find('.search-icon-search').removeClass('d-none'); $moduleContainer.find('.search-icon-times').addClass('d-none'); reposicionaBusca_254(); } else { aberto = true; $(this).addClass('opened'); $moduleContainer.find('.search-icon-search').addClass('d-none'); $moduleContainer.find('.search-icon-times').removeClass('d-none'); $moduleContainer.find('.search-box-fixed').css({ // 'transform': 'translateY(0)', // 'opacity': '1', // 'pointer-events': 'all' }); $moduleContainer.find('.search-box-fixed').addClass('opened'); $moduleContainer.find('.mod-search-q254').focus(); } }); function populaResultado_254(resultado, field) { let linha = ''; if (resultado.layout == 'advogados') { if (!cabecalho_254[1]) { cabecalho_254[1] = true; } linha += '
' + '
' + '
' + resultado.titulo + '
' + '
' + resultado.tipodesc + '
' + '
' + resultado.email + '
' + '
' + resultado.telefone + '
' + '
'; } else if (resultado.layout == 'areas_atuacao') { if (!cabecalho_254[0]) { cabecalho_254[0] = true; } linha += '
' + '
' + resultado.titulo + '
' + '
'; } else { if (!cabecalho_254[2]) { cabecalho_254[2] = true; } linha += '
' + '
' + '
' + '
' + '
' + '
' + resultado.categoria + '
' + '
' + resultado.titulo + '
' + '
' + '
'; } return linha; } function initOwl_254() { var owl_advogado = $moduleContainer.find('.advogado-items-254'); owl_advogado.owlCarousel({ loop: false, margin: 10, nav: true, dots: false, responsive: { 0: { items: 1 }, 600: { items: 2 }, 1000: { items: 3 } } }); var officeWidthadv = $moduleContainer.find('.advogado-items-254 .advogado-item').width(); var officeHeightadv = officeWidthadv * 1.28; $moduleContainer.find('.advogado-items-254 .advogado-item').css('height', officeHeightadv); } }); var modulo_ajax_iniciado_254 = true; } function buscarTodosAdvogados_254() { let baseUrl = "/en/lawyers"; let url = baseUrl + (baseUrl.indexOf('?') !== -1 ? '&' : '?') + 'nome_advogado=' + encodeURIComponent(q_254); window.location.href = url; return false; } function buscarTodasAreas_254() { let baseUrl = "/en/search"; let url = baseUrl + (baseUrl.indexOf('?') !== -1 ? '&' : '?') + 'q=' + encodeURIComponent(q_254) + '&f=' + area_search_254; window.location.href = url; return false; } function buscarTodosIJ_254() { let baseUrl = "/en/search"; let url = baseUrl + (baseUrl.indexOf('?') !== -1 ? '&' : '?') + 'q=' + encodeURIComponent(q_254) + '&f=' + ij_254; window.location.href = url; return false; } function buscarTodosResultados_254() { let baseUrl = "/en/search"; let url = baseUrl + (baseUrl.indexOf('?') !== -1 ? '&' : '?') + 'q=' + encodeURIComponent(q_254); window.location.href = url; return false; } // Event handlers específicos para este módulo jQuery(document).on('click', '.search-ajax-module-254 a[buscar="inteligencia_juridica"]', function(e) { e.preventDefault(); buscarTodosIJ_254(); }); jQuery(document).on('click', '.search-ajax-module-254 a[buscar="advogados"]', function(e) { e.preventDefault(); buscarTodosAdvogados_254(); }); jQuery(document).on('click', '.search-ajax-module-254 a[buscar="areas_atuacao"]', function(e) { e.preventDefault(); buscarTodasAreas_254(); }); jQuery(document).on('click', '.search-ajax-module-254 a[buscar="todos_resultados"]', function(e) { e.preventDefault(); buscarTodosResultados_254(); });
  • PT
  • EN
  1. Home
  2. Sitemap

Site Map 6v5g49

Who we are b5h2g

  • Our offices
  • Corporate responsibility

Career 2c473w

  • Work with us

Practice areas 40c34

Lawyers z3b2z

  • Adriana Pallis
  • Adriane Gouveia Solis
  • Adriano Schnur
  • Afonso Augusto Bersan De Andrade
  • Agnes Domingues Dos Santos
  • Alberto Faro
  • Alejandro Alcaraz Párraga
  • Alekssandre Alves De Souza
  • Alessandra de Souza Pinto
  • Alessandra Takara
View all

Privacy 123x5p

  • Cookies
  • Cookies list
  • Rights of holders
  • Data Protection Officer

Who we are 5f4a2i

  • Our offices
  • Corporate responsibility
  • Sitemap

CAREER 2d1n3l

  • Practices
  • Industries
  • Multidisciplinary groups

CAREER 2d1n3l

  • Work with us

LEGAL INTELLIGENCE CENTER 445s6s

  • Publications
  • Bankruptcy and reorganization series
  • Press
  • Ebooks

Privacy 6d2o1d

  • Cookies
  • Cookies list
  • Rights of holders
  • Data Protection Officer

Information Security 1k2d5e

  • Information security incident reporting

Integrity 6un1q

  • Code of Conduct
  • TEMM VOZ
Logo Machado Meyer

Ⓒ MACHADO, MEYER, SENDACZ AND OPICE ADVOGADOS 2025ALL RIGHTS RESERVED ci1p

Machado Meyer
Infraestrutura e Energia

Decreto do Gás para Empregar busca acelerar reformas no setor 314q5u

Decreto do Gás para Empregar acelera reformas no setor, ampliando competências da ANP e criando plano nacional para gestão do recurso no país.
`; $('.inteligence-news-module .item.item-left').before(htmlContent); $('.inteligence-news-module .item.item-right:last-child').remove(); $('.inteligence-news-module .item-image').addClass('ratio ratio-16x9 overflow-hidden'); $('.inteligence-news-module .item-image').removeAttr('style'); } }); jQuery(document).ready(function ($) { // Verifica se a URL atual tem um hash (#) var hash = window.location.hash; if (hash) { // Pega o texto depois do # var hashText = hash.substring(1); // Itera sobre cada link dentro do mod-languages $('#resiliente-flags .mod-languages a').each(function () { var currentHref = $(this).attr('href'); // Adiciona o hash ao final do link, preservando a URL existente var newHref = currentHref + '#' + hashText; $(this).attr('href', newHref); }); } });