<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Arquivos Washington - USA | Expomus</title>
	<atom:link href="https://expomus.com.br/en/tag/washington-usa/feed/" rel="self" type="application/rss+xml" />
	<link>https://expomus.com.br/en/tag/washington-usa/</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jun 2025 21:45:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://expomus.com.br/wp-content/uploads/2023/01/favicon_32.png</url>
	<title>Arquivos Washington - USA | Expomus</title>
	<link>https://expomus.com.br/en/tag/washington-usa/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Encompassing the Globe: Portugal and the Worlds of the 16th and 17th Centuries</title>
		<link>https://expomus.com.br/en/projetos/encompassing-the-globe-portugal-and-the-worlds-of-the-16th-and-17th-centuries/</link>
		
		<dc:creator><![CDATA[Renata Beltrão]]></dc:creator>
		<pubDate>Sat, 11 Feb 2023 22:48:05 +0000</pubDate>
				<category><![CDATA[Exhibitions]]></category>
		<category><![CDATA[Arthur M. Sackler Gallery]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[National Museum of African Art]]></category>
		<category><![CDATA[Washington - USA]]></category>
		<guid isPermaLink="false">http://expomus.com.br/wp_homolog2022/projetos/encompassing-the-globe-portugal-and-the-worlds-of-the-16th-and-17th-centuries/</guid>

					<description><![CDATA[<p>The Encompassing the Globe exhibition explored the artistic creation that flourished when Portuguese navigators spread new techniques and images around the world.  </p>
<p>O post <a rel="nofollow" href="https://expomus.com.br/en/projetos/encompassing-the-globe-portugal-and-the-worlds-of-the-16th-and-17th-centuries/">Encompassing the Globe: Portugal and the Worlds of the 16th and 17th Centuries</a> apareceu primeiro em <a rel="nofollow" href="https://expomus.com.br/en/">Expomus</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Throughout the 16th century, Portuguese navigators braved international waters, creating a new global trade network that connected Europe to various territories, transforming trade relations and developing an unprecedented cultural exchange. The <em><strong>exhibition Encompassing the Globe</strong> </em>explored the artistic creation that flourished when Portuguese navigators spread new techniques and images around the world. Composed of about 250 pieces produced by cultures contacted by the first trade routes of Portugal, the exhibition was presented in Washington, the Arthur M. Sackler Gallery, and the National Museum of African Art.</p>

<div  class="custom-block galeria-expomus " aria-label="Galeria de mídia">
    <div class="tit-container">
        <h2 class="tit-secao">Gallery</h2>
    </div>
    
    <div class="grid-itens">
            
        
        <figure class="item-galeria" data-nav="1">
        <div class="item-img"><img fetchpriority="high" decoding="async" width="1920" height="1440" src="https://expomus.com.br/wp-content/uploads/2023/02/Julho-2009-c-192-1920x1440.jpg" class="attachment-large size-large" alt="" /></div>        </figure>
  
        
            
        
        <figure class="item-galeria" data-nav="2">
        <div class="item-img"><img decoding="async" width="1440" height="1920" src="https://expomus.com.br/wp-content/uploads/2023/02/Julho-2009-c-239-1440x1920.jpg" class="attachment-large size-large" alt="" /></div>        </figure>
  
        
            
        
        <figure class="item-galeria" data-nav="3">
        <div class="item-img"><img decoding="async" width="1920" height="1440" src="https://expomus.com.br/wp-content/uploads/2023/02/Julho-2009-c-241-1920x1440.jpg" class="attachment-large size-large" alt="" /></div>        </figure>
  
        
     
    </div>
    <div class="amplia-midia">
        <div class="container-midia">
        </div>
        <button class="bt-nav bt-sair"><img decoding="async" src="https://expomus.com.br/wp-content/themes/tema-expomus/imgs/gerais/ico_galeria-sair.svg"><span>sair</span></button>
        <button class="bt-nav bt-prev desativado"><img decoding="async" src="https://expomus.com.br/wp-content/themes/tema-expomus/imgs/gerais/ico_galeria-seta.svg"></button>
        <button class="bt-nav bt-next"><img decoding="async" src="https://expomus.com.br/wp-content/themes/tema-expomus/imgs/gerais/ico_galeria-seta.svg"></button>
    </div>
</div>


<script>

    jQuery(function ($) {

        $(document).ready(function () {
            
            let contador = 1;
            const totalItens = 3;
            
            let bt_next = $(".amplia-midia .bt-next");
            let bt_prev = $(".amplia-midia .bt-prev");
            let bt_sair = $(".amplia-midia .bt-sair");
            let amplia_midia = $('.amplia-midia');
            let container_midia = $('.amplia-midia .container-midia');

            $(".item-galeria").click(function () {
                let clone = $(this).clone();
                contador = $(this).data('nav');
                
                if(contador > 1) {
                    bt_prev.removeClass('desativado');
                } else {
                    bt_prev.addClass('desativado');
                }
                    
                if(contador < totalItens) {
                    bt_next.removeClass('desativado');
                } else {
                    bt_next.addClass('desativado');
                }
                
                container_midia.html(clone);
                //$(this).clone().appendTo(".amplia-img");
                setTimeout(function() {
                    amplia_midia.addClass('ativo');
                    $('html').addClass('no-scroll');
                }, 300)
            });

            bt_sair.click(function () {
                amplia_midia.removeClass('ativo');
                $('html').removeClass('no-scroll');
                setTimeout(function() {
                    container_midia.html('');
                }, 300)
            });
            

            
            bt_next.click(function () {
                if(contador < totalItens) {
                    contador++;
                    
                    if(contador == totalItens) {
                        $(this).addClass('desativado');
                    } else {
                        $(this).removeClass('desativado');
                    }
                    
                    if(contador > 1) {
                        bt_prev.removeClass('desativado');
                    }
                }
                
                let clone = $('.item-galeria[data-nav="'+contador+'"]').clone();
                container_midia.css('opacity', 0);
                

                setTimeout(function() {
                    container_midia.html(clone);
                    container_midia.css('opacity', 1);
                }, 400)
            });
            
            bt_prev.click(function () {
                if(contador > 1) {
                    contador--;
                    
                    if(contador == 1) {
                        $(this).addClass('desativado');
                    } else {
                        $(this).removeClass('desativado');
                    }
                    
                    if(contador < totalItens) {
                        bt_next.removeClass('desativado');
                    }
                }
                
                let clone = $('.item-galeria[data-nav="'+contador+'"]').clone();
                container_midia.css('opacity', 0);
                

                setTimeout(function() {
                    container_midia.html(clone);
                    container_midia.css('opacity', 1);
                }, 400)
            });
            
            
        });
        
        
    });

</script><p>O post <a rel="nofollow" href="https://expomus.com.br/en/projetos/encompassing-the-globe-portugal-and-the-worlds-of-the-16th-and-17th-centuries/">Encompassing the Globe: Portugal and the Worlds of the 16th and 17th Centuries</a> apareceu primeiro em <a rel="nofollow" href="https://expomus.com.br/en/">Expomus</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
