html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

/* Menu Mobile */

.menu-mobile {
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #110036;
  position: fixed;
  z-index: 999;
}

.menu-mobile a {
  padding: 8px;
}

.menu-mobile a img {
  width: 160px;
}

.menu-mobile .btn-menu-mobile {
  width: 30px;
  height: 17px;
  background-image: url('../../assets/img/icone_hamburger.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 8px;
  position: absolute;
  left: 30px;
}

/* Navigation Mobile */

.navigation-mobile {
  width: 100%;
  height: calc(100vh - 90px);
  position: fixed;
  left: 0;
  top: 90px;
  background-color: #e8c547;
  padding: 32px 60px 32px 32px;
  z-index: 990;
  display: none;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.navigation-mobile.active {
  display: block;
  opacity: 1;
}

.btn-close-mobile,
.btn-close-bio {
  display: block;
  width: 25px;
  height: 25px;
  background-image: url('../../assets/img/icone_close_hamburger.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 16px;
}

.navigation-mobile .redes-sociais {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navigation-mobile .redes-sociais a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #110036;
  padding: 0;
  margin: 8px;
  transition: all 0.3s ease-out;
}

.navigation-mobile .redes-sociais a:hover {
  background-color: #fff;
}

.navigation-mobile .redes-sociais a i {
  color: #e8c547;
}

/* Menu Desktop */

.menu-desktop {
  position: fixed;
  width: 100%;
  height: 95px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 32px;
  background-color: #110036;
  position: fixed;
  z-index: 900;
}

.menu-desktop .brand img {
  width: 180px;
  height: auto;
}

.navigation-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navigation-desktop ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  float: left;
  padding-right: 24px;
}

.navigation-desktop ul li {
  position: relative;
  float: left;
}

.navigation-desktop ul li a {
  display: block;
  padding: 38px 24px;
  font-family: 'Verdana Bold';
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-out;
}

.navigation-desktop ul li a:hover {
  text-decoration: none;
  color: #e8c547;
}

.navigation-desktop ul .submenu:after {
  content: '▼';
  color: #fff;
  margin-left: 8px;
  transition: all 0.3s ease-out;
}

.navigation-desktop ul .submenu:hover:after {
  color: #e8c547;
}

.navigation-desktop ul li ul {
  position: absolute;
  display: none;
  transition: all 0.3s ease-out;
}

.navigation-desktop ul li:hover ul,
.navigation-desktop ul li.over ul {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
  padding: 18px 0px;
}

.navigation-desktop ul li ul li {
  display: block;
  min-width: 280px;
}

.navigation-desktop ul li ul li a {
  display: block;
  font-family: 'Verdana Normal';
  font-size: 11px;
  color: #110036;
  padding: 12px 16px;
  text-transform: initial;
}

.navigation-desktop ul li ul li a:hover {
  color: #e8c547;
  background-color: #606060;
}

/* Background Home */

.background-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(135vh);
  background-image: url(../../assets/img/foto_topo_home.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 992px) {
  .background-home {
    height: calc(150vh);
  }
}

/* Sessão Topo */

#topo {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  #topo {
    padding: 0;
  }
}

#topo.darkblue {
  background-color: #110036;
}

#topo h2 {
  width: 100%;
  font-family: 'Verdana Bold';
  font-size: 32px;
  color: #e8c547;
  text-align: center;
  padding-bottom: 24px;
  opacity: 0;
}

@media (min-width: 992px) {
  #topo h2 {
    width: 40%;
    font-size: 36px;
  }
}

#topo p {
  width: 100%;
  font-family: 'Verdana Normal';
  font-size: 16px;
  color: #fff;
  text-align: center;
  opacity: 0;
}

@media (min-width: 992px) {
  #topo p {
    width: 50%;
    font-size: 18px;
  }
}

#topo p strong {
  font-family: 'Verdana Bold';
}

#topo .arrow {
  position: absolute;
  display: block;
  width: 60px;
  height: 50px;
  background-image: url(../../assets/img/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 90px;
}

