* {
  outline: none;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Avenir";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 90%;
}
@media (max-width: 768px) {
  body, html {
    zoom: normal;
  }
}

ul {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  -moz-margin-before: 0px;
  -moz-margin-after: 0px;
  -moz-margin-start: 0px;
  -moz-margin-end: 0px;
  -moz-padding-start: 0px;
}

a {
  text-decoration: none;
}

p {
  font-family: "Avenir";
  font-size: 20px;
  color: #000;
  line-height: 30px;
}
@media (max-width: 768px) {
  p {
    font-size: 12px;
    line-height: normal;
  }
}

strong {
  font-family: "AvenirHeavy";
}

::selection {
  background: #262626;
  color: #fff;
}

::-moz-selection {
  background: #262626;
  color: #fff;
}

h1, h2, h3, h4 {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
}

.btn {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  background: #002759;
  display: flex;
  height: 46px;
  justify-content: flex-end;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #C89116;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .btn {
    font-size: 12px;
  }
}
.btn img {
  padding-left: 16px;
}
@media (max-width: 768px) {
  .btn img {
    padding-left: 4px;
  }
}

.btn:hover {
  color: #C89116;
  transition: 0.4s;
}

h2 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #000;
}
@media (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}
h2 span {
  color: #fd7e25;
}

.center-box {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .center-box {
    width: 100%;
    margin: 0;
    padding: 0 16px;
  }
}

header {
  width: 100%;
  height: 86px;
  background: rgba(0, 39, 89, 0.7);
  backdrop-filter: blur(5px);
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: space-between;
  z-index: 9;
}
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 16px 0;
    transition: 0.4s;
    position: fixed;
    z-index: 9;
  }
}
header .box {
  width: 100%;
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  header .box {
    display: block;
    height: auto;
  }
}
@media (max-width: 768px) {
  header .box .logo {
    height: 10px;
    float: left;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  header .menu {
    display: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  header .menu ul {
    width: 100%;
    float: left;
    margin-top: 32px;
  }
}
header .menu ul li {
  list-style: none;
  float: left;
  margin-left: 49px;
  font-size: 16px;
  position: relative;
}
@media (max-width: 768px) {
  header .menu ul li {
    width: 100%;
    float: left;
    margin-left: 0px;
    border-bottom: 1px solid #C89116;
    padding: 20px 0;
  }
}
header .menu ul li a {
  color: #fff;
  display: inline-block;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0);
}
@media (max-width: 768px) {
  header .menu ul li a {
    font-size: 16px;
  }
}
header .menu ul li .submenu-icon {
  display: none;
}
header .menu ul li ul {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -110px;
  top: 16px;
  width: 220px;
  padding-top: 36px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
header .menu ul li ul li {
  width: 100%;
  margin: 0px;
  padding: 20px 15px;
  background: rgba(0, 39, 89, 0.7);
  border-bottom: 1px solid #C89116;
  text-align: center;
}
header .menu ul li ul li a {
  font-size: 16px;
  -webkit-text-stroke: 0px rgb(255, 255, 255) !important;
}
header .menu ul li ul li:hover a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255) !important;
}
header .menu ul li ul li:last-child {
  border: 0px;
}
header .menu ul li:last-child {
  border: 0px;
}
header .menu ul li:hover a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255);
  transform: scale(1.02);
}
header .menu ul .current-menu-item a, header .menu ul .current-menu-ancestor a, header .menu ul .current_page_item a, header .menu ul .sub-menu .current_page_item a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255);
  transform: scale(1.02);
}
header .menu ul .sub-menu .current_page_item a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255) !important;
  transform: scale(1.02);
}
header .menu ul li:hover ul {
  display: block;
}
header .ico-menu {
  display: none;
}
@media (max-width: 768px) {
  header .ico-menu {
    display: block;
    float: right;
    margin-top: 0px;
  }
}

.open {
  height: 100%;
  transition: 0.4s;
}

.menu-mobile {
  display: none;
}
@media (max-width: 768px) {
  .menu-mobile {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 39, 89, 0.7);
    backdrop-filter: blur(5px);
    position: fixed;
    left: 100%;
    top: 0px;
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    transition: 0.4s;
    position: fixed;
    z-index: 9;
  }
}
.menu-mobile .center-box {
  width: 100%;
  margin: 0px;
  padding: 0 32px;
}
.menu-mobile .box {
  width: 100%;
  height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .menu-mobile .box {
    display: block;
    height: auto;
  }
}
@media (max-width: 768px) {
  .menu-mobile .box .logo {
    height: 10px;
    float: left;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .menu-mobile .menu {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .menu-mobile .menu ul {
    width: 100%;
    float: left;
    margin-top: 32px;
  }
}
.menu-mobile .menu ul li {
  list-style: none;
  float: left;
  margin-left: 94px;
  font-size: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .menu-mobile .menu ul li {
    width: 100%;
    float: left;
    margin-left: 0px;
    border-bottom: 1px solid #C89116;
  }
}
.menu-mobile .menu ul li a {
  color: #fff;
  display: inline-block;
  position: relative;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0);
}
@media (max-width: 768px) {
  .menu-mobile .menu ul li a {
    font-size: 16px;
    padding: 20px 0;
    width: 100%;
  }
}
.menu-mobile .menu ul li a .menu-text {
  display: inline;
}
@media (max-width: 768px) {
  .menu-mobile .menu ul li ul {
    width: 100%;
    margin-top: 0px;
    display: none;
  }
}
@media (max-width: 768px) {
  .menu-mobile .menu ul li ul li {
    border-bottom: 0px;
    position: relative;
  }
}
.menu-mobile .menu ul li ul li a {
  font-size: 16px;
  padding: 12px 0;
  -webkit-text-stroke: 0px rgb(255, 255, 255) !important;
}
.menu-mobile .menu ul li ul li:first-child a {
  padding-top: 5px;
}
.menu-mobile .menu ul li ul li:last-child a {
  padding-bottom: 20px;
}
.menu-mobile .menu ul .menu-item-has-children > a > .menu-text:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../../imagens/chevron-down.svg") no-repeat top center;
  position: absolute;
  top: 16px;
  margin-left: 8px;
  display: inline-block;
}
.menu-mobile .menu ul li:last-child {
  border: 0px;
}
.menu-mobile .menu ul .current-menu-item a, .menu-mobile .menu ul .current-menu-ancestor a, .menu-mobile .menu ul .current_page_item a, .menu-mobile .menu ul .sub-menu .current_page_item a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255);
  transform: scale(1.02);
}
.menu-mobile .menu ul .sub-menu .current_page_item a {
  -webkit-text-stroke: 0.5px rgb(255, 255, 255) !important;
  transform: scale(1.02);
}
.menu-mobile .menu ul.menu .menu-item.menu-item-has-children.open > .sub-menu {
  display: block;
}
.menu-mobile .menu ul.menu .menu-item.menu-item-has-children.open > a > .menu-text:after {
  transform: rotate(180deg);
}
.menu-mobile .fecha-menu {
  float: right;
  margin-top: 6px;
}

.banner {
  width: 100%;
  height: 954px;
  float: left;
  background: linear-gradient(180deg, rgba(3, 34, 80, 0.2) 0%, rgba(3, 34, 80, 0.6) 70%, rgba(3, 34, 80, 0.8) 100%), url("../../imagens/banner.jpg") lightgray 50%/cover no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .banner {
    height: 485px;
    background: linear-gradient(180deg, rgba(3, 34, 80, 0.2) 0%, rgba(3, 34, 80, 0.6) 70%, rgba(3, 34, 80, 0.8) 100%), url("../../imagens/banner-mobile.jpg") lightgray 50%/cover no-repeat;
  }
}
.banner .box-text {
  margin-top: 537px;
}
@media (max-width: 768px) {
  .banner .box-text {
    margin-top: 325px;
    padding: 0 0 0 16px;
  }
}
.banner .box-text h2 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #fff;
}
@media (max-width: 768px) {
  .banner .box-text h2 {
    font-size: 16px;
  }
}
.banner .box-text .desc {
  margin: 64px 0 0 128px;
  font-size: 24px;
  color: #fff;
  width: 630px;
}
@media (max-width: 768px) {
  .banner .box-text .desc {
    margin: 16px 0 0 30px;
    font-size: 12px;
    width: 222px;
  }
}
.banner .box-text .word {
  min-height: 48px;
  color: #E3B347;
}
@media (max-width: 768px) {
  .banner .box-text .word {
    min-height: 19px;
    height: 19px;
    width: 100%;
  }
}

.quem-somos-home {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .quem-somos-home {
    padding: 64px 0;
  }
}
.quem-somos-home h2 {
  text-align: right;
}
.quem-somos-home .box-title {
  display: flex;
  align-items: center;
  margin: 64px 0;
}
@media (max-width: 768px) {
  .quem-somos-home .box-title {
    margin: 32px 0;
  }
}
.quem-somos-home .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-left: 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .quem-somos-home .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.quem-somos-home .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.quem-somos-home .box-img {
  width: 481px;
  height: 295px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .quem-somos-home .box-img {
    width: 100%;
    height: 50vw;
  }
}
.quem-somos-home .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quem-somos-home .box-text {
  width: 678px;
  float: left;
  padding-left: 64px;
}
@media (max-width: 768px) {
  .quem-somos-home .box-text {
    width: 100%;
    margin-top: 16px;
    text-align: center;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.quem-somos-home .box-text h3 {
  font-family: "AvenirHeavy";
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .quem-somos-home .box-text h3 {
    font-size: 12px;
    line-height: normal;
  }
}
.quem-somos-home .box-text h3 span {
  color: #C89116;
}
.quem-somos-home .box-text .btn {
  float: right;
}

.servicos-home {
  width: 100%;
  float: left;
  background: #2D4E7A;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .servicos-home {
    padding: 64px 0;
    overflow: hidden;
  }
}
.servicos-home h2 {
  color: #fff;
  float: left;
}
@media (max-width: 768px) {
  .servicos-home h2 br {
    display: none;
  }
}
.servicos-home .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .servicos-home .desc {
    width: 100%;
    margin-top: 16px;
  }
}
.servicos-home .desc p {
  font-size: 24px;
  color: #fff;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .servicos-home .desc p {
    font-size: 12px;
  }
}
.servicos-home .box-title {
  display: flex;
  align-items: center;
  margin: 64px 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .servicos-home .box-title {
    margin: 32px 0;
  }
}
.servicos-home .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .servicos-home .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.servicos-home .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #F2F2F2;
}
.servicos-home .servicos-slick {
  width: 100%;
  float: left;
  margin-top: 105px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick {
    width: 106%;
    margin-top: 0px;
  }
}
.servicos-home .servicos-slick .servico {
  height: 516px;
  padding: 16px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #fff;
  float: left;
  position: relative;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico {
    height: 316px;
  }
}
.servicos-home .servicos-slick .servico .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .box-img {
    height: 38vw;
  }
}
.servicos-home .servicos-slick .servico .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #002759;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .title {
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .title br {
    display: none;
  }
}
.servicos-home .servicos-slick .servico .text {
  width: 100%;
  float: left;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .text {
    margin-top: 8px;
  }
}
.servicos-home .servicos-slick .servico .text p {
  font-size: 16px;
  text-align: center;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .text p {
    font-size: 12px;
    line-height: normal;
  }
}
.servicos-home .servicos-slick .servico .box-btn {
  width: 100%;
  float: left;
  display: flex;
  justify-content: end;
  margin-top: 24px;
  padding-right: 16px;
  position: absolute;
  left: 0px;
  bottom: 24px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .servico .box-btn {
    padding-right: 0px;
    bottom: 16px;
    justify-content: center;
  }
}
.servicos-home .servicos-slick .servico .box-btn a {
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
}
.servicos-home .servicos-slick .servico .box-btn a .icon {
  width: 16px;
  margin-left: 8px;
}
.servicos-home .servicos-slick .servico .box-btn a:hover {
  font-family: "AvenirHeavy";
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .owl-item:nth-child(4) .servico .box-img {
    background-position: bottom center !important;
  }
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .owl-stage {
    padding-left: 0px !important;
  }
}
.servicos-home .servicos-slick .owl-nav {
  position: absolute;
  left: 0px;
  top: -119px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .servicos-home .servicos-slick .owl-nav {
    display: none;
  }
}
.servicos-home .servicos-slick .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow.png") no-repeat top center !important;
  border: 1px solid transparent;
  border-radius: 4px !important;
  transform: rotate(180deg);
  margin: 0px !important;
  padding: 0px !important;
}
.servicos-home .servicos-slick .owl-prev:hover {
  border: 1px solid #fff;
}
.servicos-home .servicos-slick .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow.png") no-repeat top center !important;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.servicos-home .servicos-slick .owl-next:hover {
  border: 1px solid #fff;
}
.servicos-home .servicos-slick .owl-nav .disabled {
  border: 1px solid transparent;
}

.nossos-numeros {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .nossos-numeros {
    padding: 64px 0;
  }
}
.nossos-numeros .box-title {
  display: flex;
  align-items: center;
}
.nossos-numeros .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .nossos-numeros .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.nossos-numeros .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.nossos-numeros .numeros {
  width: 100%;
  float: left;
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros {
    display: block;
    margin-top: 32px;
  }
}
.nossos-numeros .numeros .box {
  width: 357px;
  height: 318px;
  background: #002759;
  border-radius: 16px;
  border: 1px solid #C89116;
  padding: 32px;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    padding: 18px;
    height: auto;
  }
}
.nossos-numeros .numeros .box .text-numero {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 64px;
  color: #C89116;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box .text-numero {
    font-size: 48px;
  }
}
.nossos-numeros .numeros .box .desc {
  width: 100%;
  float: left;
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box .desc {
    margin-bottom: 0px;
  }
}
.nossos-numeros .numeros .box .desc p {
  color: #fff;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box .desc p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box hr {
    display: none;
  }
}
.nossos-numeros .numeros .box .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box .text {
    border-left: 1px solid #fff;
    padding: 0 0 0 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
  }
}
.nossos-numeros .numeros .box .text p {
  color: #fff;
  font-size: 16px;
  line-height: initial;
  margin-block-start: 10px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .nossos-numeros .numeros .box .text p {
    font-size: 12px;
    margin-block-start: 0px;
  }
}

.clientes {
  width: 100%;
  float: left;
  background: url("../../imagens/clientes-bg.jpg") #002759 no-repeat top center;
  background-size: cover;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .clientes {
    padding: 64px 0;
    overflow: hidden;
  }
}
.clientes h2 {
  color: #fff;
  float: left;
}
@media (max-width: 768px) {
  .clientes h2 {
    text-align: center;
    width: 100%;
  }
}
.clientes .box {
  width: 100%;
  float: left;
  padding: 32px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 78px;
  position: relative;
}
@media (max-width: 768px) {
  .clientes .box {
    margin-top: 32px;
  }
}
.clientes .box .title {
  font-family: "AvenirMedium";
  letter-spacing: 4px;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  background: #071536;
  padding: 0 15px;
  position: absolute;
  left: 50%;
  margin: 0 0 0 -600px;
  top: -10px;
}
@media (max-width: 768px) {
  .clientes .box .title {
    margin: 3px 0 0 -117px;
    font-size: 12px;
    letter-spacing: normal;
  }
}
.clientes .clientes-slick {
  width: 100%;
  float: left;
}
.clientes .clientes-slick .item {
  width: 173px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  margin: 0 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .clientes .clientes-slick .item {
    margin: 0 5px;
    height: 54px;
  }
}
.clientes .clientes-slick .item img {
  max-width: 100%;
}

