/* Default properties */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
	font-family: "kyrial-sans-pro",sans-serif;
	font-weight: 300;
}

/* Header */

header {
  position: absolute;
  width: 100%;
  z-index: 2000;
  background-color: var(--color-dark-blue);
}

header.sticky {
  position: fixed;
  top: 0;
}

/* Desktop Navigation */

header .container nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 12px 48px;
  transition: all .3s ease-in-out;
  z-index: 999;
}

@media (min-width: 768px) {
  header .container nav {
    justify-content: space-between;
    padding: 12px 48px;
  }
}

@media (min-width: 768px) {
  header.sticky .container nav {
    height: 60px;
  }
}

header .container nav .navbrand {
  display: block;
  width: 124px;
  min-width: 124px;
  height: 36px;
  min-height: 36px;
  background-image: url("../../assets/img/logo_navi_color.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 768px) {
  header.sticky .container nav .navbrand {
    width: 35px;
    height: 36px;
    background-image: url("../../assets/img/logo_navi_sticky.svg");
  }
}

header .container nav .navbrand h1 {
  position: absolute;
  left: -100%;
}

header .container nav .navigation {
  position: absolute;
  top: 26px;
  right: 30px;
  margin-right: 0;
  display: flex;
  align-items: flex-start;
}

@media (min-width: 768px) {
header .container nav .navigation {
  position: relative;
  top: initial;
  right: initial;
  margin-right: 80px;
}
}

/* Desktop Menu */

header .container nav .menu {
  display: none;
  list-style: none;
  gap: 34px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  padding-top: 12px;
}

@media (min-width: 768px) {
  header .container nav .menu {
    display: flex;
  }
}

header .container nav .menu li a {
  display: flex;
  justify-content: center;
  max-height: 40px;
  font-size: 1rem;
  color: var(--color-white);
  text-decoration: none;
  padding: 0;
  padding-bottom: 20px;
  transition: all .3s ease-in-out;
}

header .container nav .menu li a:hover {
/*   color: var(--color-blue); */
  color: var(--color-green);
}

.sub-menu-estrategia {
 position: relative;
}

.sub-menu-estrategia.active a {
/*  color: var(--color-blue) !important; */
 color: var(--color-green) !important;
}

.sub-menu-estrategia:after {
  position: absolute;
  top: 0;
  right: -16px;
  display: inline-block;
/*   content: url("../img/icon_arrow_down.svg"); */
  content: url("../img/icon_arrow_down_green.svg");
  width: 11px;
  height: 8px;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;	
}

.sub-menu-estrategia.active:after {
  top: 18px;
  transform: rotate(180deg);
}

.dropdown-toggle.nav-link:after {
  margin-top: 10px;
}

header .container nav .menu li ul {
  display: none;
}

header .container nav .menu li:hover ul {
  display: block;
  position: absolute;
  top: 40px;
  margin-left: -25px;
  background-color: var(--color-white);
  padding: 16px 18px 8px;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

header.sticky .container nav .menu li:hover ul {
  top: 40px;
}

header .container nav .menu li:hover a span:after {
  margin-top: 18px;
  transform: rotate(180deg);
}

header .container nav .menu li ul li {
  display: block;
  text-align: center;
}

header .container nav .menu li ul li a:after {
  display: none;
  content: '';
}

header .container nav .menu li ul li a {
  font-size: .9rem;
  height: 32px;
  padding: 0;
  font-weight: bold;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  transition: all .3s ease-out;
}

header .container nav .menu li ul li.locked a:before {
  display: inline-block;
  content: url('../img/icon_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

header .container nav .menu li ul li.unlocked a:before {
  display: inline-block;
  content: url('../img/icon_open_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

header .container nav .menu li ul .submenu a {
  font-size: .9rem;
  height: 32px;
  padding: 0;
  font-weight: 400;
  color: var(--color-blue);
  transition: all .3s ease-out;
}

header .container nav .menu li ul li a:hover {
  color: var(--color-blue);
}

/* Menu language */

.menu-lang {
	position: absolute;
	top: 0px;
	right: 0px;
	list-style: none;
	padding-left: 0;
	display: flex;
}

@media (min-width: 768px) {
	.menu-lang {
		top: 12px;
		right: -72px;
	}
}

/* Regra para pt-BR (Português do Brasil) */
:lang(pt-BR) {
	.menu-lang {
		flex-direction: column;
	}
	
	@media (min-width: 768px) {
		.menu-lang li:nth-child(2) {
			display: none;
		}
	}
		
	.menu-lang:hover li:nth-child(2) {
		display: block;
	}
}

/* Regra para en-US (Inglês dos Estados Unidos) */
:lang(en-US) {
	.menu-lang {
		flex-direction: column-reverse;
	}

	@media (min-width: 768px) {
		.menu-lang li:nth-child(1) {
			display: none;
		}		
	}

	.menu-lang:hover li:nth-child(1) {
		display: block;
	}
}	



@media (min-width: 768px) {
.menu-lang:after {
	position: absolute;
	top: 9px;
	left: 34px;
	display: block;
	width: 8px;
	height: 8px;
	content: '';
	background-image: url(../img/icon_arrow_down_white.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(0deg);
	transition: all .3s ease-in-out;
}	
}


.menu-lang li {
	width: 36px;
}

.menu-lang li a {
	display: block;
/* 	background-color: var(--color-blue); */
	background-color: var(--color-green);
	color: var(--color-white);
	text-decoration: none;
	text-align: center;
	width: 48px;
	height: 26px;
	line-height: 18px;
	padding: 2px 8px;
	border-radius: 0px;
	transition: all .3s ease-in-out;
}

@media (min-width: 768px) {
	.menu-lang li a {
		text-align: left;
	}
}

.menu-lang li a:hover {
	color: var(--color-dark-blue);
}

/* Modal Menu */

.modal-main-menu {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 200px;
  background-color: var(--color-dark-blue);
  border-top: 1px solid var(--color-light-blue);
  padding: 24px 48px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-main-menu {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100px;
    background-color: var(--color-dark-blue);
    border-top: 1px solid var(--color-light-blue);
    padding: 24px 48px 24px 24px;
  }
}

.modal-main-menu.active {
  display: block;
}

.modal-main-menu .container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
}

@media (min-width: 768px) {
  .modal-main-menu .container .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 72px;
  }
}

.modal-main-menu .container .content ul {
  list-style: none;
  padding-left: 0;
}

.modal-main-menu .container .content ul li {
  /*font-size: 1.1rem;*/
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-white);
/*   padding: 6px 0; */
}

.modal-main-menu .container .content ul li:first-child {
  padding-top: 0;
}

.modal-main-menu .container .content ul li a {
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white);
  transition: all .3s ease-in-out;
}

.modal-main-menu .container .content ul li a:hover {
/*   color: var(--color-blue); */
  color: var(--color-green);
}

.modal-main-menu .container .content ul .subitem a {
	font-weight: 400;
/*   color: var(--color-blue); */
  color: var(--color-green);
}

.modal-main-menu .container .content ul .subitem a:hover {
	font-weight: 400;
  color: var(--color-blue);
}

.modal-main-menu .btn-close-main-menu {
  position: absolute;
  top: 24px;
  right: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_close_contact_modal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  outline: none;
  box-shadow: none;
}

.modal-main-menu li.locked:before {
  display: inline-block;
  content: url('../img/icon_locker.svg');
  width: 8px;
  height: 8px;
  margin-right: 6px;
}

.modal-main-menu li.unlocked:before {
  display: inline-block;
  content: url('../img/icon_open_locker.svg');
  width: 8px;
  height: 8px;
  margin-right: 6px;
}


/* 
header .container nav .menu .menu-language a span:after {
  color: var(--color-dark-blue);
  background-color: red;
}

header .container nav .menu .menu-language a:hover span {
  color: var(--color-dark-blue);
}

header .container nav .menu .menu-language:hover ul {
  background-color: transparent;
  padding: 0;
  margin-left: 0;
  top: 28px;
  box-shadow: none;
  border: 0;
}

header.sticky .container nav .menu .menu-language:hover ul {
  top: 28px;
}

header .container nav .menu .menu-language ul li a span {
  width: 30px;
  font-weight: initial;
  color: var(--color-white);
  transition: all .3s ease-in-out;
}

header .container nav .menu .menu-language ul li a:hover {
  color: var(--color-dark-blue);
} */





/* Mobile menu */

header .container nav .btn-menu-mobile {
  position: absolute;
  left: 16px;
  display: block;
  width: 31px;
  height: 22px;
  background-image: url("../../assets/img/icon_mobile_menu.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  header .container nav .btn-menu-mobile {
    display: none;
  }
}

.modal-menu-mobile {
  position: fixed;
  display: none;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--color-white);
  padding: 32px;
  z-index: 1999;
}

.modal-menu-mobile.active {
  display: block;
}

.modal-menu-mobile.active nav {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-menu-mobile.active nav .btn-close-menu {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/icon_close_mobile_menu.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
  border: none;
}

.modal-menu-mobile.active nav .menu {
  list-style: none;
  padding-left: 0;
}

.modal-menu-mobile.active nav .menu li {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  text-align: center;
  padding: 10px;
  margin-bottom: 8px;
  transition: all .3s ease-in-out;
}

.modal-menu-mobile.active nav .menu li:hover {
  color: var(--color-blue);
}

.modal-menu-mobile.active nav .menu li ul {
  position: relative;
  display: block;
  padding: 4px;
  border: none;
  padding-bottom: 32px;
}

.modal-menu-mobile.active nav .menu li ul li {
  padding: 0;
  margin-bottom: 0;
}

.modal-menu-mobile.active nav .menu li ul li a {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 6px;
  color: var(--color-dark-blue);
  transition: all .3s ease-in-out;
}

.modal-menu-mobile.active nav .menu li ul li.locked a:before {
  display: inline-block;
  content: url('../img/icon_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

.modal-menu-mobile.active nav .menu li ul li.unlocked a:before {
  display: inline-block;
  content: url('../img/icon_open_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

.modal-menu-mobile.active nav .menu li ul li a:hover {
  color: var(--color-blue);
  background-color: transparent;
}

.modal-menu-mobile.active nav .menu .menu-language {
  display: none;
}

.modal-menu-mobile.active nav .menu li ul .submenu {
  margin-top: -18px;
}

.modal-menu-mobile.active nav .menu li ul .submenu a span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-blue);
  transition: all .3s ease-in-out;
}

.modal-menu-mobile.active nav .dropdown-toggle.nav-link:after {
  display: none !important;
}

/* Topo */

#topo {
  width: 100%;
  height: auto;
  background-color: var(--color-dark-blue);
  background-image: url("../../assets/img/topo_mobile_img_background.webp");
  background-size: cover;
  background-position: top;
  overflow: hidden;
}

@media (min-width: 768px) {
  #topo {
    width: 100%;
    height: auto;
    background-color: initial;
    background-image: initial;
    background-size: cover;
    background-position: top;
    overflow: hidden;
  }
}

#topo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: -1;
}


#topo.interna {
  background-image: url("../../assets/img/topo_mobile_img_interna_background.webp");
  background-position: right;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  #topo.interna {
    background-image: url("../../assets/img/topo_img_interna_background.webp");
    background-position: center;
  }
}