@media (min-width: 992px) {
  #topo .arrow {
    bottom: 60px;
  }
}

/* Sessão nossos fundos */

#nossosfundos {
  width: 100%;
  height: auto;
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #nossosfundos {
    width: 100%;
    height: auto;
    padding: 72px 72px;
  }
}

/* Sobre Nós */

#sobrenos {
  width: 100%;
  height: auto;
  padding: 48px 24px;
  background-color: #110036;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden !important;
}

@media (min-width: 992px) {
  #sobrenos {
    padding: 72px 96px 72px 128px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

#sobrenos .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  #sobrenos .content {
    width: 70%;
    align-items: flex-start;
  }
}

#sobrenos .content p {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #fff;
  padding-bottom: 32px;
}

@media (min-width: 992px) {
  #sobrenos .content p {
    font-size: 18px;
    padding-bottom: 48px;
  }
}

#sobrenos img {
  width: 100%;
}

/* Mailing */

#mailing {
  width: 100%;
  background-color: #e8c547;
  height: auto;
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #mailing {
    padding: 96px 32px;
  }
}

#mailing .mc4wp-form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-template-columns: initial;
  gap: initial;
  font-family: 'Verdana Normal';
}

@media (min-width: 992px) {
  #mailing .mc4wp-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto min-content;
    gap: 24px;
  }
}

.mc4wp-form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.mc4wp-form input {
  font-size: 14px;
  padding: 8px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #110036;
}

.mc4wp-form .checkboxes {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 24px;
}

@media (min-width: 992px) {
  .mc4wp-form .checkboxes {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.mc4wp-form .checkboxes input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.mc4wp-form .checkboxes label {
  padding-left: 4px;
}

.mc4wp-form .checkboxes .form-check:first-child {
  padding-right: 16px;
}

.mc4wp-form .botao {
  display: flex;
  align-items: center;
}

/* Footer */

/* Primeira coluna */

footer {
  font-family: 'Verdana Normal';
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: #110036;
  padding: 48px 32px;
}

@media (min-width: 992px) {
  footer {
    padding: 72px 96px;
  }
}

footer .logo-footer {
  width: 160px;
  height: auto;
  padding-bottom: 24px;
}

footer .telefone,
footer .email {
  display: block;
  font-family: 'Verdana Bold';
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  transition: all 0.3s ease-out;
}

footer .telefone:hover,
footer .email:hover {
  text-decoration: none;
  color: #e8c547;
}

footer .telefone:after {
  content: '';
  display: block;
  width: 210px;
  height: 1px;
  background-color: #fff;
  margin-top: 12px;
  margin-bottom: 12px;
}

footer hr {
  width: 100%;
  background-color: #fff;
}

footer .endereco {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  white-space: pre-wrap;
}

/* Segunda Coluna */

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

@media (min-width: 992px) {
  footer .menu-footer ul {
    padding-left: 32px;
  }
}

footer .menu-footer ul li a {
  font-family: 'Verdana Normal';
  font-size: 13px;
  line-height: 40px;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8c547;
  transition: all 0.3s ease-out;
  padding-left: 0;
}

footer .menu-footer ul li a:hover {
  color: #fff;
}

/* Terceira coluna */

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

@media (min-width: 992px) {
  footer .menu-secundario ul {
    list-style: none;
    padding-left: 32px;
  }
}

footer .menu-secundario ul li a {
  display: block;
  font-family: 'Verdana Normal';
  font-size: 13px;
  line-height: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #e8c547;
  transition: all 0.3s ease-out;
}

footer .menu-secundario ul li a:after {
  display: block;
  content: '';
  width: 130px;
  height: 1px;
  background-color: #e8c547;
  margin-bottom: 12px;
}

footer .menu-secundario ul li a:hover {
  color: #fff;
}

footer .menu-secundario ul li a:hover:after {
  background-color: #ffffff;
}

/* Quarta coluna */

footer .redes-sociais {
}

footer .redes-sociais span {
  font-family: 'Verdana Normal';
  font-size: 13px;
  text-align: left;
  color: #fff;
}

footer .redes-sociais .link-redes-sociais {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}

footer .redes-sociais .link-redes-sociais:first-child {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
  margin-right: 16px;
}

footer .redes-sociais .link-redes-sociais i {
  font-size: 22px;
  color: #130134;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

footer .redes-sociais .link-redes-sociais:hover {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e8c547;
  text-decoration: none;
}

footer .stamps {
  display: flex;
  margin-top: 32px;
}

footer .stamps img {
  width: 80px;
}

footer .stamps img:first-child {
  margin-right: 16px;
}

footer .disclaimer {
  font-family: 'Verdana Normal';
  text-align: left;
  font-size: 11px;
  line-height: 16px !important;
  color: #fff;
}

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

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

footer .copyright {
  font-family: 'Verdana Normal';
  font-size: 11px;
  text-align: left;
  color: #fff;
}

/* Social Share Pins */

.social-share {
  position: fixed;
  left: 16px;
  bottom: 60px;
}

.social-share a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #110036;
  margin-top: 16px;
}

.social-share a i {
  display: block;
  font-size: 24px;
  color: #e8c547;
  text-decoration: none;
  padding: 8px;
  transition: all 0.3s ease-out;
}

.social-share a i:hover {
  text-decoration: none;
  color: #fff;
}

/* Conteudo */

#content-investir {
  width: 100%;
  padding: 132px 48px 24px;
}

@media (min-width: 992px) {
  #content-investir {
    padding: 132px 32px 72px;
  }
}

