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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #e8c547;
  color: #110036;
  font-family: 'Verdana Bold';
  font-size: 13px;
  text-decoration: none;
  z-index: 1001;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #e8c547;
  outline-offset: 2px;
}

main [id] {
  scroll-margin-top: 110px;
}

/* 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.534dcb6a9f58.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.cc611d9ae922.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.964585f71bc2.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.caf241d16ca7.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 90px;
}

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

#topo.hero {
  height: auto;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (min-width: 992px) {
  #topo.hero {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

#topo.hero .hero-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

#topo.hero h2,
#topo.hero p {
  width: 100%;
  max-width: 720px;
}

#topo.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

#topo.hero .hero-actions .btn {
  margin: 0;
}

/* Sessão nossos fundos */

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

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

/* 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 .encore-image {
  width: 100%;
  height: auto;
  align-self: center;
  justify-self: center;
}

/* Mailing */

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

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

#mailing .newsletter-form {
  width: 100%;
  font-family: 'Verdana Normal';
}

.newsletter-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .newsletter-fields {
    flex-direction: row;
  }
}

.newsletter-field {
  flex: 1;
}

.newsletter-field input {
  width: 100%;
  font-size: 16px;
  padding: 12px 8px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #110036;
  color: #110036;
}

.newsletter-field input:focus {
  outline: none;
  border-color: #fff;
}

.newsletter-field input::placeholder {
  color: rgba(17, 0, 54, 0.6);
}

.newsletter-field input:-webkit-autofill,
.newsletter-field input:-webkit-autofill:hover,
.newsletter-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #110036;
  box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.newsletter-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #110036;
}

.newsletter-groups__label {
  font-family: 'Verdana Bold';
  font-size: 14px;
  margin-bottom: 0;
}

.newsletter-groups__label .required {
  color: #b00020;
  margin-left: 4px;
}

.newsletter-groups__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 576px) {
  .newsletter-groups__options {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.newsletter-groups__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(17, 0, 54, 0.4);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.newsletter-groups__option span {
  font-family: 'Verdana Bold';
}

.newsletter-groups__option input[type='radio'] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #110036;
}

.newsletter-groups__option input[type='radio']:checked + span {
  color: #110036;
}

.newsletter-groups__option:hover {
  border-color: #110036;
  background-color: rgba(17, 0, 54, 0.08);
}

.newsletter-form .btn {
  align-self: flex-start;
  min-width: 220px;
  padding: 14px 32px;
  border-radius: 999px;
  background-color: #110036;
  border: none;
  color: #e8c547;
  font-family: 'Verdana Bold';
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(17, 0, 54, 0.35);
  transition: all 0.2s ease;
}

.newsletter-form .btn i {
  font-size: 16px;
}

.newsletter-form .btn span {
  transform: none;
}

.newsletter-form .btn:hover {
  background-color: #fff;
  color: #110036;
  box-shadow: 0 12px 26px rgba(17, 0, 54, 0.4);
  transform: translateY(-2px);
}

.newsletter-form .btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.newsletter-form .field-error {
  font-size: 12px;
  color: #b00020;
  margin-top: 6px;
}

.newsletter-form .alert {
  margin: 0;
}

.newsletter-form--success {
  max-width: 720px;
}

.newsletter-success-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(17, 0, 54, 0.15);
  border: 1px solid rgba(17, 0, 54, 0.08);
}

@media (max-width: 575px) {
  .newsletter-success-card {
    flex-direction: column;
    text-align: center;
  }
}

.newsletter-success-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #110036, #21045a);
  color: #e8c547;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(17, 0, 54, 0.3);
}

.newsletter-success__eyebrow {
  font-family: 'Verdana Bold';
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #110036;
  margin: 0 0 4px;
}

.newsletter-success__title {
  font-family: 'Verdana Bold';
  font-size: 20px;
  color: #110036;
  margin: 0 0 8px;
}

.newsletter-success__message {
  font-size: 14px;
  color: #110036;
  margin: 0;
  line-height: 1.6;
}

