/* Initialize */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Topo Home */

#topo-home {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  top: 130px;
  left: 0;
  background-size: cover;
  /* background-image: url(../../assets/img/bg_topo.jpg); */
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  #topo-home {
    position: relative;
    width: calc(100vw - 200px);
    height: auto;
    min-height: 100vh;
    top: 0;
    left: 200px;
    background-size: cover;
    background-image: url(../../assets/img/bg_topo.jpg);
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Menu Desktop */

#menu {
  position: fixed;
  width: 200px;
  height: 100vh;
  background-color: #062341;
  z-index: 99;
  border-right: 1px solid #8fadcc;
  top: 0;
  left: 0;
  padding: 32px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Menu Desktop Active state */

#menu.active {
  border-right: 1px solid transparent;
}

#menu.active .logo-menu {
  opacity: 0;
  pointer-events: none;
}

#menu.active .social-networks-menu {
  opacity: 0;
  pointer-events: none;
}

#menu.active #icon-menu-desktop {
  background-image: url(../../assets/img/icon_closeMenu.svg);
}

#menu.active #icon-menu-desktop:hover {
  background-image: url(../../assets/img/icon_closeMenu_hover.svg);
}

/* Modal Menu Desktop */

#modal-menu {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #062341;
  grid-template-columns: 200px 2.5fr 1fr;
  overflow-y: auto;
  z-index: 90;
}

/* #Modal Desktop menu content */

#modal-menu #empty {
  width: 200px;
  height: 100%;
}

#modal-menu #left {
  width: 100%;
  height: 100vh;
  background-color: #062341;
  background-size: contain;
  background-image: url(../../assets/img/bg_menu.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding: 15vh 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}

#modal-menu #right {
  width: 100%;
  min-width: 300px;
  height: 100%;
  background: #062341;
  padding: 15vh 10%;
}

#modal-menu #left #menu1 {
  color: #fff;
  width: 100%;
  height: auto;
  padding-left: 25%;
  padding-right: 0;
}

#modal-menu #left #menu2 {
  width: 100%;
  height: auto;
  padding-left: 15%;
  padding-right: 8px;
}

#modal-menu #right #menu3 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

#modal-menu #right #menu3 a span,
#modal-menu #right #menu3 span {
  display: block;
  font-family: 'Clan Pro';
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding-bottom: 16px;
  transition: all 0.3s ease-out;
}

#modal-menu #right #menu3 a {
  text-decoration: none;
}

#modal-menu #right #menu3 a span:hover {
  display: block;
  font-family: 'Clan Pro';
  font-size: 18px;
  color: #9dbfd8;
  text-decoration: none;
  padding-bottom: 16px;
  transition: all 0.3s ease-out;
}

/* Menu Mobile */

#menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-color: #0d233f;
  border-bottom: 1px solid #8fadcc;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  z-index: 40;
}

#menu-mobile .icon-menu {
  width: 42px;
  height: 42px;
  background-size: 40%;
}

#menu-mobile .logo-menu {
  width: 220px;
}

#menu-mobile.active #icon-menu-mobile {
  background-image: url(../../assets/img/icon_closeMenu.svg);
}

#menu-mobile.active #icon-menu-mobile:hover {
  background-image: url(../../assets/img/icon_closeMenu_hover.svg);
}

/* Modal Menu Mobile */

#modal-menu-mobile {
  width: 100%;
  height: calc(100vh - 130px);
  position: fixed;
  top: 130px;
  left: 0;
  display: none;
  background-color: #0d233f;
  z-index: 90;
  padding: 32px;
  overflow-y: auto;
}

/* Canuma */

#canuma {
  width: 100%;
  margin-top: 130px;
}

@media (min-width: 992px) {
  #canuma {
    margin-top: 0;
    width: 100%;
    min-height: 100vh;
  }
}

#canuma .canuma-row {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  #canuma .canuma-row {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
}

#canuma .content {
  width: 100%;
  display: block;
  font-family: 'Clan Pro';
}

@media (min-width: 992px) {
  #canuma .content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1.7fr repeat(8, 1fr) 1.2fr;
  }
}