#content-investir .title {
  padding-bottom: 8px;
}

/* Conteudo - Plataformas */

#content-investir .plataformas {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  margin-top: 32px;
}

@media (min-width: 992px) {
  #content-investir .plataformas {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
}

#content-investir .plataformas a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin: 8px;
}

#content-investir .plataformas a img {
  width: 100%;
  max-width: 140px;
  max-height: 60px;
}

/* Novidades */

#novidades {
  width: 100%;
  padding: 48px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  #novidades {
    padding: 48px 0 72px 96px;
    flex-direction: row;
  }
}

#novidades .text {
  width: 100%;
  display: block;
  font-family: 'Verdana Normal';
  font-size: 15px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  #novidades .text {
    width: 100%;
    display: block;
    font-family: 'Verdana Normal';
    font-size: 15px;
    padding-left: 0;
    padding-right: 48px;
    text-align: left;
    margin-bottom: 0;
  }
}

#novidades .text strong {
  font-family: 'Verdana Bold';
}

#novidades .box {
  width: 100%;
  background-color: #110036;
  font-family: 'Verdana Normal';
  font-size: 15px;
  color: #fff;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
}

@media (min-width: 992px) {
  #novidades .box {
    width: 100%;
    background-color: #110036;
    font-family: 'Verdana Normal';
    font-size: 15px;
    color: #fff;
    padding: 24px 96px 24px 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 16px 0 0 16px;
  }
}

#novidades .box span:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e8c547;
  margin-top: 4px;
  margin-bottom: 6px;
}

#novidades .box a {
  font-family: 'Verdana Bold';
  color: #fff;
  line-height: 28px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#novidades .box a:hover {
  color: #e8c547;
  text-decoration: none;
}

/* Sobre Nós */

/* Encore */

#encore {
  width: 100%;
  background-color: #fff;
  padding: 48px 24px;
}

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

#encore .logo-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 32px;
}

@media (min-width: 768px) {
  #encore .logo-row {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
  }
}

@media (min-width: 992px) {
  #encore .logo-row {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
  }
}

#encore .logo-row .logo-fragment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#encore .logo-row .logo-fragment img {
  width: 100%;
  height: 200px;
  margin-bottom: 36px;
}

#encore .logo-row .logo-fragment .legend {
  font-family: 'Verdana Bold';
  font-size: 15px;
}

/* Nossa Filosofia */

#nossa-filosofia {
  width: 100%;
  padding: 48px 24px;
}

@media (min-width: 992px) {
  #nossa-filosofia {
    padding: 72px 52px 48px;
  }
}

