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
Your browser does not the video tag.
Legal
Intelligence
Click here and check out our
new corporate video
Click here and check out our new corporate video
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(); });
cerebro mmso

Legal Intelligence Transforms! 275n2w

Check out our updates on the main legal content of the moment 32q31

GO TO THE SITE

Trending topics 6i4gx

All news
01

Tax reform: ENCAT anticipates the date of testing the layouts of tax documents 202d7

02

LC 214/25 receives new amendment proposals 503e6d

03

Ebook: The main points of the new reform of the electricity sector 4b3q1z

04

STJ its IPI tax credit to non-taxed or immune final products 5f4k

Labor and employment

MTE postpones the effective date of NR-1 new rules 705uh

MTE POSTPONDS THE EFFECTIVE DATE OF NR-1 NEW RULES. Psychosocial risk assessment will only be required as of May 2026.

Tax

Tax reform: ENCAT publishes new technical notes on the layout of tax documents 62j32

Tax reform: National Meeting of Tax Coordinators and s publishes new technical notes on the layout of tax documents.

Legal Intelligence Center 5l4q2f

Tax

Working groups discuss tax procedural reform 30693s

Tax Reform: task groups created by the CNJ and the STJ to discuss the Tax Procedural Reform advance the discussions
Labor and employment

MTE postpones the effective date of NR-1 new rules 2o3u7

MTE POSTPONDS THE EFFECTIVE DATE OF NR-1 NEW RULES. Psychosocial risk assessment will only be required as of May 2026.

All news i4v3b

Tax

Tax reform: ENCAT publishes new technical notes on the layout of tax documents 555y45

Tax reform: National Meeting of Tax Coordinators and s publishes new technical notes on the layout of tax documents.
Infrastructure and energy

Ebook: The main points of the new reform of the electricity sector 3l6h6c

In this ebook, we present the main proposed changes that include the opening of the electricity market, the reconfiguration of the allocation of charges and the change of the social tariff.
Tax

STJ its IPI tax credit to non-taxed or immune final products 6c5t

STJ declares the possibility of extending the IPI credit, provided for in article 11 of Law 9,779/99, to non-taxed or immune final products.
Tax

LC 214/25 receives new amendment proposals 635e3j

Complementary bills propose to amend LC 214/25, which establishes the IBS, CBS and IS, creates the IBS Management Committee and changes the tax law
Tax

Tax reform: ENCAT anticipates the date of testing the layouts of tax documents 31p6p

National Meeting of Tax Coordinators and s (Encat) anticipates the date of testing the layouts of tax documents
Crisis management

How companies can deal with fake news lm13

How companies can deal with fake news: crisis management strategies that can be adopted to protect your business.
Tax

Federal revenue establishes new tax compliance program 37334

Receita Federal establishes Proprogram Receita Sintonia, which boards the Confia and AEO programs to form the RFB's compliance pillar.
Tax

WHT on dividends non-resident investors 174u31

On March 18, 2025, the government presented the Bill of Law 1087, which introduced a minimum individual income tax on high-net-worth individuals and imposes withholding income tax (WHT) on dividends.
Tax

Tax reform: updates to the layout of electronic tax documents management 4h2329

Tax Reform: Management Committee of the National Standard Electronic Service Invoice updates layout of electronic tax documents.
Tax

Main aspects of the income tax reform proposed by the brazilian federal government 56e5o

What the IRPF reform sent by the federal government to the Congo proposes. If the bill is approved, new rules will take effect in 2026
Labor and employment

Resolution 586/24 guarantees unrestricted discharge of out-of-court settlements 4l6m3k

CNJ approves Resolution 586/24 and guarantees broad, general, and irrevocable discharge for out-of-court settlements, helping to reduce labor disputes.
Labor and employment

Is the Search of Employees' Belongings Lawful? 4c215

The Superior Labor Court (TST) has consolidated case law on searches of employees' belongings and recognizes the legality of the act, but there are limits.
Infrastructure and energy

Ebook: Law establishes the Energy Transition Acceleration Program 1f565

Sanctioned on January 22 of this year, Law 15,103/25 institutes the Energy Transition Acceleration Program (Paten).
Labor and employment

Can Third Parties Pay Court Fees and Appeal Deposits? 422n4y

There is no uniformity on the validity of outsourcing the payment of appeal fees. The issue should be analyzed this year by the TST.

Our

LINKEDIN

Connect with Machado Meyer's innovation and excellence on LinkedIn.

Get to know the latest
updates.
 

Our Offices 6e3h5m

São Paulo - Head Office
Ed. Seculum II – Itaim Bibi
+55 (11) 3150-7000
Open map
São Paulo - istrative
Joaquim Floriano St.
+55 (11) 3236-2600
Open map
Rio de Janeiro
Torre Rio Sul - Botafogo
+55 (21) 3572-3000
Open map
Brasília
SHIS, QI 11 Conj. 8 Casa 2
+55 (61) 2104-5550
Open map
Belo Horizonte
Avenida Getúlio Vargas - Funcionários
+55 (31) 3194-1700
Open map
New York
+1 (212) 784–8802
Open map

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 2025
ALL RIGHTS RESERVED

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); }); } });