.title-canuma,
.btn-canuma,
.end-canuma {
  width: 100%;
  background: rgb(135, 168, 205);
  background: linear-gradient(
    90deg,
    rgba(135, 168, 205, 1) 0%,
    rgba(29, 69, 133, 1) 100%
  );
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.title-canuma {
  padding: 32px;
}

@media (min-width: 992px) {
  .title-canuma {
    padding: 32px 24px 0 270px;
  }
}

.title-canuma h2 {
  width: 100%;
  font-size: 24px;
  color: #0d233f;
  text-align: center;
}

@media (min-width: 992px) {
  .title-canuma h2 {
    font-size: 24px;
    color: #0d233f;
    text-align: left;
  }
}

.btn-canuma {
  color: #fff;
  padding: 32px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

@media (min-width: 992px) {
  .btn-canuma {
    padding: 0 24px 0 270px;
  }
}

.btn-canuma span {
  width: 100%;
  font-size: 20px;
  text-align: center;
}

@media (min-width: 992px) {
  .btn-canuma span {
    font-size: 20px;
    text-align: left;
  }
}

.btn-canuma:hover {
  font-size: 20px;
  color: #0d233f;
  background: #fff;
}

.btn-canuma.active {
  font-size: 20px;
  color: #0d233f;
  background: #fff;
  pointer-events: none;
}

/* Canuma Content */

.canuma-content {
  display: none;
  width: 100%;
  height: 100%;
}

.canuma-content .active {
  display: none;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.canuma-content .active .text {
  display: none;
  width: 100%;
  height: auto;
  padding: 16px;
}

.canuma-content header {
  display: none;
}

@media (min-width: 992px) {
  .canuma-content header {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center top;
    padding: 5% 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

.canuma-content header h3 {
  font-family: 'Clan Pro';
  font-size: 28px;
  color: #fff;
}

.canuma-content .text {
  width: 100%;
  height: auto;
  padding: 24px;
}

@media (min-width: 992px) {
  .canuma-content .text {
    width: 100%;
    height: auto;
    padding: 8% 15%;
  }
}

.canuma-content .text p {
  font-family: 'Clan Pro';
  font-size: 18px;
  padding-bottom: 8px;
}

.canuma-content .text ul {
  padding-left: 8px;
}

.canuma-content .text ul li {
  font-family: 'Clan Pro';
  font-size: 18px;
  padding-left: 0;
  padding-bottom: 24px;
}

.canuma-content .text ol {
  padding-left: 8px;
}

.canuma-content .text ol li {
  font-family: 'Clan Pro';
  font-size: 18px;
  padding-left: 0;
  padding-bottom: 24px;
}

.canuma-content .text .author {
  font-family: 'Clan Pro';
  font-size: 14px;
  font-style: italic;
  padding-bottom: 24px;
}

/* Coluna Clone */

#clone-content {
  display: block;
  width: 100%;
  height: auto;
}

#clone-content .canuma-content {
  display: block;
}

/* Estratégias de Investimento */

#estrategias {
  width: 100%;
  min-height: 350px;
  background-color: #fff;
  padding: 32px 24px;
}

@media (min-width: 992px) {
  #estrategias {
    width: 100%;
    min-height: 350px;
    background-color: #fff;
    padding: 72px 32px 72px 220px;
  }
}

#estrategias h2 {
  font-family: 'Clan Pro';
  font-size: 28px;
  text-align: center;
  padding-bottom: 32px;
}

.estrategias-row {
  width: 100%;
  min-height: 450px;
}

.observations {
  padding: 10px;
  margin-bottom: 16px;
}

.observations span {
  display: inline-block;
  padding-right: 32px;
  font-family: 'Clan Pro Narr News';
  font-size: 12px;
}

@media (max-width: 768px) {
  #estrategias .subtitle {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Clan Pro';
    font-size: 22px;
    color: #9dbfd8;
    background-color: #1a4387;
    padding: 8px;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
  }
}

#estrategias .subtitle {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Clan Pro';
  font-size: 22px;
  color: #9dbfd8;
  background-color: #1a4387;
  padding: 8px;
}

.setores-row {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .setores-row {
    display: flex;
    width: 100%;
  }
}

.setores-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: none;
  border-top: 1px solid #1a4387;
  padding: 12px;
}