#nossa-filosofia .filosofia-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 18px;
}

@media (min-width: 576px) {
  #nossa-filosofia .filosofia-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
  }
}

@media (min-width: 992px) {
  #nossa-filosofia .filosofia-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 18px;
  }
}

#nossa-filosofia .filosofia-row .card-filosofia {
  width: 100%;
  height: auto;
  min-height: 320px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#nossa-filosofia .filosofia-row .card-filosofia img {
  width: auto;
  height: 80px;
  margin-bottom: 32px;
}

#nossa-filosofia .filosofia-row .card-filosofia .title-filosofia {
  font-family: 'Verdana Bold';
  font-size: 16px;
  color: #e8c547;
  margin-bottom: 16px;
  text-align: center;
}

#nossa-filosofia .filosofia-row .card-filosofia .legend {
  font-family: 'Verdana Normal';
  font-size: 13px;
  text-align: center;
}

/* Equipe */

#equipe {
  width: 100%;
  padding: 48px 24px;
}

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

#equipe .subtitle2 {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #equipe .subtitle2 {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 72px;
  }
}

#equipe .equipe-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 48px;
  padding: 16px;
}

@media (min-width: 576px) {
  #equipe .equipe-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 48px;
    padding: 16px;
  }
}

@media (min-width: 768px) {
  #equipe .equipe-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
    padding: 16px;
  }
}

@media (min-width: 992px) {
  #equipe .equipe-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    padding: 16px;
  }
}

.equipe-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #110036;
}

.equipe-card .nome {
  font-family: 'Verdana Bold';
  font-size: 15px;
  color: #110036;
  text-align: center;
}

.equipe-card .cargo {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #e8c547;
  text-align: center;
}

.equipe-card .link-bio {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.equipe-card .link-bio:hover {
  color: #e8c547;
}

.equipe-card .link-bio > div {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #e8c547;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.equipe-card .link-bio:hover > div {
  background-color: #110036;
}

.equipe-card .bio {
  display: none;
}

.equipe-card .linkedin {
  display: none;
}

.equipe-swiper-mobile {
  width: 100%;
  padding-bottom: 72px;
}

.swiper-equipe {
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 72px;
  position: relative;
}

.swiper-equipe .equipe-card:last-child {
  margin-top: 32px;
}

.swiper-equipe .swiper-pagination {
  margin-top: 100px;
}

.swiper-equipe .swiper-button-prev {
  width: 80px;
  height: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  background-color: #e8c547;
  margin-left: -55px;
  background-image: url('../../assets/img/arrow_left.svg') !important;
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 75%;
  color: transparent;
}

.swiper-equipe .swiper-button-next {
  width: 80px;
  height: 80px;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  background-color: #e8c547;
  margin-right: -55px;
  background-image: url('../../assets/img/arrow_right.svg') !important;
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 25%;
  color: transparent;
}

.swiper-equipe .swiper-pagination-bullet {
  border: 1px solid #110036;
  background-color: #eee;
}

.swiper-equipe .swiper-pagination-bullet-active {
  background-color: #110036;
}

/* Página Nossos Fundos */

#topo .arrow.nossos-fundos {
  bottom: 180px;
}

.content-nossos-fundos {
  padding-top: 0 !important;
  margin-top: -90px;
}

/* Página Fundo */

#content-fundo {
  width: 100%;
  padding: 48px 16px;
}

@media (min-width: 992px) {
  #content-fundo {
    width: 100%;
    padding: 72px 32px;
  }
}

#graficoFundo img {
  width: 100%;
  height: auto;
}

.tax-row {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: initial;
  grid-gap: 24px;
  border-bottom: 1px solid #e8c547;
  padding: 32px;
}

@media (min-width: 768px) {
  .tax-row {
    grid-template-rows: initial;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
  }
}

.tax-row:last-child {
  border-bottom: none;
}

.tax-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #110036;
}

.label-tax {
  width: 80%;
  font-family: 'Verdana Normal';
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .label-tax {
    width: 100%;
  }
}

.data-tax {
  font-family: 'Verdana Bold';
  font-size: 15px;
  text-align: center;
}