#topo.interna {
  background-image: url("../../assets/img/topo_img_interna_background.webp");
  overflow-x: hidden;
}

/* topo pagina acoes */
#topo.interna-acoes {
  background-image: url("../../assets/img/fundo_acoes.webp");
  overflow-x: hidden;
  background-position: 50% 50%;
}
@media (min-width: 768px) {
  #topo.interna-acoes {
    background-image: url("../../assets/img/fundo_acoes.webp");
    background-position: center;
  }
}

/* topo pagina infra */
#topo.interna-infra {
  background-image: url("../../assets/img/fundo_infra_02.webp");
  background-position: right;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  #topo.interna-infra {
    background-image: url("../../assets/img/fundo_infra_02.webp");
    background-position: center;
  }
}


#gradient {
  width: 100%;
  height: auto;
  background-color: rgba(11, 18, 41, 0.95);
  background: linear-gradient(0deg, rgba(11, 18, 41, 0.8) 50%, rgba(11, 18, 41, 1) 100%);
  z-index: 2;
}

#topo-up {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 90px 16px 200px;
  overflow-x: hidden;
  pointer-events: none;
}

@media (max-width: 380px){
.short {
	min-height: 80vh !important;
	padding-bottom: 110px !important;
}	
}

@media (min-width: 768px) {
  #topo-up {
    padding: 90px 48px 220px;
  }
}