.contato {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .contato {
    padding: 64px 0;
  }
}
.contato .box-form {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #C89116;
  background: url("../../imagens/bg-fale-conosco.png") no-repeat top center;
  background-size: cover;
  padding: 32px;
  float: left;
}
@media (max-width: 768px) {
  .contato .box-form {
    height: auto;
    float: left;
  }
}
.contato .box-form .box-text {
  width: 282px;
  float: left;
}
@media (max-width: 768px) {
  .contato .box-form .box-text {
    width: 100%;
  }
}
.contato .box-form .box-text .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  line-height: 30px;
}
@media (max-width: 768px) {
  .contato .box-form .box-text .title {
    font-size: 16px;
    line-height: normal;
  }
}
.contato .box-form .box-text .text {
  width: 100%;
  float: left;
  border-bottom: 1px solid #C89116;
}
.contato .box-form .box-text .text p {
  font-size: 16px;
  line-height: initial;
  color: #fff;
}
@media (max-width: 768px) {
  .contato .box-form .box-text .text p {
    font-size: 12px;
  }
}
.contato .box-form form {
  width: 790px;
  float: right;
  position: relative;
}
@media (max-width: 768px) {
  .contato .box-form form {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.contato .box-form form .input {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 24px;
}
.contato .box-form form .input label {
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 12px;
  color: #fff;
}
.contato .box-form form input[type=text], .contato .box-form form input[type=email] {
  width: 100%;
  height: 64px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid rgba(242, 242, 242, 0.5);
  background: rgba(242, 242, 242, 0.2);
  padding: 9px 16px 0 16px;
  color: #fff;
  font-size: 20px;
  font-family: "Avenir";
  transition: 0.4s;
}
.contato .box-form form input[type=text]:hover, .contato .box-form form input[type=email]:hover, .contato .box-form form input[type=text]:focus, .contato .box-form form input[type=email]:focus {
  border: 0.5px solid rgb(242, 242, 242);
  transition: 0.4s;
}
.contato .box-form form textarea {
  width: 100%;
  height: 162px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid rgba(242, 242, 242, 0.5);
  background: rgba(242, 242, 242, 0.2);
  padding: 24px 16px 26px 16px;
  color: #fff;
  font-size: 20px;
  font-family: "Avenir";
  transition: 0.4s;
}
.contato .box-form form textarea:hover, .contato .box-form form textarea:focus {
  border: 0.5px solid rgb(242, 242, 242);
  transition: 0.4s;
}
.contato .box-form form .box-btn {
  position: relative;
  float: right;
}
.contato .box-form form input[type=submit] {
  font-family: "Avenir";
  font-size: 20px;
  color: #002759;
  line-height: 30px;
  background: url("../../imagens/arrow_btn.svg") #fff no-repeat 88px 14px;
  height: 46px;
  padding: 0 45px 0 16px;
  border-radius: 8px;
  border: 1px solid #C89116;
  float: right;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .contato .box-form form input[type=submit] {
    font-size: 12px;
    background: url("../../imagens/arrow_btn.svg") #fff no-repeat 56px 14px;
    padding: 0 33px 0 16px;
  }
}
.contato .box-form form input[type=submit] img {
  padding-left: 16px;
}
.contato .box-form form input[type=submit]:hover {
  color: #C89116;
  transition: 0.4s;
}
.contato .wpcf7-response-output {
  color: #fff;
  margin: 2em 0px 1em !important;
  float: left;
  width: 100%;
}
.contato .wpcf7-spinner {
  position: absolute;
  left: -30px;
  bottom: 10px;
  margin: 0px;
}

footer {
  width: 100%;
  padding: 48px 0;
  float: left;
  background: #002759;
}
footer .box {
  width: 100%;
  float: left;
  padding: 0 0 32px 0;
  border-bottom: 1px solid rgba(200, 145, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .box .logo {
  margin-top: 7px;
}
@media (max-width: 768px) {
  footer .box .logo {
    width: 192px;
  }
}
footer .box .redes {
  float: right;
}
@media (max-width: 768px) {
  footer .box .redes {
    margin-top: 40px;
  }
}
footer .box .redes a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  margin-left: 24px;
}
@media (max-width: 768px) {
  footer .box .redes a {
    margin: 0 16px;
  }
}
footer .box .redes a i {
  color: #002759;
  font-size: 25px;
  display: flex;
}
footer .info {
  width: 100%;
  float: left;
  padding: 32px 0;
}
footer .info .onde-estamos {
  float: left;
  width: 276px;
}
@media (max-width: 768px) {
  footer .info .onde-estamos {
    margin-bottom: 20px;
    width: 50%;
  }
}
footer .info .onde-estamos i {
  color: #fff;
  font-size: 16px;
}
footer .info .onde-estamos .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 16px;
  color: #fff;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  footer .info .onde-estamos .title {
    font-size: 12px;
  }
}
footer .info .onde-estamos p {
  color: #fff;
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 768px) {
  footer .info .onde-estamos p {
    font-size: 12px;
  }
}
footer .info .box-menu {
  float: right;
}
@media (max-width: 768px) {
  footer .info .box-menu {
    float: left;
    width: 50%;
    padding-left: 32px;
  }
}
footer .info .menu {
  float: left;
  margin-left: 32px;
}
@media (max-width: 768px) {
  footer .info .menu {
    margin-left: 0px;
  }
}
footer .info .menu .title {
  font-family: "AvenirHeavy";
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  footer .info .menu .title {
    font-size: 12px;
  }
}
footer .info .menu ul li {
  list-style: none;
  margin-bottom: 8px;
}
footer .info .menu ul li a {
  font-size: 16px;
  color: white;
}
@media (max-width: 768px) {
  footer .info .menu ul li a {
    font-size: 12px;
  }
}
footer .info .menu ul li:hover a {
  color: #C89116;
}
footer .info .menu:nth-child(1), footer .info .menu:nth-child(2) {
  display: block;
}
@media (max-width: 768px) {
  footer .info .menu:nth-child(1), footer .info .menu:nth-child(2) {
    display: none;
  }
}
footer .text-footer {
  width: 100%;
  float: left;
  text-align: center;
  border-top: 1px solid rgba(200, 145, 22, 0.5);
  padding-top: 32px;
}
footer .text-footer .title {
  font-size: 16px;
  color: #fff;
}
footer .text-footer p {
  font-size: 8px;
  color: #fff;
  line-height: 12px;
  letter-spacing: -0.088px;
}

.topo-interna {
  width: 100%;
  height: 954px;
  float: left;
}
@media (max-width: 768px) {
  .topo-interna {
    height: 485px;
    position: relative;
    background-position-x: 58% !important;
  }
}
.topo-interna .box-text {
  width: 548px;
  margin-top: 537px;
}
@media (max-width: 768px) {
  .topo-interna .box-text {
    margin-top: 370px;
    width: 265px;
    position: absolute;
    left: 32px;
    bottom: 32px;
  }
}
.topo-interna .box-text h1 {
  font-family: "AvenirHeavy";
  font-size: 64px;
  color: #fff;
}
@media (max-width: 768px) {
  .topo-interna .box-text h1 {
    font-size: 20px;
  }
}
.topo-interna .box-text .desc {
  font-size: 24px;
  margin: 64px 0 0 105px;
  color: #fff;
}
@media (max-width: 768px) {
  .topo-interna .box-text .desc {
    margin: 16px 0 0 32px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .page-template-sobre-nos-page .box-text {
    width: 326px;
  }
}

@media (max-width: 768px) {
  .page-template-para-voce-page .topo-interna {
    background-position-x: 62% !important;
  }
}

@media (max-width: 768px) {
  .page-template-para-empresas-page .topo-interna {
    background-position-x: center !important;
  }
}

.valores {
  width: 100%;
  float: left;
  background: #F2F2F2;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .valores {
    padding: 64px 0;
  }
}
.valores h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .valores h2 {
    text-align: right;
    width: 100%;
  }
}
.valores .desc {
  width: 560px;
  float: right;
}
@media (max-width: 768px) {
  .valores .desc {
    width: 264px;
    margin-top: 16px;
    text-align: right;
  }
}
.valores .desc p {
  font-size: 24px;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .valores .desc p {
    font-size: 12px;
  }
}
.valores .desc p span {
  color: #C89116;
}
.valores .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.valores .box-title {
  width: 276px;
  height: auto;
  float: left;
  background: #002759;
  padding: 16px;
  border-radius: 8px;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .valores .box-title {
    width: 100%;
    height: auto;
    padding: 0px;
    background: transparent;
    margin-top: 32px;
  }
}
.valores .box-title .title {
  width: 100%;
  float: left;
  font-family: "Avenir";
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .valores .box-title .title {
    font-family: "AvenirMedium";
    font-size: 12px;
    color: #2D4E7A;
    position: relative;
  }
}
@media (max-width: 768px) {
  .valores .box-title .title:after {
    content: "";
    width: 65%;
    height: 1px;
    background: #2D4E7A;
    position: absolute;
    right: 0px;
    top: 6px;
  }
}
.valores .accordion {
  width: 850px;
  float: right;
}
@media (max-width: 768px) {
  .valores .accordion {
    width: 100%;
  }
}
.valores .accordion h3 {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 0.5px solid #2D4E7A;
  font-family: "Avenir";
  font-weight: normal;
  font-size: 24px;
  color: #002759;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .valores .accordion h3 {
    font-size: 16px;
    padding: 8px 16px;
  }
}
.valores .accordion .active, .valores .accordion h3:hover {
  background-color: #002759;
  color: #fff;
  transition: 0.4s;
}
.valores .accordion .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(0, 39, 89, 0.2);
}
.valores .accordion .arrow svg path {
  fill: #2D4E7A;
}
.valores .accordion h3:hover .arrow {
  background: rgba(255, 255, 255, 0.2);
}
.valores .accordion h3:hover .arrow svg path {
  fill: #fff;
}
.valores .accordion .active .arrow {
  background: rgba(255, 255, 255, 0.2);
}
.valores .accordion .active .arrow svg {
  transform: rotateX(180deg);
}
.valores .accordion .active .arrow svg path {
  fill: #fff;
}
.valores .accordion .active .arrow i {
  transform: rotate(180deg);
}
.valores .accordion .content {
  width: 100%;
  float: left;
  padding: 0 16px;
  display: none;
}
.valores .accordion .content p {
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 768px) {
  .valores .accordion .content p {
    font-size: 12px;
  }
}
.valores .accordion .content:last-child p {
  margin-block-end: 0px;
}

.time-B8 {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .time-B8 {
    padding: 64px 0 32px 0;
  }
}
.time-B8 .box-title {
  display: flex;
  align-items: center;
}
.time-B8 .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .time-B8 .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.time-B8 .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.time-B8 h3 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  width: 100%;
  float: left;
  text-align: center;
  padding: 64px 0;
  color: #303030;
}
@media (max-width: 768px) {
  .time-B8 h3 {
    font-size: 16px;
    padding: 32px 0;
  }
}
.time-B8 .box-equipe {
  width: 100%;
  float: left;
  margin-bottom: 49px;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe {
    margin-bottom: 32px;
  }
}
.time-B8 .box-equipe .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #002759;
  line-height: normal;
  text-align: center;
  padding: 0 0 32px 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe .title {
    font-size: 12px;
    padding: 0 0 24px 0;
  }
}
.time-B8 .box-equipe ul {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    gap: 14px;
  }
}
.time-B8 .box-equipe ul li {
  list-style: none;
  width: 276px;
  border-radius: 4px;
  border: 1px solid #8B8B8B;
  margin: 0 15px 32px 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul li {
    width: 164px;
    margin: 0 0 20px 0;
  }
}
.time-B8 .box-equipe ul li .box-img {
  width: 100%;
  height: 357px;
  float: left;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul li .box-img {
    height: 199px;
  }
}
.time-B8 .box-equipe ul li .desc {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: normal;
  color: #8B8B8B;
  padding: 16px 16px 8px 16px;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul li .desc {
    font-size: 12px;
    text-align: center;
    padding: 8px;
  }
}
.time-B8 .box-equipe ul li .nome {
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #000;
  width: 100%;
  float: left;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul li .nome {
    font-size: 16px;
    text-align: center;
    padding: 0 11px;
  }
}
.time-B8 .box-equipe ul li .ico {
  float: right;
  padding: 11px 16px 16px 16px;
  transition: 0.4s;
}
.time-B8 .box-equipe ul li .ico i {
  font-size: 24px;
  color: #002759;
  display: flex;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .time-B8 .box-equipe ul li .ico a {
    display: flex;
  }
}
.time-B8 .box-equipe ul li .ico:hover img {
  opacity: 0.8;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .time-B8 .equipe-1 ul li:nth-child(2) {
    order: 1;
    margin: 0 50px 12px 50px;
  }
}
@media (max-width: 768px) {
  .time-B8 .equipe-1 ul li:nth-child(1) {
    order: 2;
  }
}
@media (max-width: 768px) {
  .time-B8 .equipe-1 ul li:nth-child(3) {
    order: 3;
  }
}
.time-B8 .box-equipe:last-child {
  margin-bottom: 0px;
}

.nossos-marcos {
  width: 100%;
  float: left;
  padding: 128px 0;
  background: #F2F2F2;
}
@media (max-width: 768px) {
  .nossos-marcos {
    padding: 64px 0;
  }
}
.nossos-marcos .box-title {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .nossos-marcos .box-title {
    margin-bottom: 32px;
  }
}
.nossos-marcos .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .nossos-marcos .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.nossos-marcos .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.nossos-marcos h3 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #303030;
  width: 584px;
  float: left;
}
@media (max-width: 768px) {
  .nossos-marcos h3 {
    font-size: 16px;
    width: 100%;
    padding-bottom: 16px;
  }
}
.nossos-marcos .desc {
  width: 570px;
  float: right;
}
@media (max-width: 768px) {
  .nossos-marcos .desc {
    width: 100%;
  }
}
.nossos-marcos .desc p {
  font-size: 24px;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .nossos-marcos .desc p {
    font-size: 12px;
  }
}
.nossos-marcos .slick-marcos-nav {
  width: 90%;
  margin: 64px 5% 0 5%;
  float: left;
  position: relative;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav {
    width: 100%;
    margin: 64px 0 0 0;
  }
}
.nossos-marcos .slick-marcos-nav .item {
  font-size: 24px;
  color: #002759;
  line-height: 30px;
  float: left;
  height: 40px;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item {
    font-size: 12px;
    height: auto;
    line-height: normal;
    border-right: 1px solid #2D4E7A;
    justify-content: center;
  }
}
.nossos-marcos .slick-marcos-nav .item .text {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item .text {
    display: block;
  }
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item .text span {
    width: 100%;
    float: left;
    padding-right: 0px;
  }
}
.nossos-marcos .slick-marcos-nav .item .text .barra {
  padding: 0 8px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item .text .barra {
    display: none;
  }
}
.nossos-marcos .slick-marcos-nav .item .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
  display: none;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item .line {
    display: none;
  }
}
.nossos-marcos .slick-marcos-nav .item:nth-child(3n+1) {
  text-align: left;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item:nth-child(3n+1) {
    text-align: center;
  }
}
.nossos-marcos .slick-marcos-nav .item:nth-child(3n+2) {
  justify-content: center;
}
.nossos-marcos .slick-marcos-nav .item:nth-child(3n+2) .text {
  padding: 0 16px;
  background: #F2F2F2;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item:nth-child(3n+2) .text {
    padding: 0px;
  }
}
.nossos-marcos .slick-marcos-nav .item:nth-child(3n) {
  text-align: right;
  justify-content: end;
  border-right: 0px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .item:nth-child(3n) {
    text-align: center;
    justify-content: center;
  }
}
.nossos-marcos .slick-marcos-nav .slick-current {
  font-family: "AvenirHeavy";
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .slick-current .text {
    font-size: 16px;
  }
}
.nossos-marcos .slick-marcos-nav .slick-current span {
  font-size: 40px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav .slick-current span {
    font-size: 16px;
    width: 100%;
    float: left;
  }
}
.nossos-marcos .slick-marcos-nav:before {
  content: "";
  width: 522px;
  height: 1px;
  background: #2D4E7A;
  position: absolute;
  left: 50%;
  margin-left: -261px;
  top: 20px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos-nav:before {
    display: none;
  }
}
.nossos-marcos .slick-marcos {
  width: 90%;
  margin: 110px 5% 0 5%;
  float: left;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos {
    width: 100%;
    margin: 110px 0 0 0;
  }
}
.nossos-marcos .slick-marcos .item {
  width: 100%;
  float: left;
  border-radius: 16px;
  border: 1px solid #002759;
  background: #F2F2F2;
  padding: 32px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos .item {
    padding: 16px;
  }
}
.nossos-marcos .slick-marcos .item .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #002759;
  line-height: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid #002759;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-marcos .item .title {
    font-size: 16px;
    line-height: initial;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.nossos-marcos .slick-marcos .slick-prev, .nossos-marcos .slick-marcos .slick-prev:hover, .nossos-marcos .slick-marcos .slick-prev:focus {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat center center;
  top: -58px;
  left: 0px;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
  border-radius: 4px;
}
.nossos-marcos .slick-marcos .slick-prev:before {
  display: none;
}
.nossos-marcos .slick-marcos .slick-prev:hover {
  opacity: 1 !important;
  border: 0.1px solid rgb(0, 39, 89);
}
.nossos-marcos .slick-marcos .slick-prev.slick-disabled, .nossos-marcos .slick-marcos .slick-next.slick-disabled {
  opacity: 0.25 !important;
  cursor: default;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
}
.nossos-marcos .slick-marcos .slick-next, .nossos-marcos .slick-marcos .slick-next:hover, .nossos-marcos .slick-marcos .slick-next:focus {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat center center;
  top: -58px;
  left: 87px;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
  border-radius: 4px;
}
.nossos-marcos .slick-marcos .slick-next:before {
  display: none;
}
.nossos-marcos .slick-marcos .slick-next:hover {
  opacity: 1 !important;
  border: 0.1px solid rgb(0, 39, 89);
}
.nossos-marcos .slick-marcos .slick-next.slick-disabled, .nossos-marcos .slick-marcos .slick-next.slick-disabled {
  opacity: 0.25 !important;
  cursor: default;
}
@media (max-width: 768px) {
  .nossos-marcos .slick-track {
    display: flex;
  }
}