#content-fundo .title {
  padding-bottom: 0;
}

.rentabilidade-table {
  width: 100%;
  display: block;
  overflow-x: auto;
  padding: 12px 0px;
}

.rentabilidade-row {
  width: 100%;
  display: grid;
  grid-template-columns: 90px repeat(14, minmax(72px, auto));
  padding: 18px;
}

@media (min-width: 768px) {
  .rentabilidade-row {
    width: 100%;
    display: grid;
    grid-template-columns: 90px repeat(14, minmax(64px, auto));
    padding: 18px;
  }
}

.rentabilidade-row:first-child,
.rentabilidade-row:last-child {
  border-bottom: none;
}

.rentabilidade-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rentabilidade-label {
  font-family: 'Verdana Bold';
  font-size: 13px;
  text-align: center;
  color: #110036;
}

.rentabilidade-cdi {
  font-family: 'Verdana Normal';
  font-size: 13px;
  text-align: center;
  color: #110036;
}

.downloads-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.downloads-row > a {
  margin: 12px;
}

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

/* Página Mídia */

#content-midia {
  width: 100%;
  padding: 48px 16px;
}

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

#content-midia .title {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 576px) {
  #content-midia .title {
    width: 50%;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  #content-midia .title {
    width: 30%;
    margin: 0 auto;
  }
}

.button-midia-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .button-midia-row > button {
    margin: 12px;
  }
}

@media (min-width: 992px) {
  .button-midia-row {
    display: flex;
    flex-direction: row;
  }
}

.midia-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 32px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .midia-row {
    grid-row-gap: 48px;
    margin-top: 24px;
  }
}

@media (min-width: 992px) {
  .midia-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    margin-top: 32px;
  }
}

.midia-pagination {
  display: block;
  width: 100%;
}

.swiper-library {
  width: 100%;
  height: 100%;
  padding: 0 52px;
  margin: 0;
}

.swiper-library .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-library .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-library .swiper-button-prev,
.swiper-library .swiper-button-next {
  background-color: #110036;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 20%;
  background-repeat: no-repeat;
  color: transparent;
}

.swiper-library .swiper-button-prev {
  background-image: url('../../assets/img/arrow_midia_left.svg');
  background-position: 45%;
}

.swiper-library .swiper-button-next {
  background-image: url('../../assets/img/arrow_midia_right.svg');
  background-position: 55%;
}

/* Página Contato */

#content-contato {
  width: 100%;
  padding: 132px 14px 48px;
}

@media (min-width: 992px) {
  #content-contato {
    padding: 132px 48px 24px;
  }
}

#content-contato .title {
  padding-bottom: 24px;
}

#content-contato .email,
#content-contato .telefone {
  font-family: 'Verdana Bold';
  font-size: 14px;
  color: #110036;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#content-contato .email:hover,
#content-contato .telefone:hover {
  color: #e8c547;
  text-decoration: none;
}

#content-contato .telefone:after {
  content: '';
  display: block;
  width: 200px;
  height: 2px;
  background-color: #e8c547;
  margin-top: 8px;
  margin-bottom: 16px;
}

#content-contato .endereco {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #110036;
  text-align: left;
  white-space: pre-wrap;
}

/* Página Single Post */

#content-single-post {
  width: 100%;
  padding: 132px 16px 56px;
  min-height: 400px;
}

@media (min-width: 992px) {
  #content-single-post {
    width: 100%;
    padding: 132px 72px 72px;
    min-height: 400px;
  }
}

#content-single-post .title {
  text-align: left;
  padding-bottom: 0;
  margin: 0;
}

#content-single-post .data {
  font-family: 'Verdana Normal';
  font-size: 12px;
  color: #e8c547;
}

#content-single-post .imagem-destaque {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 48px;
}

#content-single-post .content h3 {
  font-family: 'Verdana Bold';
  font-size: 20px;
  text-align: left;
  padding-top: 16px;
}

#content-single-post .content p {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #110036;
  text-align: left;
}