@media (min-width: 992px) {
  .setores-box {
    min-height: 100px;
    border-top: none;
    border-left: 1px solid #1a4387;
    padding: 8px;
  }
}

.setores-box:first-child {
  border-top: none;
}

@media (min-width: 992px) {
  .setores-box:first-child {
    border-left: none;
  }
}

.setores-box span {
  font-family: 'Clan Pro Narr News';
  font-size: 14px;
  text-align: center;
}

/* Investidores */

#investidores {
  width: 100%;
  min-height: 350px;
  background-color: #1a4387;
  background-image: url(../../assets/img/bg_texturaInvestidores.png);
  background-size: 200%;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 32px 24px;
}

@media (min-width: 992px) {
  #investidores {
    background-color: #1a4387;
    padding: 72px 32px 72px 220px;
    width: 100%;
    min-height: 350px;
    background-color: #1a4387;
    background-image: url(../../assets/img/bg_texturaInvestidores.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 72px 32px 72px 240px;
  }
}

#investidores .title {
  font-family: 'Clan Pro';
  font-size: 28px;
  text-align: center;
  color: #fff;
}

@media (min-width: 992px) {
  #investidores .title {
    font-family: 'Clan Pro';
    font-size: 28px;
    /* text-align: left; */
    color: #fff;
  }
}

#investidores .subtitle {
  font-family: 'Clan Pro';
  font-size: 20px;
  text-align: center;
  padding-bottom: 32px;
  color: #86a7cf;
}

@media (min-width: 992px) {
  #investidores .subtitle {
    font-family: 'Clan Pro';
    font-size: 20px;
    /* text-align: left; */
    padding-bottom: 32px;
    color: #86a7cf;
  }
}

/* Equipe */

#equipe {
  width: 100%;
  min-height: 100vh;
  padding-left: 0;
  padding-bottom: 48px;
}

@media (min-width: 992px) {
  #equipe {
    width: 100%;
    padding-bottom: 72px;
    padding-left: 200px;
  }
}

#equipe header {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#equipe header .title {
  font-family: 'Clan Pro';
  font-size: 28px;
  text-align: center;
  color: #fff;
}

#equipe .content {
  width: 100%;
  padding: 48px 0 0;
  font-family: 'Clan Pro';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#equipe .content .author {
	display: flex;
    align-self: flex-start;
	padding-left: 2.7em;
    font-size: 14px;
    font-style: italic;
}

@media (min-width: 992px) {
  #equipe .content {
    width: 100%;
    margin: 0 !important;
    padding: 48px 0;
    font-family: 'Clan Pro';
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

#equipe .content ul li {
  padding-left: 0;
  padding-bottom: 16px;
}

/* Midia */

#midia {
  width: 100%;
  min-height: 350px;
  background-color: #f0f0f0;
  padding: 32px 24px;
}

@media (min-width: 992px) {
  #midia {
    width: 100%;
    min-height: 350px;
    background-color: #f0f0f0;
    padding: 72px 32px 72px 240px;
  }
}

#midia .title {
  font-family: 'Clan Pro';
  font-size: 28px;
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 32px;
}

/* Contato */

#contato {
  width: 100%;
  min-height: 300px;
  padding: 48px 24px;
  background-color: #0d233f;
}

@media (min-width: 992px) {
  #contato {
    width: 100%;
    min-height: 300px;
    padding: 72px 32px 32px 240px;
    background-color: #0d233f;
  }
}

.title-contato {
  font-family: 'Clan Pro';
  font-size: 28px;
  color: #9dbfd8;
  padding-bottom: 16px;
}

#contato label {
  font-family: 'Clan Pro Narr News';
  font-size: 12px;
  width: 100%;
  color: #fff;
  padding-bottom: 16px;
}

#contato input[type='text'],
#contato input[type='email'],
textarea {
  width: 100%;
  border-radius: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #fff !important;
  font-family: 'Clan Pro Narr News';
  font-size: 14px;
  color: #9dbfd8;
}

#contato form textarea {
  width: 100%;
  height: 100px;
  border-radius: 0;
  background-color: transparent;
  font-family: 'Clan Pro Narr News';
  font-size: 14px;
  color: #9dbfd8;
}

/* Contact Form Fields */

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-family: 'Clan Pro Narr News';
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  padding-top: 4px;
  color: #9dbfd8;
}