#topo-up.documentos {
  min-height: 480px;
  padding: 0;
}

#topo-up .box-top-interna {
  position: relative;
  width: 100%;
  height: auto;
  padding: 90px 0 16px;
}

#topo-up h2 {
  max-width: 100%;
  font-size: 1.4rem;
/*   font-weight: 100; */
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #topo-up h2 {
    max-width: 60%;
    font-size: 2.4rem;
  }
}

:lang(en-US) #topo-up h2 {
  max-width: 90%;
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
	transform: scale(0.8);
}

@media (min-width: 768px) {
  :lang(en-US) #topo-up h2 {
    max-width: 60%;
    font-size: 2.4rem;
  }
}

#topo-up .small-width {
	max-width: 90%;
}

@media (min-width: 768px) {
#topo-up .small-width {
	max-width: 40%;
}	
}

#topo-up h3 {
  font-size: 1.1rem;
/*   font-weight: 100; */
  text-align: center;
  text-transform: uppercase;
  padding:0;
	margin:0;
  padding-bottom: 16px;
  transform: scale(0.8);
}

@media (min-width: 768px) {
  #topo-up h3 {
    font-size: 1.7rem;
  }
}

#topo-up h4 {
  font-size: 1.1rem;
  line-height: 1.6rem;
  padding-bottom: 16px;
  text-align: center;
}