/* 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;
  z-index: 1200;
}

.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;
  box-shadow: 0 10px 24px rgba(17, 0, 54, 0.35);
}

.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: #7a5a00;
  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.b77c3b05e060.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.e840b9e39c76.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 {
  background: #fff;
  padding: 48px 0;
  margin-top: 0;
  border-radius: 32px 32px 0 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .content-nossos-fundos {
    padding-top: 80px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .content-nossos-fundos .container {
    max-width: 1480px;
  }
}

@media (min-width: 1400px) {
  .content-nossos-fundos .container {
    max-width: 1680px;
  }
}

.content-nossos-fundos .funds-table-wrap {
  width: 100%;
}

.table-fundos {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(17, 0, 54, 0.09);
  border: 1px solid rgba(17, 0, 54, 0.08);
}

.table-fundos .funds-table-caption {
  caption-side: top;
  padding: 12px 16px;
  font-family: 'Verdana Normal';
  font-size: 12px;
  color: #5d5a72;
  text-align: left;
}

.table-fundos thead {
  background: linear-gradient(180deg, #f3f5ff 0%, #e9edff 100%);
}

.table-fundos th {
  font-family: 'Verdana Bold';
  color: #110036;
  border-bottom: 2px solid rgba(17, 0, 54, 0.1);
  padding: 14px 10px;
  vertical-align: middle;
  white-space: normal;
  line-height: 1.2;
}

.table-fundos td {
  vertical-align: middle;
  padding: 12px 10px;
  border-color: rgba(17, 0, 54, 0.06);
}

.table-fundos .fund-link {
  color: #110036;
}

.table-fundos .fund-link:hover {
  text-decoration: underline;
}

.table-fundos tbody tr:nth-child(even) {
  background: rgba(17, 0, 54, 0.02);
}

.table-fundos tbody tr:last-child td {
  border-bottom: none;
}

.funds-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.funds-metric-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Verdana Bold';
  color: #110036;
}

.funds-metric-line small {
  font-family: 'Verdana Normal';
  font-size: 11px;
  text-transform: uppercase;
  color: #110036;
  letter-spacing: 0.04em;
}

.funds-metric-line.is-benchmark {
  color: #5d5a72;
}

.funds-metric-line.is-benchmark small {
  color: #5d5a72;
}

.funds-metric-value {
  font-size: 14px;
  line-height: 1.3;
}

/* Página Fundo */

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

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