.wpcf7-response-output {
  font-family: 'Clan Pro Narr News';
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: #fff;
  background-color: #2b69b5;
  border: none !important;
  padding: 8px 24px !important;
}

.icon-contato {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #9dbfd8;
  padding: 12px;
  border-radius: 20px;
  margin-right: 8px;
}

.title-address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Clan Pro';
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.icon-contato i {
  font-size: 16px;
  color: #0d233f;
}

.address-contato {
  display: block;
  font-family: 'Clan Pro Narr News';
  font-size: 12px;
  color: #fff;
  margin-bottom: 24px;
}

.map-address {
  width: 100%;
  height: 300px;
  margin-bottom: 24px;
}

.mailphone-address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Clan Pro';
  font-size: 18px;
  color: #fff;
}

/* Footer */

footer {
  width: 100%;
  padding: 48px 24px;
  background-color: #0d233f;
}

@media (min-width: 992px) {
  footer {
    width: 100%;
    padding: 48px 80px 48px 280px;
    background-color: #0d233f;
  }
}

.seloAndima {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .seloAndima {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.seloAndima img {
  width: 100px;
}

hr {
  background: #9ebfd7;
  margin: 32px 0 18px 0;
}

.copyright {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright span {
  font-family: 'Clan Pro Narr News';
  font-size: 10px;
  color: #fff;
  padding-top: 24px;
}

@media (min-width: 992px) {
  .copyright span {
    font-family: 'Clan Pro Narr News';
    font-size: 10px;
    color: #fff;
    padding-top: 0;
  }
}

/* Botão Invista */

#button-invista {
  width: 100%;
  height: auto;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 89;
}

/* Botão Chat */

#button-chat {
  bottom: 20px;
  right: 30px;
  position: fixed;
  z-index: 89;
}

#button-chat {
  width: 45px;
  height: 45px;
  display: block;
  background-image: url(../../assets/img/icon_chat.svg);
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease-out;
}

#button-chat:hover {
  background-image: url(../../assets/img/icon_chat_over.svg);
  background-color: #0d233c;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

#button-chat.active {
  background-image: url(../../assets/img/icon_chat_over.svg);
  background-color: #0d233c;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

#chat-options {
  position: fixed;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  bottom: 50px;
  right: 60px;
  z-index: 80;
  width: 180px;
  height: 200px;
  padding: 24px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.5 ease-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

#chat-options.active {
  display: flex;
}

#chat-options a {
  font-family: 'Clan Pro';
  color: #0d233f;
  display: block;
  padding: 8px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#chat-options a:hover {
  color: #95acc9;
}

/* Página Mídia */

#topo-content {
  width: 100%;
  min-height: 315px;
  margin-top: 130px;
  margin-left: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 992px) {
  #topo-content {
    width: calc(100vw - 200px);
    min-height: 350px;
    margin-top: 0;
    margin-left: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 72px;
  }
}

#topo-content h2 {
  font-family: 'Clan Pro';
  font-size: 35px;
  color: #fff;
}

/* Base das páginas de # */

.content-base {
  width: 100%;
  min-height: 350px;
  padding: 48px 24px;
}

@media (min-width: 992px) {
  .content-base {
    width: 100%;
    min-height: 350px;
    padding: 96px 72px 32px 260px;
  }
}

/* Conteúdo mídia */

#content-midia {
  background-color: #f0f0f0;
}

@media (min-width: 992px) {
  #content-midia .midia-box {
    max-width: 350px;
    margin-bottom: 48px;
  }
}

/* Página Relatórios */

#content-relatorios {
  background-color: #fff;
}

.controler {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .controler {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
  }
}

.controler-fund {
}

.controler-year {
  width: 100%;
  margin-top: 32px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}

@media (min-width: 992px) {
  .controler-year {
    margin-top: 0;
    margin-left: 48px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
  }
}