#topo-up p {
  font-size: .9rem;
	font-weight: 100;
  line-height: 1.5rem;
  padding-bottom: 16px;
  text-align: center;
  max-width: 100%;
}

#topo-up p strong {
	font-weight: 600;
}

@media (min-width: 768px) {
  #topo-up p {
    font-size: 1.3rem;
    line-height: 1.6rem;
    max-width: 60%;
  }
}

#topo-up .img-topo-interna {
  display: block;
  width: 100%;
  height: 180px;
  background-image: url("../../assets/img/img_navi_top_mobile.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  margin: 48px 0 24px;
}

#topo-up .icon-top {
  display: block;
  width: 100px;
  height: auto;
  padding: 32px 0;
  margin: 0 auto;
}

#topo-up .image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  overflow-x: hidden;
}

#topo-up .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

#topo-up .animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36.5vh;
}

#topo-up .animation-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  min-inline-size: max-content;
  /* Para garantir que não exceda a largura do dispositivo */
  overflow: hidden;
  /* Para esconder qualquer parte da animação que possa extrapolar */
  /* Cor de fundo opcional */
  /* margin-left: -20px; */
}

.animation-container svg {
  /* height: 750px !important; */
}

/* #topo-up .animation svg g {
  width: auto;
  height: 300px !important;
} */

#topo-up .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  #topo-up .image img {
    width: 100%;
  }
}

#topo-up .img-top {
  display: block;
  position: absolute;
  width: 290px;
  height: 220px;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  #topo-up .img-top {
    width: 410px;
    height: 305px;
  }
}

#topo-up .img-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

#topo-up .img-top.down {
  bottom: 20px;
  left: 20px;
}

#topo-up .img-top.left {
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
}

#topo-up .img-top.left.plus {
  left: 0;
  transform: translate(-50%, -50%);
}

#topo-up .img-top.right {
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
}

#topo-up .img-top.right.plus {
  right: 0;
  transform: translate(50%, -50%);
}

#topo-down {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  /*min-height: 600px;*/
  padding: 70px 16px 52px;
}

@media (min-width: 768px) {
  #topo-down {
    padding: 90px 48px;
  }
}

#topo-down.interna {
  justify-content: flex-start;
  padding: 10px 16px 90px;
  margin-top: -180px;
}

@media (min-width: 768px) {
  #topo-down.interna {
    justify-content: flex-start;
    padding: 10px 48px 90px;
    margin-top: -290px;
  }
}

/* #topo-down h2 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  #topo-down h2 {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
} */

#topo-down h2 {
  font-size: 1.1rem;
  font-weight: 100;
  color: var(--color-white);
  text-align: center;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  #topo-down h2 {
    width: 50%;
    font-size: 1.7rem;
  }
}

#topo-down h3 {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 100;
  color: var(--color-blue);
  text-align: center;
  padding-bottom: 24px;
}

.uppercase {
  text-transform: uppercase;
}