#content-single-post .content a {
  font-family: 'Verdana Bold';
  font-size: 14px;
  color: #110036;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#content-single-post .content a:hover {
  color: #e8c547;
}

#content-single-post .paginacao {
  width: 100%;
  height: auto;
  position: relative;
}

#content-single-post .paginacao a {
  font-family: 'Verdana Bold';
  font-size: 13px;
  color: #110036;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#content-single-post .paginacao a:hover {
  color: #e8c547;
}

#content-single-post .paginacao .voltar {
  position: absolute;
  left: 16px;
}

#content-single-post .paginacao .voltar i {
  margin-right: 8px;
}

#content-single-post .paginacao .proxima {
  position: absolute;
  right: 16px;
}

#content-single-post .paginacao .proxima i {
  margin-left: 8px;
}

/* Modal Bio */

#modal-bio {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(19, 1, 52, 0.7);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 116px 16px 16px;
  z-index: 900;
  overflow-y: auto;
}

@media (min-width: 992px) {
  #modal-bio {
    padding: 16px;
  }
}

#modal-bio .card-bio {
  width: 640px;
  height: 100%;
  min-height: 280px;
  background-color: #f5f5f5;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

@media (min-width: 992px) {
  #modal-bio .card-bio {
    width: 640px;
    height: auto;
    min-height: 280px;
    background-color: #f5f5f5;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
  }
}

#modal-bio .card-bio .nome {
  font-family: 'Verdana Bold';
  font-size: 15px;
  color: #110036;
  text-align: center;
}

#modal-bio .cargo {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #e8c547;
  text-align: center;
  padding-bottom: 16px;
}

#modal-bio .bio {
  font-family: 'Verdana Normal';
  font-size: 13px;
  text-align: center;
  color: #110036;
}

#modal-bio .linkedin {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #110036;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
}

#modal-bio .linkedin i {
  color: #fff;
  transition: all 0.3s ease-out;
  text-decoration: none;
}

#modal-bio .linkedin:hover {
  background-color: #e8c547;
}

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

.wp-pagenavi a,
.wp-pagenavi span {
  color: #110036 !important;
  background: #fff;
  text-decoration: none;
  border: 1px solid #110036 !important;
  border-radius: 6px;
  padding: 8px 10px !important;
  margin: 2px;
  font-size: 14px;
  transition: all 0.3s ease-out;
}

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

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

.grecaptcha-badge {
  opacity: 0;
}

/* Página General Templates */
#interna {
  width: 100%;
  height: auto;
  min-height: 70vh;
  padding: 135px 24px 24px;
}

@media (min-width: 992px) {
  #interna {
    width: 100%;
    height: auto;
    min-height: 70vh;
    padding: 135px 32px 48px;
  }
}

#interna h3 {
  font-family: 'Verdana Bold';
  font-size: 20px;
  text-align: left;
  padding-top: 16px;
}

#interna p {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #110036;
  text-align: left;
}

#interna p strong {
  font-family: 'Verdana Bold';
  font-size: 14px;
  color: #110036;
  text-align: left;
}

#interna p a {
  font-family: 'Verdana Bold';
  font-size: 14px;
  color: #110036;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#interna p a:hover {
  color: #e8c547;
}

#interna .wp-block-column {
}

#interna .wp-block-column ul {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  list-style-type: none;
}

#interna .wp-block-column li {
  display: block;
}

#interna .wp-block-column li:before {
  content: '>';
  padding-right: 5px;
}

#interna .wp-block-column ul li a {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #110036;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#interna .wp-block-column ul li a:hover {
  color: #e8c547;
}

/* Botões Barra Privacidade */
.cn-button {
  padding: 8px 24px !important;
  border-radius: 16px !important;
}

.unnumbered-list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  position: relative;
  margin-left: 10px;
}

.unnumbered-list li {
  display: inline;
  margin-right: 10px;
  text-transform: uppercase;
}

.lang-item a {
  color: #e8c547;
  opacity: 0.7;
}

.current-lang a {
  color: white;
  opacity: 1;
}

.logodiv {
  display: flex;
}