.controler-year span {
  font-family: 'Clan Pro Narr News';
  font-size: 16px;
  padding-left: 4px;
  padding-right: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.controler-year .years {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

@media (min-width: 992px) {
  .controler-year .years {
    width: auto;
    margin-top: 0;
  }
}

.controler-year .btn-year {
  font-family: 'Clan Pro';
  font-weight: 500;
  font-size: 16px;
  color: #929395;
  padding: 0 49px 10px 49px;
  /* border-bottom: 1px solid #000; */
  text-decoration: none;
  transition: all 0.3s ease-out;
  cursor: pointer;
  margin: 0;
}

.controler-year .btn-year:hover {
  font-family: 'Clan Pro';
  color: #0d233f;
}

.controler-year .btn-year.active {
  font-family: 'Clan Pro';
  color: #0d233f;
}

.report-table {
  font-family: 'Clan Pro Narr News';
  font-size: 14px;
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(2, 51, 87, 0.1);
}

.report-table .table-head {
  font-family: 'Clan Pro';
}

.report-table .table td {
  vertical-align: middle;
  text-align: left;
  border-top: 1px solid #000;
  min-width: 250px;
}

.report-table .table-head td {
  border-top: none;
}

.report-table .table td + td {
  min-width: 0;
  text-align: center;
  border-left: 1px solid #1d4585;
}

/* Página Informações Regulatórias */

#content-info-regulatorias {
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #content-info-regulatorias {
    padding: 48px 48px 48px 260px;
  }
}

.bullet-infos {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../../assets/img/arrow_dwn.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a4387;
  color: #9dbfd8;
  transition: all 0.3s ease-out;
  text-decoration: none;
  margin-top: 3px;
  margin-right: 16px;
}

@media (min-width: 992px) {
  .bullet-infos {
    margin-top: 0;
  }
}

.normativos {
  display: none;
}

.normativos.active {
  display: block;
}

.formularios {
  display: none;
}

.formularios.active {
  display: block;
}

.lista-infos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Clan Pro';
  font-size: 16px;
  color: #0d233f;
  text-decoration: none;
  transition: all 0.3s ease-out;
  padding-bottom: 18px;
}

@media (min-width: 992px) {
  .lista-infos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Clan Pro';
    font-size: 16px;
    color: #0d233f;
    text-decoration: none;
    transition: all 0.3s ease-out;
    padding-bottom: 18px;
  }
}

.lista-infos:hover {
  color: #1d4585;
  text-decoration: none;
}

/* Página Fatos Relevantes */

#content-fatos-relevantes {
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #content-fatos-relevantes {
    padding: 48px 48px 48px 260px;
  }
}

.fatos-relevantes .lista-infos {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Página Post */

#content-post {
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #content-post {
    padding: 48px 48px 48px 260px;
  }
}

.post-content {
}

.post-content img {
  margin-bottom: 32px;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media (min-width: 992px) {
  .post-content img {
    position: initial;
    padding: 0;
    margin: initial;
    width: 100%;
    left: initial;
    right: initial;
    margin-bottom: 32px;
  }
}

.post-content h2 {
  font-family: 'Clan Pro';
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 8px;
}

.post-content p {
  font-family: 'Clan Pro Narr News';
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 8px;
}

.share-bar {
}

.share-bar span {
  font-family: 'Clan Pro Narr News';
  font-size: 16px;
  color: #0d233f;
}

.share-bar span a i {
  padding: 8px;
  text-decoration: none;
  color: #191919;
  transition: all 0.3s ease-out;
}

.share-bar span a i:hover {
  color: #1d4585;
}

.post-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 72px;
}

@media (min-width: 992px) {
  .post-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
}

.post-navigation .back,
.post-navigation .foward {
  font-family: 'Clan Pro Narr News';
  font-size: 12px;
  color: #1a4387;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.post-navigation .back:hover,
.post-navigation .foward:hover {
  color: #0d233f;
  text-decoration: underline;
}

.post-navigation .back i {
  margin-right: 8px;
}

.post-navigation .foward i {
  margin-left: 8px;
}

/* Página Nossos Fundos */

#content-nossos-fundos {
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #content-nossos-fundos {
    padding: 72px 48px 48px 280px;
  }
}

#content-nossos-fundos .controler-year {
  margin-left: 0;
}

.box-fundos {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 1px solid #1d4585;
  padding: 24px;
}

.box-fundos a {
  text-decoration: none;
}

.box-fundos a:hover {
  text-decoration: none;
}

