/* Section */

.section {
  width: 100%;
  height: auto;
  /*min-height: 600px;*/
  padding: 52px 16px;
}

@media (min-width: 768px) {
  .section {
    width: 100%;
    height: auto;
    padding: 72px 48px;
  }
}

.section .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  .section .title {
    font-size: 2rem;
  }
}

.section .subtitle {
  font-size: .9rem;
  text-align: center;
  color: var(--color-gray);
}

@media (min-width: 768px) {
  .section .subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--color-gray);
  }
}

.section .title-funds {
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-blue);
  margin: 0 auto;
  padding: 6px 20px;
  border-radius: 24px;
}

/* Card Big-Number */

.card-big-number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: 160px;
  border: 1px solid var(--color-light-blue);
  margin: 8px 0;
  padding: 16px 24px;
  border-radius: 6px;
}

.card-big-number .label {
  font-size: .9rem;
  color: var(--color-white);
  text-transform: uppercase;
}

.card-big-number .big-number {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
}

.card-big-number .big-number .prefix {
  font-size: 3rem;
  line-height: 3rem;
  color: var(--color-white);
  margin-right: 8px;
}

.card-big-number .big-number .prefix2 {
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-white);
  margin-right: 8px;
}

.card-big-number .big-number .number {
  font-size: 4.5rem;
  line-height: 4.5rem;
  font-weight: 300;
  color: var(--color-blue);
}
.card-big-number .big-number .number2 {
  font-size: 3rem;
  line-height: 3.3rem;
  font-weight: 300;
  color: var(--color-blue);
}

.card-big-number .big-number .sufix {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-left: 6px;
}
.card-big-number .big-number .sufix2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-left: 6px;
}

/* Card Estratégias */

.card-estrategias {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .row-estrategia .col-12 {
/*     border-right: 1px solid var(--color-gray); */
  }
}

/* .row-estrategia .col-12:last-child {
  border-right: none;
}
 */
.card-estrategias .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  margin-bottom: 16px;
}

.card-estrategias .image img {
  width: 100%;
  height: auto;
  max-height: 120px;
}

.card-estrategias h4 {
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  padding-bottom: 8px;
  transition: all .3s ease-in-out;
}

@media (min-width: 768px) {
  .card-estrategias h4 {
    font-size: 2rem;
  }
}

.card-estrategias:hover h4 {
  color: var(--color-dark-blue);
}

.card-estrategias .saiba-mais {
  display: flex;
  align-items: center;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-blue);
  transition: all .3s ease-in-out;
}

@media (min-width: 768px) {
  .card-estrategias .saiba-mais {
    font-size: 1rem;
  }
}

.card-estrategias .saiba-mais:after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  content: url("../../assets/img/icon_saibamais.svg");
}

.card-estrategias:hover .saiba-mais {
  color: var(--color-blue);
}

/* Card Sócios */

.card-socios {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  z-index: 7;
}

.card-socios .nome {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 4px;
}

.card-socios .cargo {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-blue);
  text-align: center;
  padding-bottom: 24px;
}

.card-socios .line {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-dark-blue);
}

.card-socios.active .line {
  display: none;
}

.card-socios .btn-cv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-blue);
  background-image: url("../../assets/img/icon_arrow_down_cv.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 3px;
  outline: 4px solid var(--color-white);
  margin-top: -16px;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}

.card-socios .btn-cv:focus {
  outline: 4px solid var(--color-white);
}

.card-socios.active {
  z-index: 10;
}

.card-socios.active .btn-cv {
  outline: none;
  transform: rotate(180deg);
  z-index: 11;
}

.card-socios .cv {
  display: none;
}