.trabalhe-conosco {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .trabalhe-conosco {
    padding: 64px 0;
  }
}
.trabalhe-conosco .box-title {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-title {
    margin-bottom: 32px;
  }
}
.trabalhe-conosco .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-title .title {
    font-size: 12px;
    letter-spacing: initial;
    padding: 0 16px 0 0;
  }
}
.trabalhe-conosco .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.trabalhe-conosco .box-form {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #C89116;
  background: url("../../imagens/trabalhe-conosco-bg.png") #002759 no-repeat top center;
  background-size: cover;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.trabalhe-conosco .box-form .box-info {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info {
    display: flex;
    flex-direction: column;
  }
}
.trabalhe-conosco .box-form .box-info .box {
  width: 50%;
  float: left;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info .box {
    width: 100%;
    margin-top: -10px;
    text-align: center;
  }
}
.trabalhe-conosco .box-form .box-info .box .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  font-family: "AvenirHeavy";
  line-height: 30px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info .box .title {
    font-size: 16px;
  }
}
.trabalhe-conosco .box-form .box-info .box .text {
  width: 100%;
  float: left;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info .box .text {
    margin-top: 8px;
  }
}
.trabalhe-conosco .box-form .box-info .box .text p {
  color: #fff;
  font-size: 20px;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info .box .text p {
    font-size: 12px;
  }
}
.trabalhe-conosco .box-form .box-info img {
  width: 50%;
  float: left;
  position: relative;
  top: -32px;
  right: -32px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-info img {
    width: 123%;
    float: left;
    order: -1;
    right: initial;
    left: -32px;
    height: 196px;
    object-fit: cover;
    object-position: top;
  }
}
.trabalhe-conosco .box-form .box-text {
  width: 282px;
  float: left;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-text {
    width: 100%;
    margin-top: 48px;
  }
}
.trabalhe-conosco .box-form .box-text .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  font-family: "AvenirHeavy";
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form .box-text .title {
    text-align: center;
    padding: 0 0 16px 0;
    font-size: 16px;
    line-height: initial;
  }
}
.trabalhe-conosco .box-form .box-text .text {
  width: 100%;
  float: left;
  border-bottom: 1px solid #C89116;
}
.trabalhe-conosco .box-form .box-text .text p {
  font-size: 16px;
  line-height: initial;
  color: #fff;
}
.trabalhe-conosco .box-form form {
  width: 790px;
  height: auto;
  float: right;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form {
    width: 100%;
    height: auto;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.trabalhe-conosco .box-form form .input, .trabalhe-conosco .box-form form .input-anexo {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 24px;
}
.trabalhe-conosco .box-form form .input label, .trabalhe-conosco .box-form form .input-anexo label {
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 12px;
  color: #fff;
}
.trabalhe-conosco .box-form form .input-anexo {
  margin-bottom: 0px;
}
.trabalhe-conosco .box-form form input[type=text], .trabalhe-conosco .box-form form input[type=email], .trabalhe-conosco .box-form form input[type=file] {
  width: 100%;
  height: 64px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid rgba(242, 242, 242, 0.5);
  background: rgba(242, 242, 242, 0.2);
  padding: 9px 16px 0 16px;
  color: #fff;
  font-size: 20px;
}
.trabalhe-conosco .box-form form input[type=text]:hover, .trabalhe-conosco .box-form form input[type=email]:hover, .trabalhe-conosco .box-form form input[type=file]:hover {
  border: 0.5px solid rgb(242, 242, 242);
  transition: 0.4s;
}
.trabalhe-conosco .box-form form input[type=file] {
  width: 50%;
  display: none;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form input[type=file] {
    width: 100%;
  }
}
.trabalhe-conosco .box-form form .label-anexo {
  left: 0px !important;
  top: 0px !important;
  padding: 6px 0 0 16px;
  width: 50%;
  height: 64px;
  float: left;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 0.5px solid rgba(242, 242, 242, 0.5);
  background: rgba(242, 242, 242, 0.2);
  transition: 0.4s;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form .label-anexo {
    width: 100%;
  }
}
.trabalhe-conosco .box-form form .label-anexo:hover {
  border: 0.5px solid rgb(242, 242, 242);
  transition: 0.4s;
}
.trabalhe-conosco .box-form form .label-anexo:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  top: 16px;
  background: url("../../imagens/ico-file.png") no-repeat top center;
}
.trabalhe-conosco .box-form form .file-name {
  padding: 24px 16px 0 16px;
  color: #fff;
  font-size: 20px;
  float: left;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form .file-name {
    padding: 27px 16px 0 16px;
    font-size: 14px;
  }
}
.trabalhe-conosco .box-form form textarea {
  width: 100%;
  height: 162px;
  float: left;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 0.5px solid #F2F2F2;
  background: rgba(242, 242, 242, 0.2);
  padding: 8px;
  padding: 26px 16px;
  color: #fff;
  font-size: 14px;
}
.trabalhe-conosco .box-form form .box-btn {
  position: relative;
  float: right;
  margin-top: -28px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form .box-btn {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
  }
}
.trabalhe-conosco .box-form form input[type=submit] {
  font-size: 20px;
  color: #002759;
  line-height: 30px;
  background: url("../../imagens/arrow_btn.svg") #fff no-repeat 88px 14px;
  height: 46px;
  padding: 0 45px 0 16px;
  border-radius: 8px;
  border: 1px solid #C89116;
  float: right;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form input[type=submit] {
    margin-top: 96px;
    font-size: 12px;
    padding: 0 36px 0 16px;
    background: url("../../imagens/arrow_btn.svg") #fff no-repeat 56px 14px;
  }
}
.trabalhe-conosco .box-form form input[type=submit] img {
  padding-left: 16px;
}
.trabalhe-conosco .box-form form input[type=submit]:hover {
  color: #C89116;
  transition: 0.4s;
}
.trabalhe-conosco .box-form form .wpcf7-response-output {
  color: #fff;
  width: 100%;
  float: left;
  margin: 20px 0 0 0;
}
.trabalhe-conosco .box-form form .wpcf7-spinner {
  position: absolute;
  right: 120px;
  top: 12px;
}
@media (max-width: 768px) {
  .trabalhe-conosco .box-form form .wpcf7-spinner {
    top: initial;
    bottom: 12px;
    right: 50%;
    margin-right: 50px;
  }
}

.para-voce {
  width: 100%;
  float: left;
}

.solucoes {
  width: 100%;
  float: left;
  padding: 128px 0 0 0;
}
@media (max-width: 768px) {
  .solucoes {
    padding: 64px 0 0 0;
  }
}
.solucoes .title-section {
  width: 100%;
  float: left;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .solucoes .title-section {
    margin-bottom: 32px;
  }
}
.solucoes .title-section h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .solucoes .title-section h2 {
    text-align: right;
    width: 100%;
  }
}
.solucoes .title-section .desc {
  width: 560px;
  float: right;
}
@media (max-width: 768px) {
  .solucoes .title-section .desc {
    width: 264px;
    margin-top: 16px;
    text-align: right;
  }
}
.solucoes .title-section .desc p {
  font-size: 24px;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .solucoes .title-section .desc p {
    font-size: 12px;
  }
}
.solucoes .title-section .desc p span {
  color: #C89116;
}
.solucoes .box-title {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .solucoes .box-title {
    margin-bottom: 32px;
  }
}
.solucoes .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .solucoes .box-title .title {
    font-size: 12px;
    letter-spacing: initial;
    padding: 0 16px 0 0;
  }
}
.solucoes .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.solucoes .solucao {
  width: 100%;
  border: 1px solid #2D4E7A;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .solucoes .solucao {
    padding: 16px;
  }
}
.solucoes .solucao .box-img {
  width: 480px;
  min-height: 533px;
  float: left;
  overflow: hidden;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-img {
    width: 100%;
    min-height: 177px;
    height: 177px;
    border-radius: 4px;
  }
}
.solucoes .solucao .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-img img {
    object-position: center;
  }
}
.solucoes .solucao .box-text {
  display: flex;
  flex-wrap: wrap;
  padding: 32px;
  width: calc(100% - 480px);
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text {
    width: 100%;
    padding: 16px 0 0 0;
    display: block;
    float: left;
  }
}
.solucoes .solucao .box-text .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(0, 39, 89, 0.2);
  display: none;
  float: right;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text .arrow {
    display: flex;
  }
}
.solucoes .solucao .box-text .arrow svg path {
  fill: #2D4E7A;
}
.solucoes .solucao .box-text .active svg {
  transform: rotateX(180deg);
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text .box-mobile {
    display: none;
    float: left;
  }
}
.solucoes .solucao .box-text .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #002759;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text .title {
    font-family: "Avenir";
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 8px;
    float: none;
  }
}
.solucoes .solucao .box-text p {
  font-size: 16px;
  line-height: 23px;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text p {
    font-size: 12px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text p span {
    color: #002759;
  }
}
.solucoes .solucao .box-text .title-2 {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 20px;
  color: #002759;
  padding-top: 24px;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text .title-2 {
    font-size: 14px;
    float: none;
    padding-top: 16px;
  }
}
.solucoes .solucao .box-text .box-btn {
  width: 100%;
  float: left;
  position: absolute;
  bottom: 0px;
  right: 32px;
  bottom: 32px;
}
@media (max-width: 768px) {
  .solucoes .solucao .box-text .box-btn {
    position: static;
  }
}
.solucoes .solucao .box-text .btn {
  float: right;
  margin-top: 24px;
}

.page-template-para-empresas-page .topo-interna .box-text {
  width: 568px;
}
@media (max-width: 768px) {
  .page-template-para-empresas-page .topo-interna .box-text {
    width: 265px;
  }
}
.page-template-para-empresas-page .solucoes .solucao:nth-child(2) .box-img {
  height: 602px;
}

.page-template-wealth-management-page .topo-interna .box-text, .page-template-investimentos-alternativos-page .topo-interna .box-text, .page-template-investment-banking-page .topo-interna .box-text, .page-template-seja-um-parceiro-page .topo-interna .box-text, .page-template-credito-corporativo-page .topo-interna .box-text, .page-template-asset-management-page .topo-interna .box-text {
  width: 568px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .topo-interna .box-text, .page-template-investimentos-alternativos-page .topo-interna .box-text, .page-template-investment-banking-page .topo-interna .box-text, .page-template-seja-um-parceiro-page .topo-interna .box-text, .page-template-credito-corporativo-page .topo-interna .box-text, .page-template-asset-management-page .topo-interna .box-text {
    width: 265px;
  }
}
.page-template-wealth-management-page .center-box, .page-template-investimentos-alternativos-page .center-box, .page-template-investment-banking-page .center-box, .page-template-seja-um-parceiro-page .center-box, .page-template-credito-corporativo-page .center-box, .page-template-asset-management-page .center-box {
  width: 1200px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .center-box, .page-template-investimentos-alternativos-page .center-box, .page-template-investment-banking-page .center-box, .page-template-seja-um-parceiro-page .center-box, .page-template-credito-corporativo-page .center-box, .page-template-asset-management-page .center-box {
    width: 100%;
    margin: 0;
    padding: 0 16px;
  }
}
.page-template-wealth-management-page .gestao-patrimonial, .page-template-investimentos-alternativos-page .gestao-patrimonial, .page-template-investment-banking-page .gestao-patrimonial, .page-template-seja-um-parceiro-page .gestao-patrimonial, .page-template-credito-corporativo-page .gestao-patrimonial, .page-template-asset-management-page .gestao-patrimonial {
  width: 100%;
  float: left;
  background: url("../../imagens/bg-page.png") #F2F2F2 no-repeat top left;
  background-size: cover;
}
.page-template-wealth-management-page .box-numeros, .page-template-investimentos-alternativos-page .box-numeros, .page-template-investment-banking-page .box-numeros, .page-template-seja-um-parceiro-page .box-numeros, .page-template-credito-corporativo-page .box-numeros, .page-template-asset-management-page .box-numeros {
  width: 100%;
  float: left;
}
.page-template-wealth-management-page .numeros, .page-template-investimentos-alternativos-page .numeros, .page-template-investment-banking-page .numeros, .page-template-seja-um-parceiro-page .numeros, .page-template-credito-corporativo-page .numeros, .page-template-asset-management-page .numeros {
  width: 100%;
  float: left;
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros, .page-template-investimentos-alternativos-page .numeros, .page-template-investment-banking-page .numeros, .page-template-seja-um-parceiro-page .numeros, .page-template-credito-corporativo-page .numeros, .page-template-asset-management-page .numeros {
    display: block;
    margin-top: 32px;
  }
}
.page-template-wealth-management-page .numeros .box, .page-template-investimentos-alternativos-page .numeros .box, .page-template-investment-banking-page .numeros .box, .page-template-seja-um-parceiro-page .numeros .box, .page-template-credito-corporativo-page .numeros .box, .page-template-asset-management-page .numeros .box {
  width: 389px;
  height: 176px;
  background: #002759;
  border-radius: 16px;
  border: 1px solid #C89116;
  padding: 24px 16px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box, .page-template-investimentos-alternativos-page .numeros .box, .page-template-investment-banking-page .numeros .box, .page-template-seja-um-parceiro-page .numeros .box, .page-template-credito-corporativo-page .numeros .box, .page-template-asset-management-page .numeros .box {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    padding: 18px;
    height: auto;
  }
}
.page-template-wealth-management-page .numeros .box .text-numero, .page-template-investimentos-alternativos-page .numeros .box .text-numero, .page-template-investment-banking-page .numeros .box .text-numero, .page-template-seja-um-parceiro-page .numeros .box .text-numero, .page-template-credito-corporativo-page .numeros .box .text-numero, .page-template-asset-management-page .numeros .box .text-numero {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 64px;
  color: #C89116;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box .text-numero, .page-template-investimentos-alternativos-page .numeros .box .text-numero, .page-template-investment-banking-page .numeros .box .text-numero, .page-template-seja-um-parceiro-page .numeros .box .text-numero, .page-template-credito-corporativo-page .numeros .box .text-numero, .page-template-asset-management-page .numeros .box .text-numero {
    font-size: 48px;
  }
}
.page-template-wealth-management-page .numeros .box .desc, .page-template-investimentos-alternativos-page .numeros .box .desc, .page-template-investment-banking-page .numeros .box .desc, .page-template-seja-um-parceiro-page .numeros .box .desc, .page-template-credito-corporativo-page .numeros .box .desc, .page-template-asset-management-page .numeros .box .desc {
  width: 100%;
  float: left;
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box .desc, .page-template-investimentos-alternativos-page .numeros .box .desc, .page-template-investment-banking-page .numeros .box .desc, .page-template-seja-um-parceiro-page .numeros .box .desc, .page-template-credito-corporativo-page .numeros .box .desc, .page-template-asset-management-page .numeros .box .desc {
    margin-bottom: 0px;
  }
}
.page-template-wealth-management-page .numeros .box .desc p, .page-template-investimentos-alternativos-page .numeros .box .desc p, .page-template-investment-banking-page .numeros .box .desc p, .page-template-seja-um-parceiro-page .numeros .box .desc p, .page-template-credito-corporativo-page .numeros .box .desc p, .page-template-asset-management-page .numeros .box .desc p {
  font-size: 16px;
  color: #fff;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box .desc p, .page-template-investimentos-alternativos-page .numeros .box .desc p, .page-template-investment-banking-page .numeros .box .desc p, .page-template-seja-um-parceiro-page .numeros .box .desc p, .page-template-credito-corporativo-page .numeros .box .desc p, .page-template-asset-management-page .numeros .box .desc p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box hr, .page-template-investimentos-alternativos-page .numeros .box hr, .page-template-investment-banking-page .numeros .box hr, .page-template-seja-um-parceiro-page .numeros .box hr, .page-template-credito-corporativo-page .numeros .box hr, .page-template-asset-management-page .numeros .box hr {
    display: none;
  }
}
.page-template-wealth-management-page .numeros .box .text, .page-template-investimentos-alternativos-page .numeros .box .text, .page-template-investment-banking-page .numeros .box .text, .page-template-seja-um-parceiro-page .numeros .box .text, .page-template-credito-corporativo-page .numeros .box .text, .page-template-asset-management-page .numeros .box .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box .text, .page-template-investimentos-alternativos-page .numeros .box .text, .page-template-investment-banking-page .numeros .box .text, .page-template-seja-um-parceiro-page .numeros .box .text, .page-template-credito-corporativo-page .numeros .box .text, .page-template-asset-management-page .numeros .box .text {
    border-left: 1px solid #fff;
    padding: 0 0 0 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
  }
}
.page-template-wealth-management-page .numeros .box .text p, .page-template-investimentos-alternativos-page .numeros .box .text p, .page-template-investment-banking-page .numeros .box .text p, .page-template-seja-um-parceiro-page .numeros .box .text p, .page-template-credito-corporativo-page .numeros .box .text p, .page-template-asset-management-page .numeros .box .text p {
  color: #fff;
  font-size: 16px;
  line-height: initial;
  margin-block-start: 10px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .numeros .box .text p, .page-template-investimentos-alternativos-page .numeros .box .text p, .page-template-investment-banking-page .numeros .box .text p, .page-template-seja-um-parceiro-page .numeros .box .text p, .page-template-credito-corporativo-page .numeros .box .text p, .page-template-asset-management-page .numeros .box .text p {
    font-size: 12px;
    margin-block-start: 0px;
  }
}
.page-template-wealth-management-page .box-title-section, .page-template-investimentos-alternativos-page .box-title-section, .page-template-investment-banking-page .box-title-section, .page-template-seja-um-parceiro-page .box-title-section, .page-template-credito-corporativo-page .box-title-section, .page-template-asset-management-page .box-title-section {
  width: 100%;
  float: left;
  padding: 128px 0 0 0;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .box-title-section, .page-template-investimentos-alternativos-page .box-title-section, .page-template-investment-banking-page .box-title-section, .page-template-seja-um-parceiro-page .box-title-section, .page-template-credito-corporativo-page .box-title-section, .page-template-asset-management-page .box-title-section {
    padding: 48px 0;
  }
}
.page-template-wealth-management-page .box-title-section .title-section, .page-template-investimentos-alternativos-page .box-title-section .title-section, .page-template-investment-banking-page .box-title-section .title-section, .page-template-seja-um-parceiro-page .box-title-section .title-section, .page-template-credito-corporativo-page .box-title-section .title-section, .page-template-asset-management-page .box-title-section .title-section {
  width: 100%;
  float: left;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .box-title-section .title-section, .page-template-investimentos-alternativos-page .box-title-section .title-section, .page-template-investment-banking-page .box-title-section .title-section, .page-template-seja-um-parceiro-page .box-title-section .title-section, .page-template-credito-corporativo-page .box-title-section .title-section, .page-template-asset-management-page .box-title-section .title-section {
    margin-bottom: 0px;
  }
}
.page-template-wealth-management-page .box-title-section .title-section h2, .page-template-investimentos-alternativos-page .box-title-section .title-section h2, .page-template-investment-banking-page .box-title-section .title-section h2, .page-template-seja-um-parceiro-page .box-title-section .title-section h2, .page-template-credito-corporativo-page .box-title-section .title-section h2, .page-template-asset-management-page .box-title-section .title-section h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .box-title-section .title-section h2, .page-template-investimentos-alternativos-page .box-title-section .title-section h2, .page-template-investment-banking-page .box-title-section .title-section h2, .page-template-seja-um-parceiro-page .box-title-section .title-section h2, .page-template-credito-corporativo-page .box-title-section .title-section h2, .page-template-asset-management-page .box-title-section .title-section h2 {
    text-align: right;
    width: 100%;
  }
}
.page-template-wealth-management-page .box-title-section .title-section .desc, .page-template-investimentos-alternativos-page .box-title-section .title-section .desc, .page-template-investment-banking-page .box-title-section .title-section .desc, .page-template-seja-um-parceiro-page .box-title-section .title-section .desc, .page-template-credito-corporativo-page .box-title-section .title-section .desc, .page-template-asset-management-page .box-title-section .title-section .desc {
  width: 560px;
  float: right;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .box-title-section .title-section .desc, .page-template-investimentos-alternativos-page .box-title-section .title-section .desc, .page-template-investment-banking-page .box-title-section .title-section .desc, .page-template-seja-um-parceiro-page .box-title-section .title-section .desc, .page-template-credito-corporativo-page .box-title-section .title-section .desc, .page-template-asset-management-page .box-title-section .title-section .desc {
    width: 264px;
    margin-top: 16px;
    text-align: right;
  }
}
.page-template-wealth-management-page .box-title-section .title-section .desc p, .page-template-investimentos-alternativos-page .box-title-section .title-section .desc p, .page-template-investment-banking-page .box-title-section .title-section .desc p, .page-template-seja-um-parceiro-page .box-title-section .title-section .desc p, .page-template-credito-corporativo-page .box-title-section .title-section .desc p, .page-template-asset-management-page .box-title-section .title-section .desc p {
  font-size: 24px;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .box-title-section .title-section .desc p, .page-template-investimentos-alternativos-page .box-title-section .title-section .desc p, .page-template-investment-banking-page .box-title-section .title-section .desc p, .page-template-seja-um-parceiro-page .box-title-section .title-section .desc p, .page-template-credito-corporativo-page .box-title-section .title-section .desc p, .page-template-asset-management-page .box-title-section .title-section .desc p {
    font-size: 12px;
  }
}
.page-template-wealth-management-page .box-title-section .title-section .desc p span, .page-template-investimentos-alternativos-page .box-title-section .title-section .desc p span, .page-template-investment-banking-page .box-title-section .title-section .desc p span, .page-template-seja-um-parceiro-page .box-title-section .title-section .desc p span, .page-template-credito-corporativo-page .box-title-section .title-section .desc p span, .page-template-asset-management-page .box-title-section .title-section .desc p span {
  color: #C89116;
}
.page-template-wealth-management-page .diferenciais, .page-template-investimentos-alternativos-page .diferenciais, .page-template-investment-banking-page .diferenciais, .page-template-seja-um-parceiro-page .diferenciais, .page-template-credito-corporativo-page .diferenciais, .page-template-asset-management-page .diferenciais {
  width: 100%;
  float: left;
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais, .page-template-investimentos-alternativos-page .diferenciais, .page-template-investment-banking-page .diferenciais, .page-template-seja-um-parceiro-page .diferenciais, .page-template-credito-corporativo-page .diferenciais, .page-template-asset-management-page .diferenciais {
    padding-bottom: 64px;
  }
}
.page-template-wealth-management-page .diferenciais .box-title, .page-template-investimentos-alternativos-page .diferenciais .box-title, .page-template-investment-banking-page .diferenciais .box-title, .page-template-seja-um-parceiro-page .diferenciais .box-title, .page-template-credito-corporativo-page .diferenciais .box-title, .page-template-asset-management-page .diferenciais .box-title {
  width: 276px;
  height: 445px;
  float: left;
  background: #002759;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #C89116;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .box-title, .page-template-investimentos-alternativos-page .diferenciais .box-title, .page-template-investment-banking-page .diferenciais .box-title, .page-template-seja-um-parceiro-page .diferenciais .box-title, .page-template-credito-corporativo-page .diferenciais .box-title, .page-template-asset-management-page .diferenciais .box-title {
    width: 100%;
    height: auto;
    padding: 0px;
    background: transparent;
    margin-top: 0px;
    border-radius: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
  }
}
.page-template-wealth-management-page .diferenciais .box-title .title, .page-template-investimentos-alternativos-page .diferenciais .box-title .title, .page-template-investment-banking-page .diferenciais .box-title .title, .page-template-seja-um-parceiro-page .diferenciais .box-title .title, .page-template-credito-corporativo-page .diferenciais .box-title .title, .page-template-asset-management-page .diferenciais .box-title .title {
  width: 100%;
  float: left;
  font-family: "Avenir";
  font-size: 24px;
  color: #C89116;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .box-title .title, .page-template-investimentos-alternativos-page .diferenciais .box-title .title, .page-template-investment-banking-page .diferenciais .box-title .title, .page-template-seja-um-parceiro-page .diferenciais .box-title .title, .page-template-credito-corporativo-page .diferenciais .box-title .title, .page-template-asset-management-page .diferenciais .box-title .title {
    font-family: "AvenirMedium";
    font-size: 16px;
    position: relative;
    background: #002759;
    padding: 16px;
    color: #C89116;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .box-title .title:after, .page-template-investimentos-alternativos-page .diferenciais .box-title .title:after, .page-template-investment-banking-page .diferenciais .box-title .title:after, .page-template-seja-um-parceiro-page .diferenciais .box-title .title:after, .page-template-credito-corporativo-page .diferenciais .box-title .title:after, .page-template-asset-management-page .diferenciais .box-title .title:after {
    content: "";
    width: 65%;
    height: 1px;
    background: #2D4E7A;
    position: absolute;
    right: 0px;
    top: 6px;
    display: none;
  }
}
.page-template-wealth-management-page .diferenciais .itens, .page-template-investimentos-alternativos-page .diferenciais .itens, .page-template-investment-banking-page .diferenciais .itens, .page-template-seja-um-parceiro-page .diferenciais .itens, .page-template-credito-corporativo-page .diferenciais .itens, .page-template-asset-management-page .diferenciais .itens {
  width: 892px;
  float: right;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .itens, .page-template-investimentos-alternativos-page .diferenciais .itens, .page-template-investment-banking-page .diferenciais .itens, .page-template-seja-um-parceiro-page .diferenciais .itens, .page-template-credito-corporativo-page .diferenciais .itens, .page-template-asset-management-page .diferenciais .itens {
    width: 100%;
    padding: 16px;
    border-left: 1px solid #C89116;
    border-Right: 1px solid #C89116;
    border-bottom: 1px solid #C89116;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: 0px;
    background: #fff;
  }
}
.page-template-wealth-management-page .diferenciais .itens .item, .page-template-investimentos-alternativos-page .diferenciais .itens .item, .page-template-investment-banking-page .diferenciais .itens .item, .page-template-seja-um-parceiro-page .diferenciais .itens .item, .page-template-credito-corporativo-page .diferenciais .itens .item, .page-template-asset-management-page .diferenciais .itens .item {
  width: 100%;
  float: left;
  border-bottom: 1px solid #C89116;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.page-template-wealth-management-page .diferenciais .itens .item .title, .page-template-investimentos-alternativos-page .diferenciais .itens .item .title, .page-template-investment-banking-page .diferenciais .itens .item .title, .page-template-seja-um-parceiro-page .diferenciais .itens .item .title, .page-template-credito-corporativo-page .diferenciais .itens .item .title, .page-template-asset-management-page .diferenciais .itens .item .title {
  width: 100%;
  float: left;
  font-family: "Avenir";
  font-size: 24px;
  color: #2D4E7A;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .itens .item .title, .page-template-investimentos-alternativos-page .diferenciais .itens .item .title, .page-template-investment-banking-page .diferenciais .itens .item .title, .page-template-seja-um-parceiro-page .diferenciais .itens .item .title, .page-template-credito-corporativo-page .diferenciais .itens .item .title, .page-template-asset-management-page .diferenciais .itens .item .title {
    font-size: 16px;
    line-height: normal;
    align-items: center;
  }
}
.page-template-wealth-management-page .diferenciais .itens .item .title .ico, .page-template-investimentos-alternativos-page .diferenciais .itens .item .title .ico, .page-template-investment-banking-page .diferenciais .itens .item .title .ico, .page-template-seja-um-parceiro-page .diferenciais .itens .item .title .ico, .page-template-credito-corporativo-page .diferenciais .itens .item .title .ico, .page-template-asset-management-page .diferenciais .itens .item .title .ico {
  padding-right: 8px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .itens .item .title .ico, .page-template-investimentos-alternativos-page .diferenciais .itens .item .title .ico, .page-template-investment-banking-page .diferenciais .itens .item .title .ico, .page-template-seja-um-parceiro-page .diferenciais .itens .item .title .ico, .page-template-credito-corporativo-page .diferenciais .itens .item .title .ico, .page-template-asset-management-page .diferenciais .itens .item .title .ico {
    width: 24px;
    padding-right: 0px;
    margin-right: 8px;
  }
}
.page-template-wealth-management-page .diferenciais .itens .item .text, .page-template-investimentos-alternativos-page .diferenciais .itens .item .text, .page-template-investment-banking-page .diferenciais .itens .item .text, .page-template-seja-um-parceiro-page .diferenciais .itens .item .text, .page-template-credito-corporativo-page .diferenciais .itens .item .text, .page-template-asset-management-page .diferenciais .itens .item .text {
  width: 100%;
  float: left;
  padding: 0 24px 0 40px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .itens .item .text, .page-template-investimentos-alternativos-page .diferenciais .itens .item .text, .page-template-investment-banking-page .diferenciais .itens .item .text, .page-template-seja-um-parceiro-page .diferenciais .itens .item .text, .page-template-credito-corporativo-page .diferenciais .itens .item .text, .page-template-asset-management-page .diferenciais .itens .item .text {
    padding: 0 0 0 32px;
  }
}
.page-template-wealth-management-page .diferenciais .itens .item .text p, .page-template-investimentos-alternativos-page .diferenciais .itens .item .text p, .page-template-investment-banking-page .diferenciais .itens .item .text p, .page-template-seja-um-parceiro-page .diferenciais .itens .item .text p, .page-template-credito-corporativo-page .diferenciais .itens .item .text p, .page-template-asset-management-page .diferenciais .itens .item .text p {
  font-size: 16px;
  line-height: initial;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .diferenciais .itens .item .text p, .page-template-investimentos-alternativos-page .diferenciais .itens .item .text p, .page-template-investment-banking-page .diferenciais .itens .item .text p, .page-template-seja-um-parceiro-page .diferenciais .itens .item .text p, .page-template-credito-corporativo-page .diferenciais .itens .item .text p, .page-template-asset-management-page .diferenciais .itens .item .text p {
    font-size: 12px;
  }
}
.page-template-wealth-management-page .diferenciais .itens .item:last-child, .page-template-investimentos-alternativos-page .diferenciais .itens .item:last-child, .page-template-investment-banking-page .diferenciais .itens .item:last-child, .page-template-seja-um-parceiro-page .diferenciais .itens .item:last-child, .page-template-credito-corporativo-page .diferenciais .itens .item:last-child, .page-template-asset-management-page .diferenciais .itens .item:last-child {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.page-template-wealth-management-page .segmentos, .page-template-investimentos-alternativos-page .segmentos, .page-template-investment-banking-page .segmentos, .page-template-seja-um-parceiro-page .segmentos, .page-template-credito-corporativo-page .segmentos, .page-template-asset-management-page .segmentos {
  width: 100%;
  float: left;
  background: url("../../imagens/segmentos-bg.png") #002759 top center;
  background-size: cover;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos, .page-template-investimentos-alternativos-page .segmentos, .page-template-investment-banking-page .segmentos, .page-template-seja-um-parceiro-page .segmentos, .page-template-credito-corporativo-page .segmentos, .page-template-asset-management-page .segmentos {
    padding: 64px 0;
    overflow: hidden;
  }
}
.page-template-wealth-management-page .segmentos h2, .page-template-investimentos-alternativos-page .segmentos h2, .page-template-investment-banking-page .segmentos h2, .page-template-seja-um-parceiro-page .segmentos h2, .page-template-credito-corporativo-page .segmentos h2, .page-template-asset-management-page .segmentos h2 {
  color: #fff;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos h2 br, .page-template-investimentos-alternativos-page .segmentos h2 br, .page-template-investment-banking-page .segmentos h2 br, .page-template-seja-um-parceiro-page .segmentos h2 br, .page-template-credito-corporativo-page .segmentos h2 br, .page-template-asset-management-page .segmentos h2 br {
    display: none;
  }
}
.page-template-wealth-management-page .segmentos .desc, .page-template-investimentos-alternativos-page .segmentos .desc, .page-template-investment-banking-page .segmentos .desc, .page-template-seja-um-parceiro-page .segmentos .desc, .page-template-credito-corporativo-page .segmentos .desc, .page-template-asset-management-page .segmentos .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .desc, .page-template-investimentos-alternativos-page .segmentos .desc, .page-template-investment-banking-page .segmentos .desc, .page-template-seja-um-parceiro-page .segmentos .desc, .page-template-credito-corporativo-page .segmentos .desc, .page-template-asset-management-page .segmentos .desc {
    width: 100%;
    margin-top: 16px;
  }
}
.page-template-wealth-management-page .segmentos .desc p, .page-template-investimentos-alternativos-page .segmentos .desc p, .page-template-investment-banking-page .segmentos .desc p, .page-template-seja-um-parceiro-page .segmentos .desc p, .page-template-credito-corporativo-page .segmentos .desc p, .page-template-asset-management-page .segmentos .desc p {
  font-size: 24px;
  color: #fff;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .desc p, .page-template-investimentos-alternativos-page .segmentos .desc p, .page-template-investment-banking-page .segmentos .desc p, .page-template-seja-um-parceiro-page .segmentos .desc p, .page-template-credito-corporativo-page .segmentos .desc p, .page-template-asset-management-page .segmentos .desc p {
    font-size: 12px;
  }
}
.page-template-wealth-management-page .segmentos .box-title, .page-template-investimentos-alternativos-page .segmentos .box-title, .page-template-investment-banking-page .segmentos .box-title, .page-template-seja-um-parceiro-page .segmentos .box-title, .page-template-credito-corporativo-page .segmentos .box-title, .page-template-asset-management-page .segmentos .box-title {
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-title, .page-template-investimentos-alternativos-page .segmentos .box-title, .page-template-investment-banking-page .segmentos .box-title, .page-template-seja-um-parceiro-page .segmentos .box-title, .page-template-credito-corporativo-page .segmentos .box-title, .page-template-asset-management-page .segmentos .box-title {
    margin: 0 0 32px 0;
  }
}
.page-template-wealth-management-page .segmentos .box-title .title, .page-template-investimentos-alternativos-page .segmentos .box-title .title, .page-template-investment-banking-page .segmentos .box-title .title, .page-template-seja-um-parceiro-page .segmentos .box-title .title, .page-template-credito-corporativo-page .segmentos .box-title .title, .page-template-asset-management-page .segmentos .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-title .title, .page-template-investimentos-alternativos-page .segmentos .box-title .title, .page-template-investment-banking-page .segmentos .box-title .title, .page-template-seja-um-parceiro-page .segmentos .box-title .title, .page-template-credito-corporativo-page .segmentos .box-title .title, .page-template-asset-management-page .segmentos .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-wealth-management-page .segmentos .box-title .line, .page-template-investimentos-alternativos-page .segmentos .box-title .line, .page-template-investment-banking-page .segmentos .box-title .line, .page-template-seja-um-parceiro-page .segmentos .box-title .line, .page-template-credito-corporativo-page .segmentos .box-title .line, .page-template-asset-management-page .segmentos .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #F2F2F2;
}
.page-template-wealth-management-page .segmentos .box-segmentos, .page-template-investimentos-alternativos-page .segmentos .box-segmentos, .page-template-investment-banking-page .segmentos .box-segmentos, .page-template-seja-um-parceiro-page .segmentos .box-segmentos, .page-template-credito-corporativo-page .segmentos .box-segmentos, .page-template-asset-management-page .segmentos .box-segmentos {
  width: 100%;
  float: left;
  margin-top: 64px;
  margin-bottom: 0px !important;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos, .page-template-investimentos-alternativos-page .segmentos .box-segmentos, .page-template-investment-banking-page .segmentos .box-segmentos, .page-template-seja-um-parceiro-page .segmentos .box-segmentos, .page-template-credito-corporativo-page .segmentos .box-segmentos, .page-template-asset-management-page .segmentos .box-segmentos {
    width: 106%;
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .owl-stage, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .owl-stage, .page-template-investment-banking-page .segmentos .box-segmentos .owl-stage, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .owl-stage, .page-template-credito-corporativo-page .segmentos .box-segmentos .owl-stage, .page-template-asset-management-page .segmentos .box-segmentos .owl-stage {
    padding-left: 0px !important;
  }
}
.page-template-wealth-management-page .segmentos .box-segmentos .item, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item, .page-template-investment-banking-page .segmentos .box-segmentos .item, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item, .page-template-credito-corporativo-page .segmentos .box-segmentos .item, .page-template-asset-management-page .segmentos .box-segmentos .item {
  width: 357px !important;
  height: auto;
  padding: 16px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #fff;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .item, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item, .page-template-investment-banking-page .segmentos .box-segmentos .item, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item, .page-template-credito-corporativo-page .segmentos .box-segmentos .item, .page-template-asset-management-page .segmentos .box-segmentos .item {
    height: auto;
    width: 100% !important;
  }
}
.page-template-wealth-management-page .segmentos .box-segmentos .item .box-img, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .box-img, .page-template-investment-banking-page .segmentos .box-segmentos .item .box-img, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .box-img, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .box-img, .page-template-asset-management-page .segmentos .box-segmentos .item .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .item .box-img, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .box-img, .page-template-investment-banking-page .segmentos .box-segmentos .item .box-img, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .box-img, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .box-img, .page-template-asset-management-page .segmentos .box-segmentos .item .box-img {
    height: 38vw;
  }
}
.page-template-wealth-management-page .segmentos .box-segmentos .item .title, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .title, .page-template-investment-banking-page .segmentos .box-segmentos .item .title, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .title, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .title, .page-template-asset-management-page .segmentos .box-segmentos .item .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #002759;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .item .title, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .title, .page-template-investment-banking-page .segmentos .box-segmentos .item .title, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .title, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .title, .page-template-asset-management-page .segmentos .box-segmentos .item .title {
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .item .title br, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .title br, .page-template-investment-banking-page .segmentos .box-segmentos .item .title br, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .title br, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .title br, .page-template-asset-management-page .segmentos .box-segmentos .item .title br {
    display: none;
  }
}
.page-template-wealth-management-page .segmentos .box-segmentos .item .text, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .text, .page-template-investment-banking-page .segmentos .box-segmentos .item .text, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .text, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .text, .page-template-asset-management-page .segmentos .box-segmentos .item .text {
  width: 100%;
  float: left;
}
.page-template-wealth-management-page .segmentos .box-segmentos .item .text p, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .text p, .page-template-investment-banking-page .segmentos .box-segmentos .item .text p, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .text p, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .text p, .page-template-asset-management-page .segmentos .box-segmentos .item .text p {
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .item .text p, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item .text p, .page-template-investment-banking-page .segmentos .box-segmentos .item .text p, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item .text p, .page-template-credito-corporativo-page .segmentos .box-segmentos .item .text p, .page-template-asset-management-page .segmentos .box-segmentos .item .text p {
    font-size: 12px;
  }
}
.page-template-wealth-management-page .segmentos .box-segmentos .item:last-child, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .item:last-child, .page-template-investment-banking-page .segmentos .box-segmentos .item:last-child, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .item:last-child, .page-template-credito-corporativo-page .segmentos .box-segmentos .item:last-child, .page-template-asset-management-page .segmentos .box-segmentos .item:last-child {
  margin-right: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .segmentos .box-segmentos .slick-list, .page-template-investimentos-alternativos-page .segmentos .box-segmentos .slick-list, .page-template-investment-banking-page .segmentos .box-segmentos .slick-list, .page-template-seja-um-parceiro-page .segmentos .box-segmentos .slick-list, .page-template-credito-corporativo-page .segmentos .box-segmentos .slick-list, .page-template-asset-management-page .segmentos .box-segmentos .slick-list {
    padding: 0 70px 0 0 !important;
  }
}
.page-template-wealth-management-page .nossa-atuacao, .page-template-investimentos-alternativos-page .nossa-atuacao, .page-template-investment-banking-page .nossa-atuacao, .page-template-seja-um-parceiro-page .nossa-atuacao, .page-template-credito-corporativo-page .nossa-atuacao, .page-template-asset-management-page .nossa-atuacao {
  width: 100%;
  float: left;
  background: #fff;
  background-size: cover;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao, .page-template-investimentos-alternativos-page .nossa-atuacao, .page-template-investment-banking-page .nossa-atuacao, .page-template-seja-um-parceiro-page .nossa-atuacao, .page-template-credito-corporativo-page .nossa-atuacao, .page-template-asset-management-page .nossa-atuacao {
    padding: 64px 0;
    overflow: hidden;
  }
}
.page-template-wealth-management-page .nossa-atuacao .box-title, .page-template-investimentos-alternativos-page .nossa-atuacao .box-title, .page-template-investment-banking-page .nossa-atuacao .box-title, .page-template-seja-um-parceiro-page .nossa-atuacao .box-title, .page-template-credito-corporativo-page .nossa-atuacao .box-title, .page-template-asset-management-page .nossa-atuacao .box-title {
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .box-title, .page-template-investimentos-alternativos-page .nossa-atuacao .box-title, .page-template-investment-banking-page .nossa-atuacao .box-title, .page-template-seja-um-parceiro-page .nossa-atuacao .box-title, .page-template-credito-corporativo-page .nossa-atuacao .box-title, .page-template-asset-management-page .nossa-atuacao .box-title {
    margin: 0 !important;
  }
}
.page-template-wealth-management-page .nossa-atuacao .box-title .title, .page-template-investimentos-alternativos-page .nossa-atuacao .box-title .title, .page-template-investment-banking-page .nossa-atuacao .box-title .title, .page-template-seja-um-parceiro-page .nossa-atuacao .box-title .title, .page-template-credito-corporativo-page .nossa-atuacao .box-title .title, .page-template-asset-management-page .nossa-atuacao .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .box-title .title, .page-template-investimentos-alternativos-page .nossa-atuacao .box-title .title, .page-template-investment-banking-page .nossa-atuacao .box-title .title, .page-template-seja-um-parceiro-page .nossa-atuacao .box-title .title, .page-template-credito-corporativo-page .nossa-atuacao .box-title .title, .page-template-asset-management-page .nossa-atuacao .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-wealth-management-page .nossa-atuacao .box-title .line, .page-template-investimentos-alternativos-page .nossa-atuacao .box-title .line, .page-template-investment-banking-page .nossa-atuacao .box-title .line, .page-template-seja-um-parceiro-page .nossa-atuacao .box-title .line, .page-template-credito-corporativo-page .nossa-atuacao .box-title .line, .page-template-asset-management-page .nossa-atuacao .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.page-template-wealth-management-page .nossa-atuacao .itens, .page-template-investimentos-alternativos-page .nossa-atuacao .itens, .page-template-investment-banking-page .nossa-atuacao .itens, .page-template-seja-um-parceiro-page .nossa-atuacao .itens, .page-template-credito-corporativo-page .nossa-atuacao .itens, .page-template-asset-management-page .nossa-atuacao .itens {
  width: 100%;
  float: left;
  margin-top: 48px;
}
.page-template-wealth-management-page .nossa-atuacao .itens .item, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item, .page-template-investment-banking-page .nossa-atuacao .itens .item, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item, .page-template-credito-corporativo-page .nossa-atuacao .itens .item, .page-template-asset-management-page .nossa-atuacao .itens .item {
  width: 100%;
  float: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item, .page-template-investment-banking-page .nossa-atuacao .itens .item, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item, .page-template-credito-corporativo-page .nossa-atuacao .itens .item, .page-template-asset-management-page .nossa-atuacao .itens .item {
    display: block;
    padding-bottom: 32px;
    margin-bottom: 32px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item {
    align-items: center;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item .ico {
  margin-right: 28px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item .ico, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item .ico {
    height: 24px;
    margin-right: 8px;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item .title {
  font-family: "AvenirMedium";
  font-size: 24px;
  color: #2D4E7A;
  line-height: 30px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item .title, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item .title {
    font-size: 16px;
    line-height: normal;
    padding-top: 3px;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .title br, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .box-title-item .title br, .page-template-investment-banking-page .nossa-atuacao .itens .item .box-title-item .title br, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .box-title-item .title br, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .box-title-item .title br, .page-template-asset-management-page .nossa-atuacao .itens .item .box-title-item .title br {
    display: none;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .text, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .text, .page-template-investment-banking-page .nossa-atuacao .itens .item .text, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .text, .page-template-asset-management-page .nossa-atuacao .itens .item .text {
  width: 773px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .text, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .text, .page-template-investment-banking-page .nossa-atuacao .itens .item .text, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .text, .page-template-asset-management-page .nossa-atuacao .itens .item .text {
    width: 100%;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .text p, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .text p, .page-template-investment-banking-page .nossa-atuacao .itens .item .text p, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text p, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .text p, .page-template-asset-management-page .nossa-atuacao .itens .item .text p {
  font-size: 16px;
  line-height: initial;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item .text p, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item .text p, .page-template-investment-banking-page .nossa-atuacao .itens .item .text p, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text p, .page-template-credito-corporativo-page .nossa-atuacao .itens .item .text p, .page-template-asset-management-page .nossa-atuacao .itens .item .text p {
    font-size: 12px;
    margin-block-end: 0px;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item:last-child, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item:last-child, .page-template-investment-banking-page .nossa-atuacao .itens .item:last-child, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item:last-child, .page-template-credito-corporativo-page .nossa-atuacao .itens .item:last-child, .page-template-asset-management-page .nossa-atuacao .itens .item:last-child {
  margin-bottom: 0px;
}
.page-template-wealth-management-page .nossa-atuacao .itens .item:after, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item:after, .page-template-investment-banking-page .nossa-atuacao .itens .item:after, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item:after, .page-template-credito-corporativo-page .nossa-atuacao .itens .item:after, .page-template-asset-management-page .nossa-atuacao .itens .item:after {
  content: " ";
  width: 1008px;
  height: 1px;
  background: #C89116;
  position: absolute;
  left: 50%;
  margin-left: -504px;
  bottom: 0px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossa-atuacao .itens .item:after, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item:after, .page-template-investment-banking-page .nossa-atuacao .itens .item:after, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item:after, .page-template-credito-corporativo-page .nossa-atuacao .itens .item:after, .page-template-asset-management-page .nossa-atuacao .itens .item:after {
    width: 294px;
    left: 50%;
    margin-left: -147px;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item:last-child:after, .page-template-investimentos-alternativos-page .nossa-atuacao .itens .item:last-child:after, .page-template-investment-banking-page .nossa-atuacao .itens .item:last-child:after, .page-template-seja-um-parceiro-page .nossa-atuacao .itens .item:last-child:after, .page-template-credito-corporativo-page .nossa-atuacao .itens .item:last-child:after, .page-template-asset-management-page .nossa-atuacao .itens .item:last-child:after {
  display: none;
}
.page-template-wealth-management-page .nossas-liderancas, .page-template-investimentos-alternativos-page .nossas-liderancas, .page-template-investment-banking-page .nossas-liderancas, .page-template-seja-um-parceiro-page .nossas-liderancas, .page-template-credito-corporativo-page .nossas-liderancas, .page-template-asset-management-page .nossas-liderancas {
  width: 100%;
  float: left;
  padding: 128px 0;
  background: #F2F2F2;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas, .page-template-investimentos-alternativos-page .nossas-liderancas, .page-template-investment-banking-page .nossas-liderancas, .page-template-seja-um-parceiro-page .nossas-liderancas, .page-template-credito-corporativo-page .nossas-liderancas, .page-template-asset-management-page .nossas-liderancas {
    padding: 64px 0;
  }
}
.page-template-wealth-management-page .nossas-liderancas .box-title, .page-template-investimentos-alternativos-page .nossas-liderancas .box-title, .page-template-investment-banking-page .nossas-liderancas .box-title, .page-template-seja-um-parceiro-page .nossas-liderancas .box-title, .page-template-credito-corporativo-page .nossas-liderancas .box-title, .page-template-asset-management-page .nossas-liderancas .box-title {
  display: flex;
  align-items: center;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .box-title, .page-template-investimentos-alternativos-page .nossas-liderancas .box-title, .page-template-investment-banking-page .nossas-liderancas .box-title, .page-template-seja-um-parceiro-page .nossas-liderancas .box-title, .page-template-credito-corporativo-page .nossas-liderancas .box-title, .page-template-asset-management-page .nossas-liderancas .box-title {
    padding-bottom: 32px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .box-title .title, .page-template-investimentos-alternativos-page .nossas-liderancas .box-title .title, .page-template-investment-banking-page .nossas-liderancas .box-title .title, .page-template-seja-um-parceiro-page .nossas-liderancas .box-title .title, .page-template-credito-corporativo-page .nossas-liderancas .box-title .title, .page-template-asset-management-page .nossas-liderancas .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .box-title .title, .page-template-investimentos-alternativos-page .nossas-liderancas .box-title .title, .page-template-investment-banking-page .nossas-liderancas .box-title .title, .page-template-seja-um-parceiro-page .nossas-liderancas .box-title .title, .page-template-credito-corporativo-page .nossas-liderancas .box-title .title, .page-template-asset-management-page .nossas-liderancas .box-title .title {
    font-family: "Avenir";
    font-weight: normal;
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-wealth-management-page .nossas-liderancas .box-title .line, .page-template-investimentos-alternativos-page .nossas-liderancas .box-title .line, .page-template-investment-banking-page .nossas-liderancas .box-title .line, .page-template-seja-um-parceiro-page .nossas-liderancas .box-title .line, .page-template-credito-corporativo-page .nossas-liderancas .box-title .line, .page-template-asset-management-page .nossas-liderancas .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.page-template-wealth-management-page .nossas-liderancas .desc, .page-template-investimentos-alternativos-page .nossas-liderancas .desc, .page-template-investment-banking-page .nossas-liderancas .desc, .page-template-seja-um-parceiro-page .nossas-liderancas .desc, .page-template-credito-corporativo-page .nossas-liderancas .desc, .page-template-asset-management-page .nossas-liderancas .desc {
  width: 100%;
  float: left;
  text-align: center;
  padding: 0 205px;
  font-family: "Avenir";
  font-size: 24px;
  line-height: 30px;
  color: #000;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .desc, .page-template-investimentos-alternativos-page .nossas-liderancas .desc, .page-template-investment-banking-page .nossas-liderancas .desc, .page-template-seja-um-parceiro-page .nossas-liderancas .desc, .page-template-credito-corporativo-page .nossas-liderancas .desc, .page-template-asset-management-page .nossas-liderancas .desc {
    font-size: 12px;
    padding: 0 32px;
    line-height: normal;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards, .page-template-investimentos-alternativos-page .nossas-liderancas .cards, .page-template-investment-banking-page .nossas-liderancas .cards, .page-template-seja-um-parceiro-page .nossas-liderancas .cards, .page-template-credito-corporativo-page .nossas-liderancas .cards, .page-template-asset-management-page .nossas-liderancas .cards {
  width: 100%;
  float: left;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 24px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards, .page-template-investimentos-alternativos-page .nossas-liderancas .cards, .page-template-investment-banking-page .nossas-liderancas .cards, .page-template-seja-um-parceiro-page .nossas-liderancas .cards, .page-template-credito-corporativo-page .nossas-liderancas .cards, .page-template-asset-management-page .nossas-liderancas .cards {
    display: block;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card, .page-template-investment-banking-page .nossas-liderancas .cards .card, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card, .page-template-credito-corporativo-page .nossas-liderancas .cards .card, .page-template-asset-management-page .nossas-liderancas .cards .card {
  width: 588px;
  height: 418px;
  float: left;
  border: 1px solid #8B8B8B;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card, .page-template-investment-banking-page .nossas-liderancas .cards .card, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card, .page-template-credito-corporativo-page .nossas-liderancas .cards .card, .page-template-asset-management-page .nossas-liderancas .cards .card {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-img, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-img, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-img, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-img, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-img, .page-template-asset-management-page .nossas-liderancas .cards .card .box-img {
  width: 286px;
  height: 418px;
  float: left;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-img, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-img, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-img, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-img, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-img, .page-template-asset-management-page .nossas-liderancas .cards .card .box-img {
    width: 234px;
    height: 273px;
    margin: 0 auto;
    float: none;
    display: block;
    margin-top: 16px;
    border-radius: 4px;
    overflow: hidden;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-img img, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-img img, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-img img, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-img img, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-img img, .page-template-asset-management-page .nossas-liderancas .cards .card .box-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-img img, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-img img, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-img img, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-img img, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-img img, .page-template-asset-management-page .nossas-liderancas .cards .card .box-img img {
    object-position: top;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text {
  width: 299px;
  float: left;
  padding: 32px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-text, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text {
    width: 100% !important;
    text-align: center;
    padding: 16px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .funcao {
  width: 100%;
  float: left;
  font-family: "Avenir";
  font-size: 16px;
  color: #8B8B8B;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .funcao, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .funcao {
    font-size: 12px;
    padding-bottom: 0px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .title, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .title, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .title, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .title, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .title, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #000;
  line-height: 30px;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .title, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .title, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .title, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .title, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .title, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .title {
    font-size: 16px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .text, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .text, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .text, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .text, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .text, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .text {
  width: 100%;
  float: left;
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .text p, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .text p, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .text p, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .text p, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .text p, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .text p {
  font-size: 12px;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .ico, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .ico, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .ico, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .ico, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .ico, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .ico {
  width: 100%;
  float: left;
  display: flex;
  justify-content: end;
  position: absolute;
  bottom: 32px;
  right: 32px;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card .box-text .ico, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card .box-text .ico, .page-template-investment-banking-page .nossas-liderancas .cards .card .box-text .ico, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card .box-text .ico, .page-template-credito-corporativo-page .nossas-liderancas .cards .card .box-text .ico, .page-template-asset-management-page .nossas-liderancas .cards .card .box-text .ico {
    position: static;
    justify-content: center;
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card:last-child, .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card:last-child, .page-template-investment-banking-page .nossas-liderancas .cards .card:last-child, .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card:last-child, .page-template-credito-corporativo-page .nossas-liderancas .cards .card:last-child, .page-template-asset-management-page .nossas-liderancas .cards .card:last-child {
    margin-bottom: 0px;
  }
}
.page-template-wealth-management-page .nossas-liderancas .cards .card:nth-child(3), .page-template-investimentos-alternativos-page .nossas-liderancas .cards .card:nth-child(3), .page-template-investment-banking-page .nossas-liderancas .cards .card:nth-child(3), .page-template-seja-um-parceiro-page .nossas-liderancas .cards .card:nth-child(3), .page-template-credito-corporativo-page .nossas-liderancas .cards .card:nth-child(3), .page-template-asset-management-page .nossas-liderancas .cards .card:nth-child(3) {
  margin-top: 32px;
}

.page-template-wealth-management-page .nossas-liderancas {
  background: #F2F2F2 !important;
}
@media (max-width: 768px) {
  .page-template-wealth-management-page .nossas-liderancas .cards .card:last-child {
    margin-bottom: 0px;
  }
}
.page-template-wealth-management-page .nossa-atuacao .itens .item .box-title-item .title {
  font-family: "Avenir";
}

.page-template-investimentos-alternativos-page .topo-interna .box-text, .page-template-investment-banking-page .topo-interna .box-text, .page-template-asset-management-page .topo-interna .box-text {
  width: 580px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .topo-interna .box-text, .page-template-investment-banking-page .topo-interna .box-text, .page-template-asset-management-page .topo-interna .box-text {
    width: 265px;
  }
}
.page-template-investimentos-alternativos-page .numeros, .page-template-investment-banking-page .numeros, .page-template-asset-management-page .numeros {
  justify-content: center;
  gap: 16px;
}
.page-template-investimentos-alternativos-page .boxs, .page-template-investment-banking-page .boxs, .page-template-asset-management-page .boxs {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .boxs, .page-template-investment-banking-page .boxs, .page-template-asset-management-page .boxs {
    display: block;
  }
}
.page-template-investimentos-alternativos-page .boxs .box-title, .page-template-investment-banking-page .boxs .box-title, .page-template-asset-management-page .boxs .box-title {
  height: auto;
}
.page-template-investimentos-alternativos-page .boxs .itens .item:last-child, .page-template-investment-banking-page .boxs .itens .item:last-child, .page-template-asset-management-page .boxs .itens .item:last-child {
  margin-bottom: 0px;
}
.page-template-investimentos-alternativos-page .nossa-atuacao, .page-template-investment-banking-page .nossa-atuacao, .page-template-asset-management-page .nossa-atuacao {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao, .page-template-investment-banking-page .nossa-atuacao, .page-template-asset-management-page .nossa-atuacao {
    padding: 64px 0;
    overflow: hidden;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao h2, .page-template-investment-banking-page .nossa-atuacao h2, .page-template-asset-management-page .nossa-atuacao h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao h2, .page-template-investment-banking-page .nossa-atuacao h2, .page-template-asset-management-page .nossa-atuacao h2 {
    width: 248px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao h2 br, .page-template-investment-banking-page .nossa-atuacao h2 br, .page-template-asset-management-page .nossa-atuacao h2 br {
    display: none;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .desc, .page-template-investment-banking-page .nossa-atuacao .desc, .page-template-asset-management-page .nossa-atuacao .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .desc, .page-template-investment-banking-page .nossa-atuacao .desc, .page-template-asset-management-page .nossa-atuacao .desc {
    width: 100%;
    margin-top: 16px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .desc p, .page-template-investment-banking-page .nossa-atuacao .desc p, .page-template-asset-management-page .nossa-atuacao .desc p {
  font-size: 24px;
  color: #000;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .desc p, .page-template-investment-banking-page .nossa-atuacao .desc p, .page-template-asset-management-page .nossa-atuacao .desc p {
    font-size: 12px;
    margin-block-end: 0px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .box-title, .page-template-investment-banking-page .nossa-atuacao .box-title, .page-template-asset-management-page .nossa-atuacao .box-title {
  display: flex;
  align-items: center;
  margin: 0 0 64px 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .box-title, .page-template-investment-banking-page .nossa-atuacao .box-title, .page-template-asset-management-page .nossa-atuacao .box-title {
    margin: 0 0 32px 0 !important;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .box-title .title, .page-template-investment-banking-page .nossa-atuacao .box-title .title, .page-template-asset-management-page .nossa-atuacao .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .box-title .title, .page-template-investment-banking-page .nossa-atuacao .box-title .title, .page-template-asset-management-page .nossa-atuacao .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
    padding-right: 0px;
    margin-right: 16px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .box-title .line, .page-template-investment-banking-page .nossa-atuacao .box-title .line, .page-template-asset-management-page .nossa-atuacao .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick {
  width: 100%;
  float: left;
  margin-top: 48px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick {
    width: 106%;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-stage, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-stage, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-stage, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-stage, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-stage, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-stage {
    padding-left: 0px !important;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-nav, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-nav, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-nav {
  position: absolute;
  left: 0px;
  top: -119px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-nav, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-nav, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-nav, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-nav {
    display: none;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-prev, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-prev, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-prev, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-prev, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-prev, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgba(45, 78, 122, 0.7) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-prev:hover, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-prev:hover, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-prev:hover, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-prev:hover, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-prev:hover, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-prev:hover {
  border: 1px solid rgb(45, 78, 122) !important;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-next, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-next, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-next, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-next, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-next, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgba(45, 78, 122, 0.7) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-next:hover, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-next:hover, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-next:hover, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-next:hover, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-next:hover, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-next:hover {
  border: 1px solid rgb(45, 78, 122) !important;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .owl-nav .disabled, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .owl-nav .disabled, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .owl-nav .disabled, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .owl-nav .disabled, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .owl-nav .disabled, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .owl-nav .disabled {
  border: 1px solid transparent;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao {
  height: 402px;
  padding: 16px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #002759;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao {
    width: 100% !important;
    height: 252px;
    padding: 16px 14px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .box-img, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .box-img {
    height: 134px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #fff;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title {
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title br, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title br, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title br, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title br, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .title br, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .title br {
    display: none;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text {
  width: 100%;
  float: left;
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 24px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao .text p, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao .text p {
    font-size: 12px;
    margin-block-start: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .atuacao:first-child, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .atuacao:first-child, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .atuacao:first-child, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .atuacao:first-child, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .atuacao:first-child, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .atuacao:first-child {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-asset .slick-list, .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick .slick-list, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-asset .slick-list, .page-template-investment-banking-page .nossa-atuacao .nossa-atuacao-slick .slick-list, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-asset .slick-list, .page-template-asset-management-page .nossa-atuacao .nossa-atuacao-slick .slick-list {
    padding: 0 100px 0 0 !important;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento, .page-template-investment-banking-page .fundos-de-investimento, .page-template-asset-management-page .fundos-de-investimento {
  width: 100%;
  float: left;
  background: #fff;
  padding: 0 0 128px 0;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento, .page-template-investment-banking-page .fundos-de-investimento, .page-template-asset-management-page .fundos-de-investimento {
    padding: 48px 0;
    overflow: hidden;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento h2, .page-template-investment-banking-page .fundos-de-investimento h2, .page-template-asset-management-page .fundos-de-investimento h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento h2, .page-template-investment-banking-page .fundos-de-investimento h2, .page-template-asset-management-page .fundos-de-investimento h2 {
    width: 100%;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento h2 br, .page-template-investment-banking-page .fundos-de-investimento h2 br, .page-template-asset-management-page .fundos-de-investimento h2 br {
    display: none;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .desc, .page-template-investment-banking-page .fundos-de-investimento .desc, .page-template-asset-management-page .fundos-de-investimento .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .desc, .page-template-investment-banking-page .fundos-de-investimento .desc, .page-template-asset-management-page .fundos-de-investimento .desc {
    width: 248px;
    margin-top: 16px;
    text-align: right;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .desc p, .page-template-investment-banking-page .fundos-de-investimento .desc p, .page-template-asset-management-page .fundos-de-investimento .desc p {
  font-size: 24px;
  color: #000;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .desc p, .page-template-investment-banking-page .fundos-de-investimento .desc p, .page-template-asset-management-page .fundos-de-investimento .desc p {
    font-size: 12px;
    margin-block-end: 0px;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset {
  width: 100%;
  float: left;
  margin-top: 134px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset {
    width: 106%;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-stage, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-stage, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-stage {
    padding-left: 0px !important;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav {
  position: absolute;
  left: 0px;
  top: -119px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav {
    display: none;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgba(45, 78, 122, 0.7) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev:hover, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev:hover, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-prev:hover {
  border: 2px solid rgb(45, 78, 122) !important;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgba(45, 78, 122, 0.7) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next:hover, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next:hover, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-next:hover {
  border: 2px solid rgb(45, 78, 122) !important;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav .disabled, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav .disabled, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .owl-nav .disabled {
  border: 1px solid transparent;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo {
  height: 294px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #186DFF;
  background: #FAFAFA;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo {
    width: 100% !important;
    height: 204px;
    padding: 16px 15px;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .tag, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .tag, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .tag {
  width: 100%;
  min-height: 15.5px;
  float: left;
  font-size: 16px;
  color: #186DFF;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #000;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .title {
    font-size: 16px;
    margin-top: 8px;
  }
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text {
  width: 100%;
  float: left;
}
.page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p {
  color: #000;
  font-size: 16px;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 16px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .fundo .text p {
    font-size: 12px;
    margin-block-start: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .fundos-de-investimento .fundos-de-investimento-asset .atuacao:first-child, .page-template-investment-banking-page .fundos-de-investimento .fundos-de-investimento-asset .atuacao:first-child, .page-template-asset-management-page .fundos-de-investimento .fundos-de-investimento-asset .atuacao:first-child {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .topo-interna h1 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao h2 {
    text-align: right;
    width: 248px;
    float: right;
  }
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .desc {
    width: 248px;
    float: right;
    text-align: right;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .nossa-atuacao-slick {
    margin-top: 32px;
  }
}
.page-template-investimentos-alternativos-page .nossa-atuacao .atuacao {
  height: 446px !important;
}
@media (max-width: 768px) {
  .page-template-investimentos-alternativos-page .nossa-atuacao .atuacao {
    height: 316px !important;
  }
}
.page-template-investimentos-alternativos-page .nossas-liderancas {
  background: #F2F2F2 !important;
}
.page-template-investimentos-alternativos-page .nossa-atuacao-slick .atuacao {
  padding: 16px 16px 24px 16px !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .page-template-investment-banking-page h1 br {
    display: none;
  }
}
.page-template-investment-banking-page .numeros .box {
  width: 288px;
}
.page-template-investment-banking-page .numeros .box .desc p {
  line-height: normal;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .box-title-section .desc {
    width: 270px !important;
  }
}
.page-template-investment-banking-page .diferenciais .itens .item .title {
  align-items: start;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao .desc p {
    margin-block-end: 1em;
  }
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 {
  width: 100%;
  float: left;
  margin-top: 64px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 {
    width: 106%;
    margin-top: 32px;
  }
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao {
  height: 402px;
  padding: 16px 15px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #002759;
  float: left;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao {
    height: auto;
  }
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .box-img {
    height: 38vw;
  }
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #fff;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .title {
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .title br {
    display: none;
  }
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .text {
  width: 100%;
  float: left;
}
.page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 24px;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .nossa-atuacao-slick-2 .atuacao .text p {
    font-size: 12px;
    margin-block-start: 8px;
  }
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .owl-stage {
    padding-left: 0px !important;
  }
}
.page-template-investment-banking-page .owl-nav {
  position: absolute;
  left: 0px;
  top: -119px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-template-investment-banking-page .owl-nav {
    display: none;
  }
}
.page-template-investment-banking-page .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.page-template-investment-banking-page .owl-prev:hover {
  border: 1px solid #fff;
}
.page-template-investment-banking-page .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.page-template-investment-banking-page .owl-next:hover {
  border: 1px solid #fff;
}
.page-template-investment-banking-page .owl-nav .disabled {
  border: 1px solid transparent;
}
.page-template-investment-banking-page .nossas-liderancas .cards .card {
  margin-top: 32px;
}

.mergers {
  width: 100%;
  float: left;
  background: #F2F2F2;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .mergers {
    padding: 64px 0;
    overflow: hidden;
  }
}
.mergers h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .mergers h2 br {
    display: none;
  }
}
.mergers .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .mergers .desc {
    width: 100%;
    margin-top: 16px;
  }
}
.mergers .desc p {
  font-size: 24px;
  color: #000;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .mergers .desc p {
    font-size: 12px;
  }
}
.mergers .box-title {
  display: flex;
  align-items: center;
  margin: 0 0 64px 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .mergers .box-title {
    margin: 0 0 32px 0;
  }
}
.mergers .box-title .title {
  font-family: "AvenirHeavy";
  font-size: 40px;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .mergers .box-title .title {
    font-size: 20px;
    letter-spacing: normal;
  }
}
.mergers .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.mergers .box-title-transacoes {
  width: 100%;
  float: left;
  margin-top: 128px;
}
@media (max-width: 768px) {
  .mergers .box-title-transacoes {
    display: none;
  }
}
.mergers .box-title-transacoes .title {
  width: 278px;
  border-top: 1px solid #002759;
  border-bottom: 1px solid #002759;
  float: left;
  padding: 29px 54.5px;
  font-family: "AvenirHeavy";
  font-size: 20px;
  line-height: 30px;
  color: #002759;
  letter-spacing: 4px;
}
.mergers .box-title-transacoes .desc {
  width: 584px;
  float: right;
}
.mergers .transacoes-slick {
  width: 100%;
  float: left;
  margin-top: 119px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick {
    width: 106%;
    margin-top: 32px;
  }
}
.mergers .transacoes-slick .transacao {
  height: 247px;
  border-radius: 4px;
  border: 1px solid #8B8B8B;
  background: #fff;
  float: left;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .transacao {
    height: 203px;
  }
}
.mergers .transacoes-slick .transacao .box-img {
  width: 100%;
  height: 167px;
  float: left;
  position: relative;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .transacao .box-img {
    height: 115px;
    background-size: contain !important;
  }
}
.mergers .transacoes-slick .transacao .box-img .tag {
  width: auto;
  padding: 0 8px;
  height: 16px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #58789A;
  border-bottom-right-radius: 4px;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mergers .transacoes-slick .transacao .box-img .tag-2 {
  background: #2D4E7A;
}
.mergers .transacoes-slick .transacao .box-img .tag-3 {
  background: #002759;
}
.mergers .transacoes-slick .transacao .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "Avenir";
  font-size: 12px;
  color: #000;
  margin-top: 16px;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .transacao .title {
    font-size: 12px;
    margin-top: 8px;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .transacao .title br {
    display: none;
  }
}
.mergers .transacoes-slick .transacao .text {
  width: 100%;
  float: left;
}
.mergers .transacoes-slick .transacao .text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 24px;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .transacao .text p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .owl-stage {
    padding-left: 0px !important;
  }
}
.mergers .transacoes-slick .owl-nav {
  position: absolute;
  left: 0px;
  top: -87px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .mergers .transacoes-slick .owl-nav {
    display: none;
  }
}
.mergers .transacoes-slick .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.mergers .transacoes-slick .owl-prev:hover {
  border: 1px solid #fff;
}
.mergers .transacoes-slick .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.mergers .transacoes-slick .owl-next:hover {
  border: 1px solid #fff;
}
.mergers .transacoes-slick .owl-nav .disabled {
  border: 1px solid transparent;
}

.debit-capital-market, .assessoria-financeira {
  width: 100%;
  float: left;
  background: #fff;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .debit-capital-market, .assessoria-financeira {
    padding: 64px 0;
    overflow: hidden;
  }
}
.debit-capital-market h2, .assessoria-financeira h2 {
  color: #000;
  float: left;
}
@media (max-width: 768px) {
  .debit-capital-market h2 br, .assessoria-financeira h2 br {
    display: none;
  }
}
.debit-capital-market .desc, .assessoria-financeira .desc {
  width: 584px;
  float: right;
}
@media (max-width: 768px) {
  .debit-capital-market .desc, .assessoria-financeira .desc {
    width: 100%;
    margin-top: 16px;
  }
}
.debit-capital-market .desc p, .assessoria-financeira .desc p {
  font-size: 24px;
  color: #000;
  margin-block-start: 0px;
}
@media (max-width: 768px) {
  .debit-capital-market .desc p, .assessoria-financeira .desc p {
    font-size: 12px;
  }
}
.debit-capital-market .desc p:last-child, .assessoria-financeira .desc p:last-child {
  margin-block-end: 0px;
}
.debit-capital-market .box-title, .assessoria-financeira .box-title {
  display: flex;
  align-items: center;
  margin: 0 0 64px 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .debit-capital-market .box-title, .assessoria-financeira .box-title {
    margin: 0 0 32px 0;
  }
}
.debit-capital-market .box-title .title, .assessoria-financeira .box-title .title {
  font-family: "AvenirHeavy";
  font-size: 40px;
  padding: 0 10px;
  color: #002759;
}
@media (max-width: 768px) {
  .debit-capital-market .box-title .title, .assessoria-financeira .box-title .title {
    font-size: 20px;
    letter-spacing: normal;
  }
}
.debit-capital-market .box-title .line, .assessoria-financeira .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.debit-capital-market .nossa-atuacao-slick-2, .assessoria-financeira .nossa-atuacao-slick-2 {
  width: 100%;
  float: left;
  margin-top: 64px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2, .assessoria-financeira .nossa-atuacao-slick-2 {
    width: 106%;
    margin-top: 24px;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .atuacao, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao {
  width: 276px;
  height: 432px;
  padding: 16px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #002759;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao {
    height: 274px;
    width: 100%;
    padding: 16px 15px;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .atuacao .box-img, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .box-img, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .box-img {
    height: 38vw;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .atuacao .title, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #fff;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .title, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .title {
    font-size: 16px;
    margin-top: 8px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .title br, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .title br {
    display: none;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .atuacao .text, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .text {
  width: 100%;
  float: left;
}
.debit-capital-market .nossa-atuacao-slick-2 .atuacao .text p, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 24px;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .text p, .assessoria-financeira .nossa-atuacao-slick-2 .atuacao .text p {
    font-size: 12px;
    margin-block-start: 8px;
  }
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .owl-stage, .assessoria-financeira .nossa-atuacao-slick-2 .owl-stage {
    padding-left: 0px !important;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-stage .owl-item:last-child, .assessoria-financeira .nossa-atuacao-slick-2 .owl-stage .owl-item:last-child {
  margin-right: 0px !important;
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-nav, .assessoria-financeira .nossa-atuacao-slick-2 .owl-nav {
  position: absolute;
  left: 0px;
  top: -87px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .owl-nav, .assessoria-financeira .nossa-atuacao-slick-2 .owl-nav {
    display: none;
  }
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-prev, .assessoria-financeira .nossa-atuacao-slick-2 .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-prev:hover, .assessoria-financeira .nossa-atuacao-slick-2 .owl-prev:hover {
  border: 1px solid #fff;
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-next, .assessoria-financeira .nossa-atuacao-slick-2 .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-next:hover, .assessoria-financeira .nossa-atuacao-slick-2 .owl-next:hover {
  border: 1px solid #fff;
}
.debit-capital-market .nossa-atuacao-slick-2 .owl-nav .disabled, .assessoria-financeira .nossa-atuacao-slick-2 .owl-nav .disabled {
  border: 1px solid transparent;
}
.debit-capital-market .slick-prev, .debit-capital-market .slick-prev:hover, .debit-capital-market .slick-prev:focus, .assessoria-financeira .slick-prev, .assessoria-financeira .slick-prev:hover, .assessoria-financeira .slick-prev:focus {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2.png") no-repeat center center;
  transform: rotate(180deg);
  top: -104px;
  left: 0px;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
  border-radius: 4px;
}
.debit-capital-market .slick-prev:before, .assessoria-financeira .slick-prev:before {
  display: none;
}
.debit-capital-market .slick-prev:hover, .assessoria-financeira .slick-prev:hover {
  opacity: 1 !important;
  border: 0.1px solid rgb(0, 39, 89);
}
.debit-capital-market .slick-prev.slick-disabled, .debit-capital-market .slick-next.slick-disabled, .assessoria-financeira .slick-prev.slick-disabled, .assessoria-financeira .slick-next.slick-disabled {
  opacity: 0.25 !important;
  cursor: default;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
}
.debit-capital-market .slick-next, .debit-capital-market .slick-next:hover, .debit-capital-market .slick-next:focus, .assessoria-financeira .slick-next, .assessoria-financeira .slick-next:hover, .assessoria-financeira .slick-next:focus {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2.png") no-repeat center center;
  top: -76px;
  left: 87px;
  border: 0.5px solid rgba(45, 78, 122, 0.8);
  border-radius: 4px;
}
.debit-capital-market .slick-next:before, .assessoria-financeira .slick-next:before {
  display: none;
}
.debit-capital-market .slick-next:hover, .assessoria-financeira .slick-next:hover {
  opacity: 1 !important;
  border: 0.1px solid rgb(0, 39, 89);
}
.debit-capital-market .slick-next.slick-disabled, .debit-capital-market .slick-next.slick-disabled, .assessoria-financeira .slick-next.slick-disabled, .assessoria-financeira .slick-next.slick-disabled {
  opacity: 0.25 !important;
  cursor: default;
}
@media (max-width: 768px) {
  .debit-capital-market .slick-track, .assessoria-financeira .slick-track {
    display: flex;
  }
}
.debit-capital-market .seja-um-parceiro, .assessoria-financeira .seja-um-parceiro {
  width: 100%;
  height: 415px;
  background: #F2F2F2;
  border: 1px solid #002759;
  float: left;
  border-radius: 16px;
  padding: 32px;
  margin-top: 128px;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro, .assessoria-financeira .seja-um-parceiro {
    margin-top: 48px;
    padding: 16px;
    height: auto;
  }
}
.debit-capital-market .seja-um-parceiro .box-title, .assessoria-financeira .seja-um-parceiro .box-title {
  margin-bottom: 32px;
}
.debit-capital-market .seja-um-parceiro .title, .assessoria-financeira .seja-um-parceiro .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .title, .assessoria-financeira .seja-um-parceiro .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.debit-capital-market .seja-um-parceiro .img, .assessoria-financeira .seja-um-parceiro .img {
  display: block;
  float: left;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .img, .assessoria-financeira .seja-um-parceiro .img {
    width: 100%;
  }
}
.debit-capital-market .seja-um-parceiro .box-text, .assessoria-financeira .seja-um-parceiro .box-text {
  width: 591px;
  float: right;
  margin-top: 15.5px;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .box-text, .assessoria-financeira .seja-um-parceiro .box-text {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.debit-capital-market .seja-um-parceiro .box-text .title, .assessoria-financeira .seja-um-parceiro .box-text .title {
  font-family: "AvenirHeavy";
  font-size: 24px;
  letter-spacing: initial;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .box-text .title, .assessoria-financeira .seja-um-parceiro .box-text .title {
    font-size: 20px;
    text-align: center;
    line-height: normal;
  }
}
.debit-capital-market .seja-um-parceiro .box-text .text, .assessoria-financeira .seja-um-parceiro .box-text .text {
  width: 100%;
  float: left;
}
.debit-capital-market .seja-um-parceiro .box-text .text p, .assessoria-financeira .seja-um-parceiro .box-text .text p {
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .box-text .text p, .assessoria-financeira .seja-um-parceiro .box-text .text p {
    margin-block-start: 16px;
    margin-block-end: 0px;
    font-size: 12px;
    text-align: center;
  }
}
.debit-capital-market .seja-um-parceiro .box-text .btn, .assessoria-financeira .seja-um-parceiro .box-text .btn {
  float: right;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .debit-capital-market .seja-um-parceiro .box-text .btn, .assessoria-financeira .seja-um-parceiro .box-text .btn {
    margin-top: 24px;
  }
}

.debit-capital-market .nossa-atuacao-slick-2 .atuacao .title br {
  display: none;
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .title br {
    display: block;
  }
}
@media (max-width: 768px) {
  .debit-capital-market .nossa-atuacao-slick-2 .atuacao .box-img {
    height: 134px;
  }
}

.nossa-atuacao-dcm {
  width: 100%;
  float: left;
  margin-top: 64px;
  margin-bottom: 0px !important;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm {
    width: 106%;
    margin-top: 24px;
  }
}
.nossa-atuacao-dcm .atuacao {
  width: 276px;
  height: auto;
  float: left;
  padding: 16px;
  border-radius: 16px;
  border: 0.5px solid #002759;
  background: #002759;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .atuacao {
    height: 274px;
    width: 100%;
    padding: 16px 15px;
  }
}
.nossa-atuacao-dcm .atuacao .box-img {
  width: 100%;
  height: 196px;
  float: left;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .atuacao .box-img {
    height: 38vw;
  }
}
.nossa-atuacao-dcm .atuacao .title {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #fff;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .atuacao .title {
    font-size: 16px;
    margin-top: 8px;
    padding: 0;
  }
}
.nossa-atuacao-dcm .atuacao .text {
  width: 100%;
  float: left;
}
.nossa-atuacao-dcm .atuacao .text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: initial;
  margin-block-end: 0px;
  margin-block-start: 24px;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .atuacao .text p {
    font-size: 12px;
    margin-block-start: 8px;
  }
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .owl-stage {
    padding-left: 0px !important;
  }
}
.nossa-atuacao-dcm .owl-stage .owl-item:last-child {
  margin-right: 0px !important;
}
.nossa-atuacao-dcm .owl-nav {
  position: absolute;
  left: 0px;
  top: -87px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .nossa-atuacao-dcm .owl-nav {
    display: none;
  }
}
.nossa-atuacao-dcm .owl-prev {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-prev.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.nossa-atuacao-dcm .owl-prev:hover {
  border: 1px solid #fff;
}
.nossa-atuacao-dcm .owl-next {
  width: 55px;
  height: 55px;
  background: url("../../imagens/arrow-2-next.png") no-repeat top center !important;
  border: 1px solid rgb(45, 78, 122) !important;
  border-radius: 4px !important;
  margin: 0 0 0 32px !important;
  padding: 0px !important;
}
.nossa-atuacao-dcm .owl-next:hover {
  border: 1px solid #fff;
}
.nossa-atuacao-dcm .owl-nav .disabled {
  border: 1px solid transparent;
}

.assessoria-financeira {
  background: #F2F2F2;
}
.assessoria-financeira .nossa-atuacao-slick-2 .atuacao {
  height: auto;
}
@media (max-width: 768px) {
  .assessoria-financeira .nossa-atuacao-slick-2 .atuacao {
    height: auto;
  }
}

.nossas-liderancas {
  background: #fff !important;
}

.page-template-seja-um-parceiro-page .topo-interna {
  height: 885px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .topo-interna {
    height: 485px;
  }
}
.page-template-seja-um-parceiro-page .topo-interna .box-text {
  margin-top: 385px;
}
.page-template-seja-um-parceiro-page .topo-interna .btn {
  float: right;
  background: #fff;
  color: #002759;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .topo-interna .btn {
    height: 32px;
  }
}
.page-template-seja-um-parceiro-page .topo-interna .btn:hover {
  color: #C89116;
}
.page-template-seja-um-parceiro-page .numeros {
  justify-content: center;
  gap: 16px;
}
.page-template-seja-um-parceiro-page .box-title-section .btn {
  float: right;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .box-title-section .btn {
    height: 32px;
  }
}
.page-template-seja-um-parceiro-page .diferenciais .itens .item {
  border-bottom: 0px;
}
.page-template-seja-um-parceiro-page .diferenciais .itens .item .ico {
  width: 36px;
  height: 36px;
  float: left;
  border-radius: 4px;
  background: rgba(0, 39, 89, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 0px !important;
  margin-right: 8px;
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .diferenciais .itens .item .ico {
    font-size: 16px;
    padding-top: 3px;
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .diferenciais .itens .item .title {
    align-items: center;
  }
}
.page-template-seja-um-parceiro-page .diferenciais .itens .item .text {
  padding: 0 24px 0 45px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .diferenciais .itens .item .text {
    padding: 0 24px 0 34px;
  }
}
.page-template-seja-um-parceiro-page .nossa-atuacao {
  padding-top: 0px;
}
.page-template-seja-um-parceiro-page .nossa-atuacao .itens {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .nossa-atuacao .itens {
    margin-top: 48px;
  }
}
.page-template-seja-um-parceiro-page .nossa-atuacao .itens .item {
  padding-left: 16px;
}
.page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text p {
  margin-block-start: 8px;
  margin-block-end: 8px;
}
.page-template-seja-um-parceiro-page .nossa-atuacao .itens .item .text p span {
  color: #002759;
}
.page-template-seja-um-parceiro-page .nossa-atuacao .itens .item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.page-template-seja-um-parceiro-page .hot-deals {
  width: 100%;
  float: left;
  background: #F2F2F2;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals {
    padding: 64px 0;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .box-title {
  display: flex;
  align-items: center;
  margin: 0 0 64px 0;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .box-title {
    margin: 0 0 32px 0;
    flex-direction: row;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 0 16px 0 0;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.page-template-seja-um-parceiro-page .hot-deals .desc {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #000;
  line-height: 30px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .desc {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .desc br {
    display: none;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-tab {
  width: 100%;
  float: left;
  background: #fff;
  border: 1px solid #002759;
  border-radius: 16px;
  padding: 16px 64px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-tab {
    padding: 16px 8px;
    margin-top: 32px;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul li {
  width: 146px;
  padding: 10px 0 7px 0;
  float: left;
  border: 1px solid #002759;
  border-radius: 8px;
  color: #002759;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul li {
    font-size: 12px;
    width: 95px;
    padding: 9px 0 7px 0;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul li:hover, .page-template-seja-um-parceiro-page .hot-deals .operacoes-tab ul .active {
  background: #002759;
  color: #fff;
  transition: 0.4s;
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content {
  width: 100%;
  float: left;
  position: relative;
  height: 212px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content {
    height: auto;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box {
  width: 100%;
  position: absolute;
  display: none;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box {
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 16px;
    position: static;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box-0 {
  display: flex;
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao {
  background: #fff;
  border: 1px solid #002759;
  padding: 16px;
  border-radius: 16px;
  width: 378.66px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao {
    padding: 16px 32px;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .title {
  width: 100%;
  height: 48px;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #000;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .title {
    font-size: 16px;
    text-align: center;
    height: auto;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .text {
    text-align: center;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .text p {
  font-size: 16px;
  line-height: normal;
  margin-block-start: 16px;
  margin-block-end: 0px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .operacao .text p {
    font-size: 12px;
    margin-block-start: 8px;
    line-height: 16px;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box-2 .operacao {
  width: 584px;
}
@media (max-width: 768px) {
  .page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box-2 .operacao {
    width: 100%;
  }
}
.page-template-seja-um-parceiro-page .hot-deals .operacoes-content .box-4 .operacao {
  width: 100%;
}

@media (max-width: 768px) {
  .page-template-credito-corporativo-page .topo-interna h1 br {
    display: none;
  }
}
.page-template-credito-corporativo-page .topo-interna .box-text {
  width: 584px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .topo-interna .box-text {
    width: 265px;
  }
}
.page-template-credito-corporativo-page .nossa-atuacao .box-title {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .nossa-atuacao .box-title {
    margin-bottom: 32px !important;
  }
}
.page-template-credito-corporativo-page .nossa-atuacao .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.page-template-credito-corporativo-page .nossa-atuacao .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
  color: #002759;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .nossa-atuacao .box-title .title {
    font-size: 12px;
    letter-spacing: 0px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion {
  width: 100%;
  float: left;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao {
  width: 100%;
  float: left;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao {
  width: 100%;
  float: left;
  padding: 24px;
  background: #002759;
  border-radius: 16px;
  border: 1px solid #F2F2F2;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .title {
    font-size: 16px;
    text-align: center;
    line-height: normal;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .text {
    text-align: center;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .text p {
  font-size: 16px;
  line-height: normal;
  color: #fff;
  margin-inline-start: 16px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .text p {
    font-size: 12px;
    margin-block-start: 16px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn {
  float: right;
  display: flex;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn {
    align-items: center;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn .ver {
  font-family: "AvenirHeavy";
  font-size: 16px;
  color: #fff;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn .ver {
    font-size: 12px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn .ico {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
  float: left;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .box-btn .ico svg path {
  fill: #002759;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .box-atuacao .active svg {
  transform: rotateX(180deg);
  margin-top: -1px;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content {
  width: 100%;
  float: left;
  position: relative;
  height: auto;
  display: none;
  margin-top: -32px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content {
    margin-top: -16px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .box {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .box-0 {
  display: flex;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item {
  background: #F2F2F2;
  border: 1px solid #002759;
  padding: 16px;
  border-radius: 16px;
  width: 389px;
  float: left;
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 24px;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .title {
    font-size: 16px;
    text-align: center;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .text {
    text-align: center;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .text p {
  font-size: 16px;
  line-height: normal;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao .atuacao-content .item .text p {
    font-size: 12px;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao:nth-child(2) .atuacao-content .item {
  width: 288px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .atuacoes-accordion .atuacao:nth-child(2) .atuacao-content .item {
    width: 100%;
  }
}
.page-template-credito-corporativo-page .atuacoes-accordion .atuacao:nth-child(3) .atuacao-content .item, .page-template-credito-corporativo-page .atuacoes-accordion .atuacao:nth-child(4) .atuacao-content .item, .page-template-credito-corporativo-page .atuacoes-accordion .atuacao:nth-child(5) .atuacao-content .item {
  width: 592px;
}
.page-template-credito-corporativo-page .seja-um-parceiro-box {
  width: 100%;
  padding: 128px 0;
  float: left;
  background: url("../../imagens/clientes-bg.jpg") no-repeat top center;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box {
    padding: 64px 0;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro {
  width: 100%;
  height: 415px;
  background: #060F2D;
  border: 1px solid #C89116;
  float: left;
  border-radius: 16px;
  padding: 32px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro {
    padding: 16px;
    height: auto;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-title {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #C89116;
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
  color: #C89116;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .img {
  display: block;
  float: left;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .img {
    width: 100%;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text {
  width: 591px;
  float: right;
  margin-top: 15.5px;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .title {
  font-family: "AvenirHeavy";
  font-size: 24px;
  letter-spacing: initial;
  color: #fff;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .title {
    font-size: 20px;
    line-height: normal;
    text-align: center;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .text {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .text {
    text-align: center;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .text p {
  font-size: 16px;
  line-height: normal;
  color: #fff;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .text p {
    font-size: 12px;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .btn {
  float: right;
  margin-top: 48px;
  background: #fff;
  color: #002759;
}
@media (max-width: 768px) {
  .page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .btn {
    margin-top: 24px;
  }
}
.page-template-credito-corporativo-page .seja-um-parceiro-box .seja-um-parceiro .box-text .btn:hover {
  color: #C89116;
}
.page-template-credito-corporativo-page .nossas-liderancas {
  background: #F2F2F2 !important;
}

@media (max-width: 768px) {
  .page-template-asset-management-page .topo-interna {
    background-position: 80% 0px !important;
  }
}
.page-template-asset-management-page .topo-interna .box-text {
  width: 585px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .topo-interna .box-text {
    width: 265px;
  }
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossa-atuacao {
    padding-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossa-atuacao h2 {
    width: 100%;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossa-atuacao .desc {
    text-align: right;
    width: 248px;
  }
}
.page-template-asset-management-page .nossas-liderancas {
  background: #F2F2F2 !important;
}
.page-template-asset-management-page .nossas-liderancas .desc {
  width: 481px;
  float: left;
  padding: 0px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossas-liderancas .desc {
    width: 100%;
    text-align: center;
  }
}
.page-template-asset-management-page .nossas-liderancas .cards {
  width: 671px;
  float: right;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossas-liderancas .cards {
    width: 100%;
    margin-top: 32px;
  }
}
.page-template-asset-management-page .nossas-liderancas .cards .card {
  width: 100%;
}
.page-template-asset-management-page .nossas-liderancas .cards .card .box-img {
  width: 327px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .nossas-liderancas .cards .card .box-img {
    width: 234px;
    height: 273px;
  }
}
.page-template-asset-management-page .nossas-liderancas .cards .card .box-img img {
  object-position: top;
}
.page-template-asset-management-page .nossas-liderancas .cards .card .box-text {
  width: 341px;
}
.page-template-asset-management-page .cartas-mensais {
  width: 100%;
  float: left;
  padding: 128px 0;
  background: url("../../imagens/cartas-mensais-bg.jpg") no-repeat top center;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais {
    padding: 64px 0;
  }
}
.page-template-asset-management-page .cartas-mensais .box-title {
  display: flex;
  align-items: center;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .box-title {
    padding-bottom: 32px;
  }
}
.page-template-asset-management-page .cartas-mensais .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px;
  color: #C89116;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .box-title .title {
    font-family: "Avenir";
    font-weight: normal;
    font-size: 12px;
    letter-spacing: normal;
  }
}
.page-template-asset-management-page .cartas-mensais .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #C89116;
}
.page-template-asset-management-page .cartas-mensais .content {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.page-template-asset-management-page .cartas-mensais .content .box-1 {
  width: 584px;
  float: left;
  padding: 32px;
  border: 1px solid #C89116;
  background: #060F2D;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .content .box-1 {
    width: 100%;
    margin-bottom: 32px;
  }
}
.page-template-asset-management-page .cartas-mensais .content .box-1 .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .content .box-1 .title {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 16px;
  }
}
.page-template-asset-management-page .cartas-mensais .content .box-1 .btn {
  background: #fff;
  color: #002759;
}
.page-template-asset-management-page .cartas-mensais .content .box-1 .btn:hover {
  color: #C89116;
}
.page-template-asset-management-page .cartas-mensais .content .box-2 {
  width: 584px;
  float: left;
  padding: 32px;
  border: 1px solid #C89116;
  background: #060F2D;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .content .box-2 {
    width: 100%;
  }
}
.page-template-asset-management-page .cartas-mensais .content .box-2 .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .content .box-2 .title {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 16px;
  }
}
.page-template-asset-management-page .cartas-mensais .content .box-2 .btn {
  background: #fff;
  color: #002759;
}
.page-template-asset-management-page .cartas-mensais .content .box-2 .btn:hover {
  color: #C89116;
}
.page-template-asset-management-page .cartas-mensais .content form {
  width: 100%;
  float: left;
}
.page-template-asset-management-page .cartas-mensais .content form .input {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 24px;
}
.page-template-asset-management-page .cartas-mensais .content form .input label {
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 12px;
  color: #fff;
}
.page-template-asset-management-page .cartas-mensais .content form input[type=text], .page-template-asset-management-page .cartas-mensais .content form input[type=email] {
  width: 100%;
  height: 64px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid rgba(242, 242, 242, 0.5);
  background: rgba(242, 242, 242, 0.2);
  padding: 9px 16px 0 16px;
  color: #fff;
  font-size: 20px;
  font-family: "Avenir";
  transition: 0.4s;
}
.page-template-asset-management-page .cartas-mensais .content form input[type=text]:hover, .page-template-asset-management-page .cartas-mensais .content form input[type=email]:hover, .page-template-asset-management-page .cartas-mensais .content form input[type=text]:focus, .page-template-asset-management-page .cartas-mensais .content form input[type=email]:focus {
  border: 0.5px solid rgb(242, 242, 242);
  transition: 0.4s;
}
.page-template-asset-management-page .cartas-mensais .content form .box-btn {
  position: relative;
  float: right;
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-asset-management-page .cartas-mensais .content form input[type=submit] {
  font-family: "Avenir";
  font-size: 20px;
  color: #002759;
  line-height: 30px;
  background: url("../../imagens/arrow_btn.svg") #fff no-repeat calc(100% - 15px) 14px;
  height: 46px;
  padding: 0 45px 0 16px;
  border-radius: 8px;
  border: 1px solid #C89116;
  float: right;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .page-template-asset-management-page .cartas-mensais .content form input[type=submit] {
    font-size: 12px;
    padding: 0 33px 0 16px;
  }
}
.page-template-asset-management-page .cartas-mensais .content form input[type=submit] img {
  padding-left: 16px;
}
.page-template-asset-management-page .cartas-mensais .content form input[type=submit]:hover {
  color: #C89116;
  transition: 0.4s;
}
.page-template-asset-management-page .cartas-mensais .content form .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: 10px;
  margin: 0 0 0 -120px;
}
.page-template-asset-management-page .cartas-mensais .content form .wpcf7-response-output {
  float: left;
  width: 100%;
  color: #fff;
  margin-top: 20px;
}

.conteudo {
  width: 100%;
  float: left;
}
.conteudo .categorias {
  width: 100%;
  float: left;
  margin-top: 160px;
  margin-bottom: 96px;
  border-top: 1px solid #002759;
  border-bottom: 1px solid #002759;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .conteudo .categorias {
    padding: 0px;
    border: 0px;
    margin-top: 114px;
    margin-bottom: 16px;
  }
}
.conteudo .categorias .explorar-temas {
  display: none;
}
@media (max-width: 768px) {
  .conteudo .categorias .explorar-temas {
    display: block;
    width: 100%;
    float: left;
    font-size: 16px;
    color: #002759;
    line-height: normal;
    padding: 9px 16px;
    background: rgba(0, 39, 89, 0.2);
    border: 1px solid #002759;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .conteudo .categorias .explorar-temas .ico {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #002759;
  }
}
.conteudo .categorias .explorar-temas.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.conteudo .categorias .explorar-temas.active .ico {
  transform: rotateX(180deg);
}
.conteudo .categorias ul {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .conteudo .categorias ul {
    display: none;
    flex-wrap: wrap;
    background: rgba(0, 39, 89, 0.2);
    border: 1px solid #002759;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top: 0px;
  }
}
.conteudo .categorias ul li {
  list-style: none;
  float: left;
}
@media (max-width: 768px) {
  .conteudo .categorias ul li {
    width: 100%;
    padding: 0 16px;
  }
}
.conteudo .categorias ul li a {
  font-size: 20px;
  color: #002759;
  line-height: 30px;
  background: rgba(0, 39, 89, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #002759;
}
@media (max-width: 768px) {
  .conteudo .categorias ul li a {
    width: 100%;
    border: 0px;
    background: transparent;
    font-size: 16px;
    line-height: normal;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 145, 22, 0.5);
    border-radius: 0px;
    float: left;
  }
}
@media (max-width: 768px) {
  .conteudo .categorias ul li:last-child a {
    border-bottom: 0px;
  }
}
.conteudo .categorias ul li:hover a {
  background: #002759;
  color: #fff;
}
@media (max-width: 768px) {
  .conteudo .categorias ul li:hover a {
    background: transparent;
    color: initial;
  }
}
.conteudo .categorias ul .active a {
  background: #002759;
  color: #fff;
}
.conteudo .box-title-e-search {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  justify-content: space-between;
}
.conteudo .title-ultimas {
  float: left;
  font-size: 40px;
  color: #303030;
  line-height: normal;
  font-family: "AvenirHeavy";
}
@media (max-width: 768px) {
  .conteudo .title-ultimas {
    display: none;
  }
}
.conteudo form {
  float: right;
  width: 276px;
  position: relative;
}
@media (max-width: 768px) {
  .conteudo form {
    width: 100%;
  }
}
.conteudo form input[type=text], .conteudo form input[type=search] {
  width: 100%;
  height: 55px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid #002759;
  background: rgba(0, 39, 89, 0.2);
  padding: 0 50px 0 15px;
}
@media (max-width: 768px) {
  .conteudo form input[type=text], .conteudo form input[type=search] {
    height: 40px;
  }
}
.conteudo form button {
  border: 0px;
  background: 0px;
  padding: 0px;
  position: absolute;
  right: 16px;
  top: 11.5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .conteudo form button {
    top: 8px;
  }
}
@media (max-width: 768px) {
  .conteudo form button img {
    height: 24px;
  }
}
.conteudo .ultimas-noticias {
  width: 100%;
  height: 679px;
  float: left;
  background: #002759;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 128px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias {
    padding: 24px 16px 16px 16px;
    height: auto;
    margin-bottom: 64px;
  }
}
.conteudo .ultimas-noticias .title-mobile {
  display: none;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .title-mobile {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-family: "AvenirHeavy";
    margin-bottom: 16px;
  }
}
.conteudo .ultimas-noticias .box-1 {
  width: 481px;
  height: 583px;
  float: left;
  background: #a1a1a1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 {
    width: 100%;
    height: 379px;
    margin-bottom: 32px;
  }
}
.conteudo .ultimas-noticias .box-1 .img-post {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conteudo .ultimas-noticias .box-1 .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0px;
  top: 0px;
}
.conteudo .ultimas-noticias .box-1 .info {
  width: 379px;
  height: 276px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 0 16px 0 0;
  background: rgba(0, 39, 89, 0.7);
  padding: 32px 16px 16px 16px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info {
    width: 254px;
    height: 196px;
    padding: 24px 16px 16px 16px;
  }
}
.conteudo .ultimas-noticias .box-1 .info .categoria {
  padding: 2px 8px 0px 8px;
  background: #002759;
  font-size: 12px;
  color: #fff;
  border-radius: 0px 0px 8px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.conteudo .ultimas-noticias .box-1 .info .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info .autor-e-data {
    margin-bottom: 8px;
  }
}
.conteudo .ultimas-noticias .box-1 .info .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info .title {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
  }
}
.conteudo .ultimas-noticias .box-1 .info .text {
  width: 100%;
  float: left;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info .text {
    display: none;
  }
}
.conteudo .ultimas-noticias .box-1 .info .text p {
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.conteudo .ultimas-noticias .box-1 .info .text-mobile {
  display: none;
  width: 100%;
  float: left;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info .text-mobile {
    display: block;
  }
}
.conteudo .ultimas-noticias .box-1 .info .text-mobile p {
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.conteudo .ultimas-noticias .box-1 .info .ler {
  float: right;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-1 .info .ler {
    display: none;
  }
}
.conteudo .ultimas-noticias .box-1 .info .ler .ico {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.conteudo .ultimas-noticias .box-1 .info .ler .ico svg path {
  fill: #002759;
}
.conteudo .ultimas-noticias .box-2 {
  width: 584px;
  height: 173px;
  float: right;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
}
.conteudo .ultimas-noticias .box-2 .box-img {
  width: 276px;
  height: 173px;
  float: left;
  border-radius: 8px;
  overflow: hidden;
  background: #a1a1a1;
  position: relative;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 .box-img {
    width: 155px;
    height: 96px;
  }
}
.conteudo .ultimas-noticias .box-2 .box-img .img-post {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conteudo .ultimas-noticias .box-2 .box-img .categoria-tag {
  padding: 2px 8px 0px 8px;
  background: #002759;
  font-size: 12px;
  color: #fff;
  border-radius: 0px 0px 8px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.conteudo .ultimas-noticias .box-2 .box-text {
  width: 276px;
  height: 173px;
  float: right;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 .box-text {
    width: calc(100% - 158px);
    height: 96px;
    padding-left: 16px;
  }
}
.conteudo .ultimas-noticias .box-2 .box-text .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 .box-text .autor-e-data {
    margin-bottom: 8px;
  }
}
.conteudo .ultimas-noticias .box-2 .box-text .title {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #fff;
  line-height: 30px;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 .box-text .title {
    font-size: 12px;
    line-height: normal;
    font-family: "AvenirHeavy";
  }
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info {
  width: 100%;
  float: left;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .box-ico {
  float: left;
  font-size: 12px;
  color: #D4D4D8;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .box-ico svg {
  margin-right: 4px;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .box-ico a {
  display: flex;
  align-items: center;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .box-ico a span {
  font-size: 12px;
  color: #D4D4D8;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .ler {
  float: right;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .conteudo .ultimas-noticias .box-2 .box-text .box-info .ler {
    display: none;
  }
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .ler .ico {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.conteudo .ultimas-noticias .box-2 .box-text .box-info .ler .ico svg path {
  fill: #002759;
}
.conteudo .ultimas-noticias .box-2:last-child {
  margin-bottom: 0px;
}
.conteudo .noticias-categoria {
  width: 100%;
  float: left;
  padding-bottom: 64px;
  margin-bottom: 128px;
  border-bottom: 1px solid #002759;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria {
    padding-bottom: 32px;
    margin-bottom: 64px;
  }
}
.conteudo .noticias-categoria h2 {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #303030;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria h2 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.conteudo .noticias-categoria .noticias {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias {
    margin-bottom: 0px;
  }
}
.conteudo .noticias-categoria .noticias article {
  width: 276px;
  height: 326px;
  float: left;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
  }
}
.conteudo .noticias-categoria .noticias article .box-img {
  width: 100%;
  height: 173px;
  float: left;
  border-radius: 8px;
  overflow: hidden;
  background: #a1a1a1;
  margin-bottom: 8px;
  position: relative;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article .box-img {
    margin-bottom: 16px;
  }
}
.conteudo .noticias-categoria .noticias article .box-img .img-post {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conteudo .noticias-categoria .noticias article .box-img .tag {
  padding: 0 8px;
  height: 16px;
  background: #002759;
  border-radius: 8px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.conteudo .noticias-categoria .noticias article .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #000;
  line-height: normal;
  margin-bottom: 4px;
}
.conteudo .noticias-categoria .noticias article .title {
  width: 100%;
  float: left;
  font-family: "AvenirHeavy";
  font-size: 16px;
  color: #000;
  line-height: normal;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article .title {
    font-family: "AvenirHeavy";
  }
}
.conteudo .noticias-categoria .noticias article .text {
  width: 100%;
  float: left;
  margin-bottom: 8.5px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article .text {
    display: none;
  }
}
.conteudo .noticias-categoria .noticias article .text p {
  font-size: 12px;
  color: #000;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.conteudo .noticias-categoria .noticias article .box-ico {
  float: left;
  font-size: 12px;
  color: #8B8B8B;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.conteudo .noticias-categoria .noticias article .box-ico svg {
  margin-right: 4px;
}
.conteudo .noticias-categoria .noticias article .box-ico a {
  display: flex;
  align-items: center;
}
.conteudo .noticias-categoria .noticias article .box-ico a span {
  font-size: 12px;
  color: #8B8B8B;
}
.conteudo .noticias-categoria .noticias article .ler {
  float: right;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
}
.conteudo .noticias-categoria .noticias article .ler .ico {
  width: 16px;
  height: 16px;
  background: #002759;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.conteudo .noticias-categoria .noticias article.destaque {
  width: 100%;
  height: 259px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque {
    height: auto;
    margin-bottom: 32px;
  }
}
.conteudo .noticias-categoria .noticias article.destaque .box-img {
  width: 449px;
  height: 259px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-img {
    width: 100%;
    height: 196px;
  }
}
.conteudo .noticias-categoria .noticias article.destaque .box-text {
  width: 719px;
  height: 259px;
  float: right;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-text {
    width: 100%;
    height: auto;
  }
}
.conteudo .noticias-categoria .noticias article.destaque .box-text .title {
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-text .title {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-text .text {
    display: block;
  }
}
.conteudo .noticias-categoria .noticias article.destaque .box-text .text p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-text .text p {
    font-size: 12px;
  }
}
.conteudo .noticias-categoria .noticias article.destaque .box-text .box-info {
  width: 100%;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias article.destaque .box-text .box-info .ler {
    display: none;
  }
}
.conteudo .noticias-categoria .noticias .owl-posts-conteudo {
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .noticias .owl-posts-conteudo .owl-stage {
    padding-left: 0px !important;
  }
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria article:last-child {
    margin-bottom: 0px;
  }
}
.conteudo .noticias-categoria .box-btn {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .conteudo .noticias-categoria .box-btn {
    margin-top: 48px;
  }
}
.conteudo .noticias-categoria:last-child {
  border-bottom: 0px;
}

.cartas-mensais {
  width: 100%;
  float: left;
  padding: 86px 0 0 0;
}
@media (max-width: 768px) {
  .cartas-mensais {
    padding: 82px 0 0 0;
  }
}
.cartas-mensais h1 {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #000;
  text-align: center;
  margin-top: 106px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .cartas-mensais h1 {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 24px;
  }
}
.cartas-mensais .cartas {
  width: 100%;
  float: left;
}
.cartas-mensais .cartas .box-title {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .box-title {
    margin-bottom: 0px;
  }
}
.cartas-mensais .cartas .box-title .title {
  font-family: "AvenirMedium";
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 10px 0 0;
  color: #002759;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .box-title .title {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.cartas-mensais .cartas .box-title .line {
  flex-grow: 1;
  height: 1px;
  background: #002759;
}
.cartas-mensais .cartas .accordion {
  width: 100%;
  float: right;
  display: flex;
  gap: 0 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .accordion {
    width: 100%;
  }
}
.cartas-mensais .cartas .accordion .item {
  width: 584px;
  float: left;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .accordion .item {
    width: 100%;
  }
}
.cartas-mensais .cartas .accordion h3 {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 0.5px solid #2D4E7A;
  font-family: "Avenir";
  font-weight: normal;
  font-size: 24px;
  color: #002759;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 32px;
  cursor: pointer;
  width: 584px;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .accordion h3 {
    font-size: 16px;
    padding: 8px 16px;
    width: 100%;
  }
}
.cartas-mensais .cartas .accordion .active, .cartas-mensais .cartas .accordion h3:hover {
  background-color: #002759;
  color: #fff;
  transition: 0.4s;
}
.cartas-mensais .cartas .accordion .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(0, 39, 89, 0.2);
}
.cartas-mensais .cartas .accordion .arrow svg path {
  fill: #2D4E7A;
}
.cartas-mensais .cartas .accordion h3:hover .arrow {
  background: rgba(255, 255, 255, 0.2);
}
.cartas-mensais .cartas .accordion h3:hover .arrow svg path {
  fill: #fff;
}
.cartas-mensais .cartas .accordion .active .arrow {
  background: rgba(255, 255, 255, 0.2);
}
.cartas-mensais .cartas .accordion .active .arrow svg {
  transform: rotateX(180deg);
}
.cartas-mensais .cartas .accordion .active .arrow svg path {
  fill: #fff;
}
.cartas-mensais .cartas .accordion .active .arrow i {
  transform: rotate(180deg);
}
.cartas-mensais .cartas .accordion .content {
  width: 584px;
  float: left;
  padding: 0 16px;
  display: none;
  margin-top: -32px;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .accordion .content {
    width: 100%;
  }
}
.cartas-mensais .cartas .accordion .content p {
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 768px) {
  .cartas-mensais .cartas .accordion .content p {
    font-size: 12px;
  }
}
.cartas-mensais .cartas .accordion .content a {
  color: #000;
}

.page-categoria {
  width: 100%;
  float: left;
}
.page-categoria .categorias {
  width: 100%;
  float: left;
  margin-top: 160px;
  margin-bottom: 96px;
  border-top: 1px solid #002759;
  border-bottom: 1px solid #002759;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .page-categoria .categorias {
    padding: 0px;
    border: 0px;
    margin-top: 114px;
    margin-bottom: 16px;
  }
}
.page-categoria .categorias .explorar-temas {
  display: none;
}
@media (max-width: 768px) {
  .page-categoria .categorias .explorar-temas {
    display: block;
    width: 100%;
    float: left;
    font-size: 16px;
    color: #002759;
    line-height: normal;
    padding: 9px 16px;
    background: #a3b2c4;
    border: 1px solid #002759;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .page-categoria .categorias .explorar-temas .ico {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #002759;
  }
}
.page-categoria .categorias .explorar-temas.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.page-categoria .categorias .explorar-temas.active .ico {
  transform: rotateX(180deg);
}
.page-categoria .categorias ul {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-categoria .categorias ul {
    display: none;
    flex-wrap: wrap;
    background: rgba(0, 39, 89, 0.2);
    border: 1px solid #002759;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top: 0px;
  }
}
.page-categoria .categorias ul li {
  list-style: none;
  float: left;
}
@media (max-width: 768px) {
  .page-categoria .categorias ul li {
    width: 100%;
    padding: 0 16px;
  }
}
.page-categoria .categorias ul li a {
  font-size: 20px;
  color: #002759;
  line-height: 30px;
  background: rgba(0, 39, 89, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #002759;
}
@media (max-width: 768px) {
  .page-categoria .categorias ul li a {
    width: 100%;
    border: 0px;
    background: transparent;
    font-size: 16px;
    line-height: normal;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 145, 22, 0.5);
    border-radius: 0px;
    float: left;
  }
}
@media (max-width: 768px) {
  .page-categoria .categorias ul li:last-child a {
    border-bottom: 0px;
  }
}
.page-categoria .categorias ul li:hover a {
  background: #002759;
  color: #fff;
}
@media (max-width: 768px) {
  .page-categoria .categorias ul li:hover a {
    background: transparent;
    color: initial;
  }
}
@media (max-width: 768px) {
  .page-categoria .categorias ul .active {
    padding: 0px;
  }
}
.page-categoria .categorias ul .active a {
  background: #002759;
  color: #fff;
}
@media (max-width: 768px) {
  .page-categoria .categorias ul .active a {
    padding: 16px;
  }
}
.page-categoria .box-title-e-search {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  justify-content: space-between;
}
.page-categoria .box-title-e-search .title-ultimas {
  float: left;
  font-size: 40px;
  color: #303030;
  line-height: normal;
  font-family: "AvenirHeavy";
}
@media (max-width: 768px) {
  .page-categoria .box-title-e-search .title-ultimas {
    display: none;
  }
}
.page-categoria .box-title-e-search form {
  float: right;
  width: 276px;
  position: relative;
}
@media (max-width: 768px) {
  .page-categoria .box-title-e-search form {
    width: 100%;
  }
}
.page-categoria .box-title-e-search form input[type=text], .page-categoria .box-title-e-search form input[type=search] {
  width: 100%;
  height: 55px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid #002759;
  background: rgba(0, 39, 89, 0.2);
  padding: 0 50px 0 15px;
}
@media (max-width: 768px) {
  .page-categoria .box-title-e-search form input[type=text], .page-categoria .box-title-e-search form input[type=search] {
    height: 40px;
  }
}
.page-categoria .box-title-e-search form button {
  border: 0px;
  background: 0px;
  padding: 0px;
  position: absolute;
  right: 16px;
  top: 11.5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page-categoria .box-title-e-search form button {
    top: 8px;
  }
}
@media (max-width: 768px) {
  .page-categoria .box-title-e-search form button img {
    height: 24px;
  }
}
.page-categoria .content {
  width: 892px;
  float: left;
  margin-bottom: 128px;
}
@media (max-width: 768px) {
  .page-categoria .content {
    width: 100%;
  }
}
.page-categoria h1 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #000;
  width: 100%;
  float: left;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .page-categoria h1 {
    margin-bottom: 8px;
  }
}
.page-categoria .voltar {
  float: left;
  font-size: 20px;
  color: #101010;
  line-height: 30px;
  display: flex;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page-categoria .voltar {
    font-size: 16px;
    line-height: normal;
    align-items: center;
  }
}
.page-categoria .voltar .ico {
  width: 20px;
  height: 20px;
  background: #002759;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  margin-top: 3px;
}
@media (max-width: 768px) {
  .page-categoria .voltar .ico {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    margin-top: -3px;
  }
}
.page-categoria .ultimas-noticias {
  width: 100%;
  height: 679px;
  float: left;
  background: #002759;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 128px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias {
    padding: 24px 16px 16px 16px;
    height: auto;
    margin-bottom: 64px;
  }
}
.page-categoria .ultimas-noticias .title-mobile {
  display: none;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .title-mobile {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-family: "AvenirHeavy";
    margin-bottom: 16px;
  }
}
.page-categoria .ultimas-noticias .box-1 {
  width: 481px;
  height: 583px;
  float: left;
  background: #a1a1a1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 {
    width: 100%;
    height: 379px;
    margin-bottom: 32px;
  }
}
.page-categoria .ultimas-noticias .box-1 .img-post {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-categoria .ultimas-noticias .box-1 .info {
  width: 379px;
  height: 276px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 0 16px 0 0;
  background: rgba(0, 39, 89, 0.7);
  padding: 32px 16px 16px 16px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info {
    width: 254px;
    height: 196px;
    padding: 24px 16px 16px 16px;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .categoria {
  padding: 2px 8px 0px 8px;
  background: #002759;
  font-size: 12px;
  color: #fff;
  border-radius: 0px 0px 8px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.page-categoria .ultimas-noticias .box-1 .info .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info .autor-e-data {
    margin-bottom: 8px;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .title {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info .title {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .text {
  width: 100%;
  float: left;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info .text {
    display: none;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .text p {
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.page-categoria .ultimas-noticias .box-1 .info .text-mobile {
  display: none;
  width: 100%;
  float: left;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info .text-mobile {
    display: block;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .text-mobile p {
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.page-categoria .ultimas-noticias .box-1 .info .ler {
  float: right;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-1 .info .ler {
    display: none;
  }
}
.page-categoria .ultimas-noticias .box-1 .info .ler .ico {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.page-categoria .ultimas-noticias .box-1 .info .ler .ico svg path {
  fill: #002759;
}
.page-categoria .ultimas-noticias .box-2 {
  width: 283px;
  height: 96px;
  float: right;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-2 {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }
}
.page-categoria .ultimas-noticias .box-2 .box-text {
  width: 276px;
  height: 173px;
  float: right;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-2 .box-text {
    width: 100%;
    height: auto;
  }
}
.page-categoria .ultimas-noticias .box-2 .box-text .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin-bottom: 4px;
}
.page-categoria .ultimas-noticias .box-2 .box-text .title {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #fff;
  line-height: 30px;
}
@media (max-width: 768px) {
  .page-categoria .ultimas-noticias .box-2 .box-text .title {
    font-size: 12px;
    line-height: normal;
    font-family: "AvenirHeavy";
    margin-bottom: 4px;
  }
}
.page-categoria .ultimas-noticias .box-2 .box-text .box-ico {
  float: left;
  font-size: 12px;
  color: #8B8B8B;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.page-categoria .ultimas-noticias .box-2 .box-text .box-ico svg {
  margin-right: 4px;
}
.page-categoria .ultimas-noticias .box-2 .box-text .box-ico a {
  display: flex;
  align-items: center;
}
.page-categoria .ultimas-noticias .box-2 .box-text .box-ico a span {
  font-size: 12px;
  color: #8B8B8B;
}
.page-categoria .ultimas-noticias .box-2:last-child {
  margin-bottom: 0px;
}
.page-categoria .mais-noticias {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 128px;
}
@media (max-width: 768px) {
  .page-categoria .mais-noticias {
    gap: 16px 0;
    justify-content: space-between;
  }
}
.page-categoria .mais-noticias article {
  width: 276px;
  height: 326px;
  float: left;
}
@media (max-width: 768px) {
  .page-categoria .mais-noticias article {
    width: calc(50% - 8px);
    height: 256px;
  }
}
.page-categoria .mais-noticias article .box-img {
  width: 100%;
  height: 173px;
  float: left;
  border-radius: 8px;
  overflow: hidden;
  background: #a1a1a1;
  margin-bottom: 8px;
  position: relative;
}
@media (max-width: 768px) {
  .page-categoria .mais-noticias article .box-img {
    height: 120px;
  }
}
.page-categoria .mais-noticias article .box-img .img-post {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-categoria .mais-noticias article .box-img .tag {
  width: auto;
  padding: 0 8px;
  height: 16px;
  background: #002759;
  border-radius: 8px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-categoria .mais-noticias article .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #000;
  line-height: normal;
  margin-bottom: 4px;
}
.page-categoria .mais-noticias article .title {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #000;
  line-height: normal;
  margin-bottom: 8px;
}
.page-categoria .mais-noticias article .text {
  width: 100%;
  float: left;
  margin-bottom: 8.5px;
}
@media (max-width: 768px) {
  .page-categoria .mais-noticias article .text {
    display: none;
  }
}
.page-categoria .mais-noticias article .text p {
  font-size: 12px;
  color: #000;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.page-categoria .mais-noticias article .box-ico {
  float: left;
  font-size: 12px;
  color: #8B8B8B;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.page-categoria .mais-noticias article .box-ico svg {
  margin-right: 4px;
}
.page-categoria .mais-noticias article .box-ico a {
  display: flex;
  align-items: center;
}
.page-categoria .mais-noticias article .box-ico a span {
  font-size: 12px;
  color: #8B8B8B;
}
.page-categoria .mais-noticias article .ler {
  float: right;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-categoria .mais-noticias article .ler {
    display: none;
  }
}
.page-categoria .mais-noticias article .ler .ico {
  width: 16px;
  height: 16px;
  background: #002759;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.page-categoria .mais-noticias .box-btn {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
}
.page-categoria .mais-noticias .box-btn a {
  padding: 10px 16px 8px 16px;
  border: 1px solid #002759;
  border-radius: 8px;
  font-size: 20px;
  color: #002759;
  line-height: 30px;
}
.page-categoria .mais-noticias .box-btn a svg {
  float: right;
  margin: 6px 0 0 16px;
}
.page-categoria .sidebar {
  width: 276px;
  float: right;
}
@media (max-width: 768px) {
  .page-categoria .sidebar {
    width: 100%;
    display: none;
  }
}
.page-categoria .sidebar form {
  width: 100%;
  float: left;
  position: relative;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(8, 17, 98, 0.5);
  margin-bottom: 32px;
}
.page-categoria .sidebar form input[type=text], .page-categoria .sidebar form input[type=search] {
  width: 100%;
  height: 55px;
  float: left;
  border-radius: 8px;
  border: 0.5px solid #002759;
  background: rgba(0, 39, 89, 0.2);
  padding: 0 60px 0 15px;
  font-family: "Avenir";
  font-size: 16px;
}
.page-categoria .sidebar form button {
  border: 0px;
  background: 0px;
  padding: 0px;
  position: absolute;
  right: 16px;
  top: 11.5px;
  cursor: pointer;
}
.page-categoria .sidebar .tags {
  width: 100%;
  float: left;
}
.page-categoria .sidebar .tags .title {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  margin-bottom: 24px;
}
.page-categoria .sidebar .tags ul {
  width: 100%;
  float: left;
  border-bottom: 2px solid rgba(8, 17, 98, 0.5);
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.page-categoria .sidebar .tags ul li {
  list-style: none;
  width: 100%;
  float: left;
  padding: 12px 0;
  border-bottom: 1px solid rgba(8, 17, 98, 0.2);
}
.page-categoria .sidebar .tags ul li a {
  font-size: 20px;
  color: #002759;
  line-height: 30px;
}
.page-categoria .sidebar .tags ul li:first-child {
  padding-top: 0px;
}
.page-categoria .sidebar .tags ul li:last-child {
  border-bottom: 0px;
}
.page-categoria .sidebar .noticias {
  width: 100%;
  float: left;
}
.page-categoria .sidebar .noticias .title-sidebar-noticias {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  margin-bottom: 32px;
}
.page-categoria .sidebar .noticias article {
  width: 100%;
  float: left;
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(8, 17, 98, 0.2);
  margin-bottom: 32px;
}
.page-categoria .sidebar .noticias article .autor-e-data {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #000;
  line-height: normal;
  margin-bottom: 4px;
}
.page-categoria .sidebar .noticias article .title {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  margin-bottom: 8px;
}
.page-categoria .sidebar .noticias article .box-ico {
  float: left;
  font-size: 12px;
  color: #8B8B8B;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.page-categoria .sidebar .noticias article .box-ico svg {
  margin-right: 4px;
}
.page-categoria .sidebar .noticias article .ler {
  float: right;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
}
.page-categoria .sidebar .noticias article .ler .ico {
  width: 16px;
  height: 16px;
  background: #002759;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.page-categoria .sidebar .noticias article:last-child {
  border-bottom: 2px solid rgba(8, 17, 98, 0.5);
}
.page-categoria .single-post {
  width: 100%;
  float: left;
}
.page-categoria .single-post h1 {
  font-family: "AvenirHeavy";
  font-size: 40px;
  color: #000;
  width: 100%;
  float: left;
}
@media (max-width: 768px) {
  .page-categoria .single-post h1 {
    font-size: 20px;
    text-align: center;
  }
}
.page-categoria .single-post .box-info {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
  }
}
.page-categoria .single-post .box-info .categoria {
  float: left;
  background: #002759;
  color: #fff;
  font-size: 16px;
  padding: 2px 8px 0px 8px;
  border-radius: 4px;
  margin-right: 32px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .categoria {
    font-size: 12px;
    margin-right: 11px;
  }
}
.page-categoria .single-post .box-info .autor-e-data {
  float: left;
  font-size: 16px;
  color: #000;
  line-height: normal;
  margin-right: 32px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .autor-e-data {
    font-size: 12px;
    margin-right: 11px;
  }
}
.page-categoria .single-post .box-info .box-ico {
  float: left;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .box-ico {
    font-size: 12px;
  }
}
.page-categoria .single-post .box-info .box-ico svg {
  margin-right: 4px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .box-ico svg {
    width: 16px;
    height: auto;
  }
}
.page-categoria .single-post .box-info .box-ico a {
  display: flex;
  align-items: center;
  color: #000;
}
.page-categoria .single-post .box-info .compartilhar {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .compartilhar {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
}
.page-categoria .single-post .box-info .compartilhar .title {
  font-size: 16px;
  float: left;
  color: #000;
}
.page-categoria .single-post .box-info .compartilhar a {
  margin-left: 16px;
  display: flex;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .compartilhar a {
    margin-left: 32px;
  }
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-info .compartilhar a svg {
    width: 16px;
  }
}
.page-categoria .single-post .box-info > div {
  display: flex;
  align-items: center;
}
.page-categoria .single-post .img-post {
  width: 100%;
  float: left;
}
.page-categoria .single-post .box-text {
  width: 100%;
  float: left;
}
.page-categoria .single-post .box-text h2 {
  font-size: 24px;
  line-height: 30px;
  color: #000;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text h2 {
    font-size: 20px;
    line-height: normal;
    text-align: center;
  }
}
.page-categoria .single-post .box-text ol {
  width: 100%;
  padding-inline-start: 23px;
}
.page-categoria .single-post .box-text ol li {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  font-family: "Avenir";
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text ol li {
    font-size: 12px;
    line-height: normal;
  }
}
.page-categoria .single-post .box-text ul {
  padding: 0 0 0 19px;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  font-family: "Avenir";
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text ul {
    font-size: 12px;
    line-height: normal;
    padding: 0 0 0 9px;
  }
}
.page-categoria .single-post .box-text a {
  color: #002759;
}
.page-categoria .single-post .box-text .compartilhar {
  display: flex;
  align-items: center;
  float: left;
  margin-top: 74px;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text .compartilhar {
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
}
.page-categoria .single-post .box-text .compartilhar .title {
  font-size: 24px;
  line-height: 30px;
  float: left;
  color: #000;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text .compartilhar .title {
    font-size: 16px;
  }
}
.page-categoria .single-post .box-text .compartilhar a {
  margin-left: 16px;
  display: flex;
}
@media (max-width: 768px) {
  .page-categoria .single-post .box-text .compartilhar a svg {
    width: 16px;
    height: 16px;
  }
}

.page-default {
  width: 100%;
  float: left;
  padding-top: 192px;
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .page-default {
    padding-top: 82px;
  }
}
.page-default h1 {
  width: 100%;
  float: left;
  text-align: center;
  font-family: "AvenirHeavy";
  font-size: 40px;
  line-height: normal;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page-default h1 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.page-default h3 {
  font-size: 16px;
  font-family: "AvenirHeavy";
  margin-top: 24px;
}
.page-default p {
  font-size: 16px;
  line-height: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.page-default p a {
  color: #2D4E7A;
}
.page-default ul {
  padding: 0 0 0 26px;
}
.page-default .politicas-e-manuais {
  width: 100%;
  float: left;
}
.page-default .politicas-e-manuais .item {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 0.5px solid #2D4E7A;
  font-family: "Avenir";
  font-weight: normal;
  font-size: 24px;
  color: #002759;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .page-default .politicas-e-manuais .item {
    font-size: 16px;
    line-height: normal;
    padding: 8px 16px;
    margin-top: 0px;
    margin-bottom: 16px;
  }
}
.page-default .politicas-e-manuais .item:hover {
  background-color: #002759;
  color: #fff;
  transition: 0.4s;
}
.page-default .politicas-e-manuais .item:hover .arrow {
  background: rgba(255, 255, 255, 0.2);
}
.page-default .politicas-e-manuais .item:hover .arrow svg path {
  fill: #fff;
}
.page-default .politicas-e-manuais .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(0, 39, 89, 0.2);
}
@media (max-width: 768px) {
  .page-default .politicas-e-manuais .arrow {
    margin-left: 10px;
  }
}
.page-default .politicas-e-manuais .arrow svg path {
  fill: #2D4E7A;
}

.single-post .box-title-e-search, .category .box-title-e-search, .search-results .box-title-e-search, body.tag .box-title-e-search {
  display: none;
}
@media (max-width: 768px) {
  .single-post .box-title-e-search, .category .box-title-e-search, .search-results .box-title-e-search, body.tag .box-title-e-search {
    display: block;
  }
}

.copy-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.copy-link::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-link.show-tooltip::after {
  opacity: 1;
  visibility: visible;
}

.title-category-mobile {
  display: none;
}
@media (max-width: 768px) {
  .title-category-mobile {
    display: block;
    font-family: "AvenirHeavy";
    font-size: 14px;
    color: #000;
    width: 100%;
    position: absolute;
    left: 0px;
    text-align: center;
    margin-top: 20px;
  }
}

.filtro-tags {
  display: none;
}
@media (max-width: 768px) {
  .filtro-tags {
    display: block;
    float: right;
    margin-top: 16px;
    position: relative;
  }
}
.filtro-tags .box-tags {
  width: 263px;
  float: left;
  background: #fff;
  border-radius: 16px;
  position: absolute;
  right: 0px;
  top: 24px;
  padding: 24px;
  z-index: 9;
  display: none;
}
.filtro-tags .box-tags .close {
  width: 16px;
  height: 16px;
  float: right;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #002759;
}
.filtro-tags .box-tags ul {
  width: 100%;
  float: left;
}
.filtro-tags .box-tags ul li {
  list-style: none;
  width: 100%;
  float: left;
  text-align: center;
  padding: 16px 0;
  border-bottom: 2px solid rgba(8, 17, 98, 0.2);
}
.filtro-tags .box-tags ul li a {
  font-size: 16px;
  color: #002759;
}
.filtro-tags .box-tags ul li:last-child {
  border: 0px;
}

@media (max-width: 768px) {
  .category .voltar {
    margin-top: 19px;
    margin-bottom: 34px;
  }
}

.search-results .result, body.tag .result {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .search-results .result, body.tag .result {
    margin-top: 30px;
  }
}
.search-results h2 span, body.tag h2 span {
  color: #C89116;
}

@media (max-width: 768px) {
  body.tag .title-category-mobile {
    display: none;
  }
}

.cky-notice-des *, .cky-preference-content-wrapper *, .cky-accordion-header-des *, .cky-gpc-wrapper .cky-gpc-desc * {
  line-height: normal;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

body.search .box-title-e-search {
  display: none;
}
@media (max-width: 768px) {
  body.search .box-title-e-search {
    display: block;
  }
}

@media (max-width: 768px) {
  .nossa-atuacao-asset .atuacao {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .page-template-sobre-nos-page .valores .box {
    display: initial;
  }
}

.grecaptcha-badge {
  bottom: 10px !important;
  right: -163px !important;
  transform: scale(0.6);
  z-index: 9;
}

/*# sourceMappingURL=geral.css.map */