.box-fundos a .title {
  font-family: 'Clan Pro';
  font-size: 20px;
  color: #1a4387;
  padding-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.box-fundos a:hover .title {
  font-family: 'Clan Pro';
  font-size: 20px;
  color: #8fadcc;
  padding-bottom: 8px;
}

.box-fundos .text-fundo {
  font-family: 'Clan Pro Narr News';
  font-size: 13px;
  color: #1a4387;
}
/* .box-fundos .title::before {
  content: '•';
  margin-right: 6px;
} */

.box-fundos p {
  font-family: 'Clan Pro Narr News';
  font-size: 13px;
  color: #1a4387;
  white-space: pre-wrap;
}

/* Paginação Posts */
.wp-pagenavi {
  clear: both;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #111 !important;
  background: #8fadcc;
  text-decoration: none;
  border: 0px !important;
  border-radius: 5px;
  padding: 8px 10px !important;
  margin: 2px;
  font-size: 13px;
  transition: all 0.3s ease-out;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  color: #fff !important;
  background: #1a4387;
  border-color: #1a4387 !important;
}

.wp-pagenavi span.current {
  font-weight: bold;
}

/* Tabela Equipe */
/**************/
.progress {
  display: flex;
  flex-direction: row-reverse;
  height: 28px;
  margin-bottom: 15px;
  background: #fff;
}

.progress:first-child {
  margin-bottom: 6px;
}
.pr-cv {
  border-radius: 0 !important;
  border: 0;
}

.bg-canuma {
  background-color: #9dbfd8;
  color: #0d233f;
}
.bg-topbar {
  background: #fff;
  color: #0d233f;
}
.bg-cv {
  background: #eee;
  color: #0e0e0e;
}
.bg-sam {
  background: #848484;
  color: #fff;
}
.bg-white {
  color: #0d233f;
  text-align: left;
}
.bg-warning {
  color: #0e0e0e;
  font-weight: bold;
}
.bg-dark {
  background: #0d233f;
  color: #fff;
}
.bg-light {
  background: #9dbfd8 !important;
  color: #0d233f !important;
}

.vertical-tabela {
  padding: 24px 32px;
}

@media only screen and (max-width: 600px) {
  .vertical-tabela > .row {
    overflow-x: auto;
    white-space: nowrap;
  }

  .vertical-tabela {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 24px 48px;
  }
  .linha-tabela {
    width: 1120px;
  }
}

.btn-name-cv {
  font-family: 'Clan Pro';
  color: #0d233f;
  text-decoration: none;
  transition: all 3s ease-out;
}

.btn-name-cv:hover {
  color: #2b69b5;
  text-decoration: none;
}

.btn-cv {
  font-family: 'Clan Pro';
  font-size: 11px;
  color: #0d233f;
  padding: 12px 15px;
  margin: 0;
  border: 1px solid #0d233f;
  background-color: #fff;
  text-align: center;
  margin-left: 10px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.btn-cv:hover {
  color: #fff;
  border: 1px solid #0d233f;
  background-color: #0d233f;
  text-decoration: none;
}

#conteudo {
  width: 100%;
  padding: 56px 48px;
}

@media (min-width: 992px) {
  #conteudo {
    padding: 72px 48px 72px 280px;
  }
}

.title-arquivos {
  display: initial;
  font-family: 'Clan Pro Narr News';
  font-size: 16px;
  border-bottom: 1px solid #000;
  padding-left: 0;
  padding-right: 18px;
}

.link-arquivos {
  font-family: 'Clan Pro Narr News';
  font-size: 12px;
  color: #1a4387;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.link-arquivos:hover {
  color: #0d233f;
  text-decoration: underline;
}

.bot-fundo-especial {
  width: 100%;
  height: 100%;
  border: 1px solid #1d4585;
  padding: 24px;
}

.bot-fundo-especial a {
  text-decoration: none;
}

.bot-fundo-especial a:hover {
  text-decoration: none;
}

.bot-fundo-especial a .title {
  font-family: 'Clan Pro';
  font-size: 20px;
  color: #1a4387;
  padding-bottom: 0;
  text-decoration: none;
  transition: all 0.3s ease-out;
  margin-bottom: 0;
  text-align: center;
}

.bot-fundo-especial a:hover .title {
  font-family: 'Clan Pro';
  font-size: 20px;
  color: #8fadcc;
}