.card-socios.active .cv {
  position: absolute;
  top: 100%;
  margin-top: -17px;
  display: block;
  width: 100%;
  height: auto;
  /* min-height: 200px; */
  background-color: var(--color-dark-blue);
  border-radius: 12px;
  border: 1px solid var(--color-white);
  padding: 24px 8px 12px 8px;
  color: var(--color-white);
  font-size: .9rem;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown Navi */

.drop-down-navi {
  width: 100%;
  height: auto;
  max-height: 54px;
  background-color: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 12px;
  padding: 8px 14px 36px;
  overflow-y: hidden;
  margin-bottom: 16px;
  /*cursor: pointer;*/
  transition: all .15s ease-in;
}

@media (min-width: 768px) {
.drop-down-navi {
  max-height: 64px;
  padding: 14px 24px 36px;
}	
}

.drop-down-navi.active {
  max-height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}

.drop-down-navi:hover {
  background-color: var(--color-blue);
}

.drop-down-navi.active:hover {
  cursor: initial;
  background-color: var(--color-white);
}

.drop-down-navi .topo {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.drop-down-navi .title {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
}

@media(min-width: 768px) {
  .drop-down-navi .title {
    font-size: 1.6rem;
	line-height: 1.6rem;
    font-weight: 600;
    color: var(--color-white);
  }
}

.drop-down-navi .locked:before {
  display: inline-block;
  content: url('../img/icon_locker.svg');
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

.drop-down-navi .unlocked:before {
  display: inline-block;
  content: url('../img/icon_open_locker.svg');
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

.drop-down-navi.active .title {
  font-size: 1.1rem;
  color: var(--color-blue);
}

@media(min-width: 768px) {
  .drop-down-navi.active .title {
    font-size: 1.6rem;
    color: var(--color-blue);
  }
}

.drop-down-navi.active .locked:before {
  display: inline-block;
  content: url('../img/icon_locker_blue.svg');
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .drop-down-navi.active .locked:before {
    width: 14px;
    height: 14px;
  }
}

.drop-down-navi.active .unlocked:before {
  display: inline-block;
  content: url('../img/icon_open_locker_blue.svg');
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .drop-down-navi.active .unlocked:before {
    width: 14px;
    height: 14px;
  }
}

.drop-down-navi .btn-drop-down {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-image: url("../../assets/img/icon_arrow_down_cv.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: 1px solid var(--color-white);
  margin-left: 8px;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}

.drop-down-navi.active .btn-drop-down {
  background-color: var(--color-blue);
  background-image: url("../../assets/img/icon_arrow_down_cv.svg");
  border: 1px solid var(--color-white);
  transform: rotate(180deg);
}

.drop-down-navi:hover .btn-drop-down {
  background-color: var(--color-white);
  background-image: url("../../assets/img/icon_arrow_down_cv_blue.svg");
}

.drop-down-navi.active:hover .btn-drop-down {
  background-color: var(--color-blue);
  background-image: url("../../assets/img/icon_arrow_down_cv.svg");
}

.drop-down-navi .content {
  padding-top: 16px;
}

.drop-down-navi .content p,
.drop-down-navi .content ul li {
  font-size: .9rem;
  color: var(--color-gray);
}

.drop-down-navi .image-estrategy {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.drop-down-navi .image-estrategy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop-down-navi .fund-name {
  width: 100%;
  height: auto;
  display: block;
  /* display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; */
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  text-align: left;
  border-bottom: 1px solid var(--color-dark-blue);
  /* padding: 6px 32px; */
  /* border-radius: 0;
  border: 2px solid var(--color-dark-blue); */
}

@media (min-width: 768px) {
  .drop-down-navi .fund-name {
    font-size: 1.3rem;
  }
}

.drop-down-navi .fund-name.locked:before {
  display: inline-block;
  content: url('../img/icon_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .drop-down-navi .fund-name.locked:before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
}

.drop-down-navi .fund-name.unlocked:before {
  display: inline-block;
  content: url('../img/icon_open_locker_dark_blue.svg');
  width: 8px;
  height: 8px;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .drop-down-navi .fund-name.unlocked:before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
}

.drop-down-navi .subtitle {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-gray);
}

.drop-down-navi .mapa-brasil {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
}

.link-premio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 48px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .link-premio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 60px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding-right: 16px;
  }
}

.link-premio img {
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: contain;
}

.coment-premio {
	display: block;
	width: 100%;
}

.coment-premio p {
	font-size: .7rem !important;
	font-style: italic;
}

.btn-drop-downloads {
  display: inline-block;
  width: 16px;
  height: 16px;
  padding: 0;
  margin-left: 2px;
  margin-top: -3px;
  border: none;
  border-radius: 4px;
  background-color: var(--color-blue);
  background-image: url("../../assets/img/icon_drop_download.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  /*transition: all .3s ease-in-out;*/
}

.btn-drop-downloads:hover {
  background-color: var(--color-dark-blue);
}

.btn-drop-downloads.active {
  background-image: url("../../assets/img/icon_drop_download_minus.svg");
}

.drop-down-downloads {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  max-height: 0;
  overflow-y: hidden;
}

.drop-down-downloads.active {
  max-height: 100%;
}

.drop-down-downloads .select-ano {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-white);
  min-width: 100px;
  padding: 4px 6px;
  border-radius: 6px;
  border-color: var(--color-dark-blue);
  background-color: var(--color-dark-blue);
}

.drop-down-downloads .select-ano:focus {
  border-color: var(--color-dark-blue);
}

.btn-download-documentos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-width: 100%;
  max-width: 100%;
  min-height: 42px;
  font-size: .8rem;
  line-height: 1rem;
  text-align: left;
  border: 1px solid var(--color-dark-blue);
  border-radius: 6px;
  padding: 6px 12px;
  transition: all .3s ease-in-out;
}

@media (min-width: 768px) {
  .btn-download-documentos {
    min-width: 300px;
    max-width: 300px;
  }
}

.btn-download-documentos:hover {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
}

.btn-download-documentos img {
  display: block;
  width: 24px;
  height: 19px;
  margin-left: 8px;
}

.listaBotoes .btn-download-documentos {
	width: 100%;
	max-width: 100%;
	min-width: initial;
}

.listaBotoes .hidden {
	display: none;
}

.data-base {
  display: block;
  text-align: center;
  margin-top: -16px;
}

/* Dropdown Políticas */

.btn-drop-down-politicas {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gray);
  padding: 4px 0;
  margin-bottom: 12px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-blue);
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.btn-drop-down-politicas img {
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}

.btn-drop-down-politicas.active img {
  transform: rotate(180deg);
}

.btn-drop-down-politicas:hover {
  border-bottom: 1px solid var(--color-blue);
}

.drop-down-politicas {
  width: 100%;
  height: auto;
  max-height: 0;
  overflow-y: hidden;
  transition: all .3s ease-in-out;
}

.drop-down-politicas.active {
  max-height: 100%;
}

.link-drop-down-politica {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  text-align: left;
  color: var(--color-dark-blue);
  text-decoration: none;
  background-color: var(--color-table-blue);
  padding: 6px 12px;
  margin: 7px 0;
  transition: all .3s ease-in-out;
}

.link-drop-down-politica:hover {
  background-color: var(--color-light-blue);
}

.link-drop-down-politica img {
  width: 24px;
  height: auto;
}

/* Timeline */
.timeline {
  position: relative;
  width: 100%;
  height: 480px;
  z-index: 999;
}

.timeline .line {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-light-blue);
}

.timeline .btn-left {
  position: absolute;
  top: 50%;
  left: -1px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../../assets/img/icon_arrow_left.svg");
  background-size: contain;
  border-radius: 0;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.timeline .btn-left:hover {
  background-image: url("../../assets/img/icon_arrow_left_hover.svg");
}

.timeline .btn-right {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../../assets/img/icon_arrow_right.svg");
  background-size: contain;
  border-radius: 0;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.timeline .btn-right:hover {
  background-image: url("../../assets/img/icon_arrow_right_hover.svg");
}

.timeline .dots {
  position: relative;
  display: flex;
  flex-direction: row;
  /*justify-content: space-around;*/
  align-items: center;
  /*gap: 48px;*/
  flex-wrap: nowrap;
  top: 50%;
  left: 50%;
  width: calc(100% - 120px);
  height: 100%;
  transform: translate(-50%, -50%);
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .timeline .dots {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /*gap: 48px;*/
    flex-wrap: nowrap;
    top: 50%;
    left: 50%;
    width: calc(100% - 120px);
    height: 100%;
    transform: translate(-50%, -50%);
    /* overflow-x: auto; */
  }
}

.timeline .dots .dot {
  position: relative;
  margin-right: 48px;
  /*padding-left: 48px;*/
  /*width: 30px;*/
  transition: width 0.5s ease-in-out;
}

.timeline .dots .dot.active {
  width: 100%;
  min-width: 100%;
}

@media (min-width: 768px) {
  .timeline .dots .dot.active {
    width: 300px;
    min-width: 200px;
  }
}

.timeline .dots .dot.active:last-child {
  margin-right: 100px;
}

.timeline .dots .dot .circle,
.timeline .dots .dot:focus .circle {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  background-color: var(--color-blue);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: background-color .3s ease-in-out;
  cursor: pointer;
}

.timeline .dots .dot.active .circle {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline .dots .dot.active .circle {
    margin: initial;
  }
}

.timeline .dots .dot.active .circle {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  border: none;
  background-color: var(--color-white);
}

.timeline .dots .dot:hover .circle {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  border: none;
  background-color: var(--color-white);
}

.timeline .dots .dot .box {
  position: absolute;
  display: block;
  top: -210px;
  width: 0;
  height: 200px;
  background-color: var(--color-white);
  padding: 24px 12px 24px 24px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.timeline .dots .dot.active .box {
  display: block;
  opacity: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .timeline .dots .dot.active .box {
    display: block;
    opacity: 1;
    width: 300px;
  }
}

.timeline .dots .dot .box.top {
  top: -220px;
  left: 0;
}

.timeline .dots .dot .box.bottom {
  top: 40px;
  left: 0;
}

.timeline .dots .dot .box .content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 12px;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.timeline .dots .dot.active .box .content {
  opacity: 1;
}

.timeline .dots .dot .box .year {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
}

.timeline .dots .dot .box .title {
  display: block;
  font-size: .9rem;
  padding-bottom: 4px;
  font-weight: 600;
  color: var(--color-gray);
}

.timeline .dots .dot .box p {
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-gray);
}

/* Btns Real Estate */

.btns-real-estate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  justify-items: stretch;
}

.btn-real-estate {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-blue);
  padding: 8px 16px;
}

/* Modal contact */

.modal-contact {
  position: fixed;
  right: -100%;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background-color: var(--color-blue);
  padding: 48px 16px 32px 32px;
  z-index: 2100;
  opacity: 0;
  /*transform: translateX(100%);*/
  transition: all .6s ease-in-out;
}

.modal-contact.active {
  right: 0;
  opacity: 1;
  /*transform: translateX(0);*/
}

.modal-contact .btn-close-modal-contact {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  background-image: url("../../assets/img/icon_close_contact_modal.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.modal-contact .conteudo {
  overflow-y: auto;
  padding-right: 16px;
}

.modal-contact h2 {
  font-size: 2rem;
  color: var(--color-dark-blue);
}

.modal-contact .links {
  font-size: .9rem;
  font-weight: 100;
  color: var(--color-white);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.modal-contact .links i {
  color: var(--color-dark-blue);
  margin-right: 8px;
}

.modal-contact .links:hover {
  color: var(--color-dark-blue);
}

.modal-contact .drop-down-contact {
  width: 100%;
  height: auto;
}

.modal-contact .drop-down-contact:not(:first-child) {
  margin-top: 24px;
}

.modal-contact .drop-down-contact .topo {
  display: block;
  width: 100%;
  cursor: pointer;
}

.modal-contact .drop-down-contact .topo .label {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transition: color .3s ease-in-out;
}

.modal-contact .drop-down-contact .topo .label:after {
  display: block;
  content: url("../../assets/img/icon_arrow_down_white.svg");
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}

.modal-contact .drop-down-contact.active .topo .label:after {
  transform: rotate(180deg);
}

.modal-contact .drop-down-contact .topo:hover .label {
  color: var(--color-dark-blue);
}

.modal-contact .drop-down-contact .content {
  width: 100%;
  height: auto;
  max-height: 0;
  overflow-y: hidden;
}

.modal-contact .drop-down-contact.active .content {
  max-height: 100%;
}

.modal-contact .drop-down-contact .content .map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-top: 8px;
  margin-bottom: 12px;
  border-radius: 12px;
}

.modal-contact .drop-down-contact .content .map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-contact .drop-down-contact .content .address {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  white-space: pre-wrap;
}

.modal-contact .contact-cv,
.modal-contact .contact-cv a {
  font-size: .9rem;
  font-weight: 100;
  color: var(--color-white);
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.modal-contact .contact-cv a {
  text-decoration: underline;
}

.modal-contact .contact-cv a:hover {
  color: var(--color-dark-blue);
}

/* Timeline */

.timeline {}

.box-timeline {
  position: relative;
  display: block;
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 250px;
}

.box-timeline .line {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-shrink: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  /* background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 1) 92%, rgba(255, 255, 255, 0) 100%); */
}

.box-timeline .dates {
  position: absolute;
  left: 14px;
  /* top: calc(50% - 100px); */
  width: calc(100% - 32px);
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  box-timeline .dates {
    position: absolute;
    /* top: calc(50% - 100px); */
    width: 100%;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

.box-timeline .dates::-webkit-scrollbar {
  display: none;
}

.box-timeline .dates {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.box-timeline .dates .date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0 12px;
  transform: translateY(-14px);
  cursor: pointer;
  margin-top: -97px;
}

@media (min-width: 768px) {
  .box-timeline .dates .date {
    padding: 0 24px;
  }
}

.box-timeline .dates .date:first-child {
  padding-left: 200px;
}

.box-timeline .dates .date.active:first-child {
  padding-left: 25px;
}

@media (min-width: 768px) {
  .box-timeline .dates .date.active:first-child {
    padding-left: 200px;
  }
}

.box-timeline .dates .date:last-child {
  margin-right: 230px;
}

@media (min-width: 768px) {
  .box-timeline .dates .date:last-child {
    margin-right: 200px;
  }
}

.box-timeline .dates .date.active {
  flex-direction: column-reverse;
  transform: translateY(38px);
  width: 500px;
  padding: 0;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 76px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .box-timeline .dates .date.active {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.box-timeline .dates .date:last-child {
  margin-right: 320px;
  padding-right: 60px;
}

.box-timeline .dates .date.active:last-child {
  padding-left: 80px;
  padding-right: 150px;
}

@media (min-width: 768px) {
  .box-timeline .dates .date.active:last-child {
    padding-left: 80px;
    padding-right: 200px;
  }
}

.box-timeline .dates .date.active .resume {
  display: block;
  width: 100%;
  height: auto;
  min-width: 250px;
  min-height: 200px;
  overflow: hidden;
}

.box-timeline .dates .date.active .resume p {
  background-color: var(--color-white);
  padding: 16px 24px;
  margin-top: 8px;
  border-radius: 16px;
}

.box-timeline .dates .date .resume {
  display: none;
  font-size: .9rem;
  color: var(--color-dark-blue);
  text-align: center;
}

.box-timeline .dates .date .year {
  font-size: 1.2rem;
  color: var(--color-white);
  transition: color .5s ease-out;
}

.box-timeline .dates .date:hover .year {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .box-timeline .dates .date:hover .year {
    color: var(--color-blue);
  }
}

.box-timeline .dates .date.active .year {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-blue);
}

.box-timeline .dates .date .circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-light-blue);
  margin: 4px;
  margin-top: 4px;
  transition: all .3s ease-in-out;
}

.box-timeline .dates .date:focus .circle {
  width: 8px;
  height: 8px;
}

.box-timeline .dates .date:hover .circle {
  background-color: var(--color-blue);
}

@media (min-width: 768px) {
  .box-timeline .dates .date:hover .circle {
    background-color: var(--color-blue);
  }
}

.box-timeline .dates .date.active .circle {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: var(--color-blue);
}

.box-timeline .glow-left {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: rgb(238, 238, 238);
  background: linear-gradient(90deg, rgba(11, 18, 41, 1) 0%, rgba(11, 18, 41, 0) 100%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .box-timeline .glow-left {
    width: 20%;
  }
}

.box-timeline .glow-right {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background: rgb(238, 238, 238);
  background: linear-gradient(270deg, rgba(11, 18, 41, 1) 0%, rgba(11, 18, 41, 0) 100%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .box-timeline .glow-right {
    position: absolute;
    width: 20%;
  }
}

.box-timeline .btn-prev-slider {
  top: calc(50% - 16px);
  left: -25px;
}

.box-timeline .btn-next-slider {
  top: calc(50% - 16px);
  right: -25px;
}


.btn-prev-slider {
  position: absolute;
  left: -10px;
  top: calc(50% - 48px);
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../../assets/img/icon_arrow_left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s ease-out;
  border: none;
}

@media (min-width: 992px) {
  .btn-prev-slider {
    left: -55px;
    top: calc(50% - 32px);
  }
}

.btn-prev-slider.hidden {
  display: none;
}

/* .btn-prev-slider:hover {
  background-image: url("../../assets/img/btn_prev_hover.svg");
} */

.btn-next-slider {
  position: absolute;
  right: -10px;
  top: calc(50% - 48px);
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../../assets/img/icon_arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s ease-out;
  border: none;
}

@media (min-width: 992px) {
  .btn-next-slider {
    right: -55px;
    top: calc(50% - 32px);
  }
}

.btn-next-slider.hidden {
  display: none;
}

/* Blocos Navi */

.blocos-navi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.blocos-navi.show {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.blocos-navi .blocks {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin: 0 auto;
}

.blocos-navi .blocks .btn-real-estate {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-blue);
  padding: 8px 16px;
  flex-grow: 2;
  border-radius: 8px;
}

.blocos-navi .arrow-down-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;
}

.blocos-navi .arrow-down-block:after {
  display: block;
  content: url("../img/arrow_light_blue.svg");
  width: 24px;
  height: 24px;
}

.blocos-navi:nth-child(1) .blocks {
  max-width: 350px;
}

.blocos-navi:nth-child(1) .blocks .btn-real-estate {
  color: var(--color-dark-blue);
  background-color: var(--color-light-blue);
}

.blocos-navi:nth-child(1) .arrow-down-block {
  color: var(--color-light-blue);
}

.blocos-navi:nth-child(1) .arrow-down-block:after {
  content: url("../img/arrow_light_blue.svg");
}

.blocos-navi:nth-child(2) .blocks {
  max-width: 250px;
}

.blocos-navi:nth-child(2) .blocks .btn-real-estate {
  color: var(--color-dark-blue);
  background-color: var(--color-white);
}

.blocos-navi:nth-child(2) .arrow-down-block {
  color: var(--color-white);
}

.blocos-navi:nth-child(2) .arrow-down-block:after {
  content: url("../img/arrow_white.svg");
}

.blocos-navi:nth-child(3) .blocks {
  max-width: 200px;
  margin-bottom: 12px;
}

.blocos-navi:nth-child(3) .blocks .btn-real-estate {
  color: var(--color-white);
  background-color: var(--color-blue);
}

.blocos-navi:nth-child(3) .arrow-down-block {
  font-size: 1.2rem;
  color: var(--color-white);
  flex-direction: column-reverse;
}

.blocos-navi:nth-child(3) .arrow-down-block:after {
  content: url("../img/arrow_blue.svg");
}

.btns-real-estate:nth-child(1) .btn-real-estate {
  color: var(--color-dark-blue);
  background-color: var(--color-light-blue);
}

.btns-real-estate:nth-child(2) .btn-real-estate {
  color: var(--color-dark-blue);
  background-color: var(--color-light-gray);
}

.blocos-navi .blocks .btn-real-estate strong {
  filter: blur(0);
  transform: blur .5 ease-in-out;
}

.blocos-navi.blurred .blocks .btn-real-estate strong {
  filter: blur(4px);
}

.infra-highlight {
  font-size: 1.5rem;
  font-weight: 700;
}

.infra-bold {
  font-size: 1.2rem;
  font-weight: 600;
}

.infra-list {
  display: block;
}

@media (min-width: 768px) {
  .infra-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

.infra-list .infra-list-item {
  display: flex;
  font-size: .9rem;
  padding: 4px 0;
}

@media (min-width: 768px) {
  .infra-list .infra-list-item {
    padding: 0;
  }
}

.infra-list .infra-list-item:before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.infra-list .infra-list-item:nth-child(1):before {
  background-image: url("../../assets/img/icon_infra_1.svg");
}

.infra-list .infra-list-item:nth-child(2):before {
  background-image: url("../../assets/img/icon_infra_2.svg");
}

.infra-list .infra-list-item:nth-child(3):before {
  background-image: url("../../assets/img/icon_infra_3.svg");
}

.infra-list .infra-list-item:nth-child(4):before {
  background-image: url("../../assets/img/icon_infra_4.svg");
}

.btn-more-documents {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 42px;
	font-size: .8rem;
	line-height: .8rem;
	color: var(--color-white);
	border: none;
	border-radius: 6px;
	padding: 8px 24px;
	background-color: var(--color-dark-blue);
	margin: 0 auto;
	transition: all .3s ease-in-out;
}

.btn-more-documents:hover {
	background-color: var(--color-blue);
}