#graficoFundo,
.fundo-chart {
  width: 100%;
  min-height: 320px;
  height: 320px;
  background: linear-gradient(180deg, #fbfbff 0%, #f3f1ff 100%);
  border-radius: 20px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  padding: 8px;
}

@media (min-width: 768px) {
  #graficoFundo,
  .fundo-chart {
    min-height: 420px;
    height: 420px;
  }
}

.fundo-chart--ready {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

#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-wrapper {
  width: 100%;
  border: 1px solid rgba(17, 0, 54, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  padding: 8px 10px 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(17, 0, 54, 0.08);
}

.rentabilidade-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
}

.rentabilidade-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.rentabilidade-row--header {
  background: linear-gradient(180deg, #f3f5ff 0%, #e9edff 100%);
}

.rentabilidade-row--data:nth-child(even) .rentabilidade-cell {
  background: #fbfcff;
}

.rentabilidade-row--data .rentabilidade-cell {
  background: #fff;
}

.rentabilidade-cell {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(17, 0, 54, 0.06);
  border-bottom: 1px solid rgba(17, 0, 54, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.rentabilidade-row--header .rentabilidade-cell {
  font-weight: bold;
  border-bottom: 2px solid rgba(17, 0, 54, 0.15);
}

.rentabilidade-cell:last-child {
  border-right: none;
}

.rentabilidade-cell--label {
  font-family: 'Verdana Bold';
  color: #110036;
  flex: 0 0 150px;
  white-space: nowrap;
  align-items: flex-start;
  background: linear-gradient(180deg, #f6f7ff 0%, #eef1ff 100%);
  border-right: 1px solid rgba(17, 0, 54, 0.08);
}

.rentabilidade-label-benchmark {
  font-family: 'Verdana Normal';
  font-size: 12px;
  color: #5d5a72;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rentabilidade-cell--summary {
  background: #eef2ff;
  font-family: 'Verdana Bold';
  flex: 0 0 130px;
}

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

.rentabilidade-line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rentabilidade-line small {
  font-size: 11px;
  text-transform: uppercase;
  color: #110036;
}

.rentabilidade-line.is-benchmark small {
  color: #5d5a72;
}

.rentabilidade-line.is-benchmark .rentabilidade-valor {
  color: #5d5a72;
}

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

.rentabilidade-valor {
  line-height: 1.3;
}

.rentabilidade-row--header .rentabilidade-cell:first-child {
  border-top-left-radius: 12px;
}

.rentabilidade-row--header .rentabilidade-cell:last-child {
  border-top-right-radius: 12px;
}

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

.rentabilidade-row:last-child .rentabilidade-cell:first-child {
  border-bottom-left-radius: 12px;
}

.rentabilidade-row:last-child .rentabilidade-cell:last-child {
  border-bottom-right-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100% - 32px));
  background: rgba(5, 1, 17, 0.95);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1050;
}

.cookie-banner h3 {
  margin-top: 0;
  color: #e8c547;
  font-size: 1.1rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cookie-banner .btn-fundos {
  background-color: #e8c547;
  border-color: #e8c547;
  color: #110036;
  font-family: 'Verdana Bold';
}

.cookie-banner .btn-fundos:hover,
.cookie-banner .btn-fundos:focus {
  background-color: #d6b63e;
  border-color: #d6b63e;
  color: #0b0024;
}

.cookie-banner.d-none,
.cookie-banner.cookie-banner--hidden {
  display: none !important;
}

.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;
  }
}

.htmx-indicator {
  display: none;
  font-size: 14px;
  color: #110036;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.htmx-indicator.htmx-request {
  display: inline-flex;
}

/* 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-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.button-midia-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.button-midia-row label.btn-midia {
  margin: 0;
  cursor: pointer;
}

.button-midia-row input[type="radio"]:checked + label.btn-midia {
  color: #fff;
  background-color: #110036;
}

.filters-row {
  width: 100%;
}

.filters-row .search-input {
  flex: 1;
  min-width: 220px;
}

.filters-row .search-input input {
  width: 100%;
  border: 1px solid #110036;
  border-radius: 20px;
  padding: 10px 16px;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
}

.filters-row .search-input input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17, 0, 54, 0.15);
}

.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-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(17, 0, 54, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100%;
}

.midia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px rgba(17, 0, 54, 0.18);
}

.midia-thumb {
  position: relative;
  height: clamp(180px, 30vw, 230px);
  background-color: #110036;
  overflow: hidden;
}

.midia-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.midia-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(17, 0, 54, 0.9);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.midia-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.midia-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.midia-category {
  background: #e8c547;
  color: #110036;
  border-radius: 999px;
  padding: 4px 12px;
  font-family: 'Verdana Bold';
}

.midia-date-text {
  color: #6b6b85;
  font-family: 'Verdana Bold';
}

.midia-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #110036;
}

.midia-card h3 a {
  color: inherit;
  text-decoration: none;
}

.midia-card p {
  color: #4c4c64;
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.midia-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Verdana Bold';
  text-transform: uppercase;
  color: #110036;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
}

.midia-link i {
  color: #e8c547;
  transition: transform 0.3s ease;
}

.midia-link:hover {
  color: #e8c547;
}

.midia-link:hover i {
  transform: translateX(4px);
}

.wp-content .wp-block-file {
  margin: 24px 0;
}

.wp-content .wp-block-file__embed--enhanced {
  display: block;
  width: 100%;
  border: none;
  border-radius: 16px;
  margin: 16px 0;
  background: #f5f7fb;
  min-height: 420px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Verdana Bold';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #110036;
  text-decoration: none;
  margin-bottom: 24px;
}

.back-link i {
  color: #e8c547;
}

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

.media-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .media-nav {
    flex-direction: row;
  }
}

.media-nav-link {
  flex: 1;
  border: 1px solid rgba(17, 0, 54, 0.12);
  border-radius: 18px;
  padding: 20px 24px;
  text-decoration: none;
  color: #110036;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 120px;
}

.media-nav-link span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b85;
  margin-bottom: 6px;
}

.media-nav-link strong {
  font-size: 18px;
  font-family: 'Verdana Bold';
  line-height: 1.4;
}

.media-nav-link:hover {
  border-color: #e8c547;
  box-shadow: 0 25px 45px rgba(17, 0, 54, 0.15);
  transform: translateY(-3px);
}

#media-navigation {
  padding: 24px 16px 64px;
}

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

.media-detail-hero {
  padding: 0 16px 32px;
}

.media-detail-hero .container {
  max-width: 960px;
  margin: 0 auto;
}

.media-detail-hero img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

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

.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.408ce4a99bf7.svg");
  background-position: 45%;
}

.swiper-library .swiper-button-next {
  background-image: url("../../assets/img/arrow_midia_right.0fc93de0a952.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;
}
.header-locale {
  margin-left: auto;
}

.locale-compass {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 120px;
  justify-content: space-between;
}

.locale-pill .locale-compass {
  background: rgba(232, 197, 71, 0.1);
  border-color: rgba(17, 0, 54, 0.1);
}

.locale-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13px;
  font-family: 'Verdana Bold';
  color: #110036;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.locale-chip.active {
  background: #e8c547;
  color: #110036;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.locale-chip:hover {
  background: #fff;
}
#content-fundo .fundo-chart-panel {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 45px rgba(17, 0, 54, 0.1);
  border: 1px solid rgba(17, 0, 54, 0.08);
}

.fund-updated-label {
  margin-top: 12px;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #5d5a72;
  text-align: center;
}

.section-updated {
  margin-top: -20px;
  margin-bottom: 24px;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #5d5a72;
  text-align: center;
}

.fund-summary-card,
.fund-range-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(17, 0, 54, 0.08);
}

.fund-summary-card h3,
.fund-range-card h3 {
  font-family: 'Verdana Bold';
  font-size: 18px;
  color: #110036;
  margin-bottom: 16px;
}

.fund-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fund-summary-list li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #4c4c64;
  border-bottom: 1px solid rgba(17, 0, 54, 0.08);
  padding-bottom: 8px;
}

.fund-summary-list li:last-child {
  border-bottom: none;
}

.fund-summary-list strong {
  font-family: 'Verdana Bold';
  color: #110036;
}

.fund-range-form .form-label {
  font-size: 13px;
  color: #4c4c64;
  text-transform: uppercase;
}

.fund-range-result {
  font-size: 14px;
  background: #faf8ff;
  border-radius: 12px;
  padding: 16px;
  border: 1px dashed rgba(17, 0, 54, 0.2);
}

.fund-range-result table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.fund-range-result .range-period {
  font-family: 'Verdana Bold';
  color: #110036;
  margin-bottom: 8px;
}

.fund-range-result th,
.fund-range-result td {
  padding: 6px 0;
  font-size: 13px;
}

.fund-range-result th {
  text-align: left;
  color: #4c4c64;
  font-weight: 600;
}

.fund-range-result td {
  text-align: right;
  font-family: 'Verdana Bold';
  color: #110036;
}

.fund-range-result.active {
  border-style: solid;
  background: #fff;
}

.latest-returns-table {
  width: 100%;
  border: 1px solid rgba(17, 0, 54, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.latest-returns-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  font-size: 15px;
  color: #110036;
}

.latest-returns-header {
  background: #f5f6fb;
  font-family: 'Verdana Bold';
  text-transform: uppercase;
  font-size: 13px;
}

.latest-returns-row > div {
  padding: 16px 20px;
  border-right: 1px solid rgba(17, 0, 54, 0.08);
}

.latest-returns-row > div:last-child {
  border-right: none;
}

.latest-returns-row:not(.latest-returns-header) > div {
  font-family: 'Verdana Bold';
}

@media (max-width: 575px) {
  .latest-returns-row {
    grid-template-columns: 1fr;
  }
  .latest-returns-row > div {
    border-right: none;
    border-bottom: 1px solid rgba(17, 0, 54, 0.08);
  }
  .latest-returns-row > div:last-child {
    border-bottom: none;
  }
}

.fund-range-card.is-floating {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(360px, calc(100% - 48px));
  z-index: 10;
  border-width: 2px;
}

@media (max-width: 991px) {
  .fund-range-card.is-floating {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
}

.eyebrow {
  font-family: 'Verdana Bold';
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8c547;
  display: inline-block;
  margin-bottom: 8px;
}

#linha-do-tempo {
  width: 100%;
  padding: 64px 16px;
  background: #f5f6fb;
}

@media (min-width: 992px) {
  #linha-do-tempo {
    padding: 96px 48px;
  }
}

#linha-do-tempo .timeline-head {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.timeline-chart-card {
  background: transparent;
  border-radius: 12px;
  padding: 10px 8px;
  border: none;
  box-shadow: none;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-chart-card {
    padding: 12px 10px;
  }
}

.timeline-chart {
  width: 100%;
  min-height: 520px;
}

#timeline-chart-empty {
  padding: 24px;
  text-align: center;
  color: #4c4c64;
  font-size: 14px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.timeline-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  box-shadow: 0 16px 32px rgba(17, 0, 54, 0.08);
  transition: all 0.25s ease;
}

.timeline-marker {
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-year {
  font-family: 'Verdana Bold';
  font-size: 18px;
  color: #110036;
}

.timeline-tag {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(232, 197, 71, 0.18);
  color: #110036;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.timeline-line {
  width: 3px;
  flex: 1;
  margin-top: 12px;
  background: linear-gradient(180deg, #e8c547, rgba(17, 0, 54, 0.1));
  border-radius: 10px;
}

.timeline-body h3 {
  font-family: 'Verdana Bold';
  font-size: 18px;
  color: #110036;
  margin-bottom: 8px;
}

.timeline-body p {
  margin: 0;
  color: #4c4c64;
  line-height: 1.6;
}

.timeline-card.is-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(17, 0, 54, 0.12);
}

#porque-encore {
  width: 100%;
  padding: 72px 16px 48px;
  background: #fff;
}

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

#porque-encore .because-intro {
  max-width: 760px;
  margin: 0 auto 32px;
}

.why-card {
  height: 100%;
  background: #f9f7ff;
  border-radius: 16px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  padding: 20px;
  box-shadow: 0 16px 32px rgba(17, 0, 54, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(232, 197, 71, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-icon img {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: 'Verdana Bold';
  color: #110036;
  font-size: 18px;
  margin: 0;
}

.why-card p {
  margin: 0;
  color: #4c4c64;
  line-height: 1.6;
}

.why-cta {
  text-align: center;
  margin-top: 32px;
}

#glossario {
  width: 100%;
  padding: 80px 16px;
  background: #110036;
  color: #fff;
}

@media (min-width: 992px) {
  #glossario {
    padding: 100px 48px;
  }
}

#glossario .glossary-head {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

#glossario .glossary-head .title {
  color: #e8c547;
}

#glossario .glossary-head .subtitle2 {
  color: #fff;
}

.glossary-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .glossary-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.glossary-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 197, 71, 0.3);
  border-radius: 14px;
  flex: 1;
}

.glossary-search i {
  color: #e8c547;
}

.glossary-search input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
}

.glossary-search input:focus {
  outline: none;
}

.glossary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip,
.prompt-chip {
  border: 1px solid rgba(232, 197, 71, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(232, 197, 71, 0.1);
  color: #e8c547;
  font-family: 'Verdana Bold';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.tag-chip.active,
.prompt-chip:hover {
  background: #e8c547;
  color: #110036;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.glossary-card {
  background: #fff;
  color: #110036;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(232, 197, 71, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.glossary-card h3 {
  font-family: 'Verdana Bold';
  margin: 0;
  font-size: 18px;
}

.glossary-card p {
  margin: 0;
  color: #4c4c64;
  line-height: 1.6;
}

.glossary-card__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: #e8c547;
  color: #110036;
  font-family: 'Verdana Bold';
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glossary-empty {
  margin-top: 12px;
  text-align: center;
  color: #e8c547;
  font-family: 'Verdana Bold';
}

#faq-chat {
  width: 100%;
  padding: 64px 16px;
  background: #f5f6fb;
}

@media (min-width: 992px) {
  #faq-chat {
    padding: 80px 48px;
  }
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  box-shadow: 0 12px 24px rgba(17, 0, 54, 0.08);
}

.faq-search input {
  border: none;
  flex: 1;
  font-size: 14px;
}

.faq-search input:focus {
  outline: none;
}

.faq-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.prompt-chip {
  background: #fff;
  color: #110036;
  border-color: rgba(17, 0, 54, 0.2);
}

.prompt-chip:hover {
  background: #110036;
  color: #e8c547;
  border-color: #110036;
}

.faq-cta-card {
  background: #110036;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 22px 40px rgba(17, 0, 54, 0.35);
}

.faq-cta-card h3 {
  font-family: 'Verdana Bold';
  margin-bottom: 8px;
}

.faq-cta-card p {
  color: #f0eaff;
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 576px) {
  .faq-cta-actions {
    flex-direction: row;
    align-items: center;
  }
}

.faq-email {
  color: #e8c547;
  font-family: 'Verdana Bold';
}

.faq-email:hover {
  color: #fff;
}

.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  box-shadow: 0 12px 24px rgba(17, 0, 54, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: transparent;
  border: none;
  font-family: 'Verdana Bold';
  color: #110036;
}

.faq-question i {
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 16px 16px;
  color: #4c4c64;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-empty {
  text-align: center;
  color: #110036;
  font-family: 'Verdana Bold';
  margin-top: 12px;
}

#calculadora-rendimento {
  margin: 24px 0 8px;
}

.yield-calculator .calc-card {
  height: 100%;
  background: linear-gradient(140deg, #110036, #20075a);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 22px 48px rgba(17, 0, 54, 0.3);
}

.yield-calculator .calc-card .title {
  color: #e8c547;
  padding-bottom: 12px;
}

.yield-calculator .calc-card .subtitle2 {
  color: #f0eaff;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 576px) {
  .calc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.calc-field span {
  color: #e8c547;
  font-family: 'Verdana Bold';
}

.calc-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.calc-field input:focus {
  outline: 2px solid rgba(232, 197, 71, 0.8);
}

.calc-result {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 22px 48px rgba(17, 0, 54, 0.12);
  border: 1px solid rgba(17, 0, 54, 0.08);
}

.result-head h4 {
  font-family: 'Verdana Bold';
  color: #110036;
}

.result-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 0, 54, 0.08);
  background: #f7f7fb;
}

.result-row--highlight {
  background: #e8c547;
  border-color: #e8c547;
}

.result-row--highlight .result-label,
.result-row--highlight small {
  color: #110036;
}

.result-label {
  font-family: 'Verdana Bold';
  color: #110036;
  display: block;
}

.result-row strong {
  font-family: 'Verdana Bold';
  font-size: 20px;
  color: #110036;
}

.result-row small {
  display: block;
  color: #4c4c64;
}

.result-disclaimer {
  font-size: 12px;
  color: #4c4c64;
  margin-bottom: 12px;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Verdana Bold';
  color: #110036;
  text-decoration: none;
}

.result-cta:hover {
  text-decoration: underline;
}

.result-cta.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  text-decoration: none;
}