@media (min-width: 768px) {
  #topo-down h3 {
    width: 60%;
    font-size: 1.7rem;
  }
}

/* #topo-down h4 {
  width: 100%;
  font-size: .9rem;
  line-height: 1.4rem;
  font-weight: 300;
  color: var(--color-white);
  text-align: center;
  padding-bottom: 52px;
}

@media (min-width: 768px) {
  #topo-down h4 {
    width: 50%;
    font-size: 1.1rem;
    line-height: 1.7rem;
  }
} */

#topo-down h4 {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 100;
  color: var(--color-white);
  text-align: center;
  padding-bottom: 52px;
}

@media (min-width: 768px) {
  #topo-down h4 {
    width: 50%;
    font-size: 1.7rem;
  }
}

#topo-down .row {
  width: 100%;
  margin: 0;
  padding: 0;
}

#topo-down .container {
  padding: 0;
}

/* Estrategias */

#estrategias {
  background-color: var(--color-white);
}

.row-estrategia {
  margin-top: 10px;
  margin-bottom: 24px;
}

#estrategias .title {
	color: var(--color-dark-blue) !important;
}

@media (min-width: 768px) {
  .row-estrategia {
    margin-top: 96px;
    margin-bottom: 48px;
  }
}

/* Footer */

footer {
  width: 100%;
  height: auto;
  background-color: var(--color-dark-blue);
  padding: 48px 16px 24px;
}

@media (min-width: 768px) {
  footer {
    padding: 72px 48px 24px;
  }
}

footer .logo {
  width: 100px;
  padding-bottom: 48px;
}

footer .text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-white);
}

footer .redes-sociais {
  margin-top: 12px;
}

footer .redes-sociais a {
  text-decoration: none;
  border: none;
  box-shadow: none;
}

footer .redes-sociais a i {
  font-size: 28px;
  color: var(--color-blue);
  margin-right: 18px;
  transition: all .3s ease-in-out;
}

footer .redes-sociais a:last-child i {
  margin-right: 0;
}

footer .redes-sociais a:hover i {
  color: var(--color-light-blue);
}

footer .txt-footer {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 6px 0;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

footer .menu-footer {
  list-style: none;
  padding-left: 0;
}

footer .menu-footer li {
  padding: 6px;
  padding-left: 0;
}

footer .menu-footer li a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

footer .menu-footer li.sub-itens a {
  font-size: .8rem;
  font-weight: 100;
}

footer .menu-footer li.sub-itens.cotas a {
  color: var(--color-green);
  margin-top: -12px;
}
footer .menu-footer li.sub-itens.cotas a:hover {
  color: var(--color-blue);
}

footer .menu-footer li a:hover {
  color: var(--color-blue);
}

footer .menu-footer li a:focus {
  color: var(--color-white);
}

footer .menu-footer li ul {
  list-style: none;
  padding-left: 0;
}

footer .menu-footer li ul li {
  padding: 5px 0;
}

footer .menu-footer li ul li:first-child {
  padding-top: 12px;
}

footer .menu-footer li ul li a {
  font-size: .9rem;
  line-height: .9rem;
  font-weight: 400;
}

footer .selo-anbima img {
  width: auto;
  max-width: 110px;
  height: 60px;
}

@media (min-width: 1200px) {
  footer .selo-anbima img {
    width: auto;
    max-width: 110px;
    height: 80px;
  }
}

footer .selo-emissao img {
  width: auto;
  max-width: 110px;
  height: 60px;
}

@media (min-width: 1200px) {
  footer .selo-emissao img {
    width: auto;
    max-width: 110px;
    height: 80px;
  }
}

footer .selo-pri img {
  width: auto;
  max-width: 110px;
  height: 30px;
}

footer .disclaimer {
  font-size: .7rem;
  line-height: 1.2rem;
  color: var(--color-white);
}

footer .row-copyright {
  border-top: 1px solid var(--color-blue);
}

footer .row-copyright .col {
  margin-top: 16px;
}

footer .copyright {
  font-size: .75rem;
  text-align: left;
  color: var(--color-white);
}

footer .logo-unobvious {
  border: none;
  box-shadow: none;
}

footer .logo-unobvious img {
  width: auto;
  height: 12px;
}

/* Cotas */

#cotas {
  background-color: var(--color-light-gray);
}

#vejatambem .row-estrategia {
  margin-top: 0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  #vejatambem .row-estrategia {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}


.animacao-navi {
	width: 100%;
	height: 190vh;
	padding: 0 !important;
}

.animacao-navi.eng {
	width: 100%;
	height: 240vh;
}
/* @media (max-width: 576px) {
.animacao-navi {
	width: 100%;
	height: 190vh;
}
} */

@media (min-height: 1000px) {
.animacao-navi {
	width: 100%;
	height: 180vh;
}
	
.animacao-navi.eng {
	width: 100%;
	height: 180vh;
}
}

@media (max-width: 576px) {
  .context {
   width: 90vw;
   height: auto;
   aspect-ratio: 530 / 340;
   padding: 0 !important;
   margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .context.eng {
   width: 90vw;
   height: auto;
   aspect-ratio: 530 / 345;
   padding: 0 !important;
   margin: 0 auto;
  }
}


@media (min-width: 577px) and (max-width: 1199px) {
  .context {
   width: 60vw;
   height: auto;
   aspect-ratio: 530 / 340;
   padding: 0 !important;
   margin: 0 auto;
  }
}

@media (min-width: 577px) and (max-width: 1199px) {
  .context.eng {
   width: 60vw;
   height: auto;
   aspect-ratio: 530 / 345;
   padding: 0 !important;
   margin: 0 auto;
  }
}

@media (min-width: 1200px) and (max-width: 1399px){
  .context {
   width: 40vw;
   height: auto;
   aspect-ratio: 530 / 340;
   padding: 0 !important;
   margin: 0 auto;
  }
}

@media (min-width: 1200px) and (max-width: 1399px){
  .context.eng {
   width: 40vw;
   height: auto;
   aspect-ratio: 530 / 345;
   padding: 0 !important;
   margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .context {
   width: 30vw;
   height: auto;
   aspect-ratio: 530 / 340;
   padding: 0 !important;
   margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .context.eng {
   width: 30vw;
   height: auto;
   aspect-ratio: 530 / 345;
   padding: 0 !important;
   margin: 0 auto;
  }
}

.info {
  width: 100%;
  height: 100%;
}

/* POPUP *******************/
/* Conteudo */
.pum-content {
	display: flex;
    flex-direction: column;
    align-items: center;
}

/* Botoes */
.botao-brasileiros {
	background-color: #eaeef4 !important;
    color: #0070d9 !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #0070d9 !important;
    border-radius: 10px 10px 10px 10px !important;
    padding: 14px 26px 14px 26px !important;
	margin-bottom: 40px !important;
	transition: .3s !important;
}

.botao-brasileiros:hover {
	background-color: #0070d9 !important;
    color: #FFFFFF !important;
}

.botao-estrangeiros {
	display: block;
	background-color: #eaeef4 !important;
    color: #0070d9 !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #0070d9 !important;
    border-radius: 10px 10px 10px 10px !important;
    padding: 14px 26px 14px 26px !important;
	transition: .3s !important;
	text-decoration: none !important;
}
.botao-estrangeiros:hover {
	background-color: #0070d9 !important;
    color: #FFFFFF !important;
}

/* Remove link Real Estate 
.desativado {
    pointer-events: none !important;
    text-decoration: none !important;
    cursor: default !important;
}
*/

/* Botoes de Real Estate */
.botao-categoria-realestate {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
	margin-bottom: 100px;
}
.botao-categoria-realestate a {
	display: inline-block;
    font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-white);
	width: 260px;
	text-align: center;
    background-color: transparent;
    border: 1px solid var(--color-blue);
    border-radius: 12px;
    padding: 20px 26px;
	text-decoration: none;
    transition: all .15s ease-in;
}
.botao-categoria-realestate a:hover {
    background-color: var(--color-blue);
}

.botao-categoria-realestate a p {
    font-size: 1.1rem;
    font-weight: 300;
	margin-top: 20px;
	margin-bottom: .4em !important;
}

@media (max-width: 767px) {
	.botao-categoria-realestate {
		flex-wrap: wrap;
		gap: 30px;
	}
	
	.botao-categoria-realestate a {
		width: 100%;
	}
}

/*  Ajusta espacamento entre os fundos mas não aplica ao ultimo carregado */
.funds:not(:last-child) {
	margin-bottom: 70px;
}