/*
 *  Main Revamp 2024 CSS
 *  Apenas CCS de áreas gerais do site: Header, Footer, Menu, etc.
 *  Carregamento em todas as páginas
 *  Não inserir CSS de páginas específicas
 */

html {
  scroll-behavior: smooth;
}
body {
  color: var(--light-text-neutral-600, #0c2028);
  font-family: var(--default-font-family, 'AvenuePro'), sans-serif;
  font-size: 16px;
}
.container_mobile_12,
.container_mobile_24 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media (max-width: 1248px) {
  .container_mobile_12 {
    padding: 0 12px;
  }
  .container_mobile_24 {
    padding: 0 24px;
  }
}
/* 
 *  HEADER
 */
.header {
  background: #ffffff;
  left: 0;
  padding: 14px 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 45px rgba(0, 0, 0, 0.05);
}
.header.is-hidden {
  top: -112px;
}
.header.is-fixed,
.header.is-hidden.is-fixed {
  top: 0;
}
.header .hidden-top {
  display: none;
}
footer .hidden-bottom {
  display: none;
}
.menu-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  min-height: 53px;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul.menu {
  margin: 0 15px 0 0;
}

header nav ul.buttons {
  gap: 20px;
}

header nav a,
header nav ul .menu-item-object-custom > a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #0c2028;
  position: relative;
  font-size: 14px;
  letter-spacing: var(--letter-spacing);
}

header nav a.opacity {
  opacity: 0.5;
}

header nav .dropdonw {
  padding: 0 10px 0 0;
}

header nav .dropdonw a::after {
  position: absolute;
  content: '';
  display: inline-block;
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 10L12 14L16 10" stroke="%230C2028" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 17px;
  height: 15px;
  bottom: 6px;
}

header nav .dropdonw a.active::after {
  transform: rotate(180deg);
  right: -24px;
  bottom: -3px;
}

.menu-item-object-custom > a:hover {
  background-color: transparent;
  color: #0c2028 !important;
}

header nav .buttons a {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 48px;
  font-family: var(--default-font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
}

header nav .buttons a:nth-child(1) {
  padding: 16px 23px;
}
.open-account-header {
  background-color: #4ae077;
}
.login-account-header {
  background-color: #f1f5f8;
}
.open-account-header:hover {
  background-color: #6af29a;
  transition: background-color 0.25s;
}
.login-account-header:hover {
  background-color: #fbfbfc;
  transition: background-color 0.5s;
}
.submenu {
  height: 400px;
  padding: 67px 20px 30px;
  position: relative;
  display: none;
  opacity: 0;
}

.submenu.show {
  height: 400px;
  padding: 67px 20px 30px;
  position: relative;
  display: none;
  opacity: 0;
  transition: 0.5s;
}

.submenu.is_open {
  display: block;
  opacity: 1;
}

.submenu .container-main {
  height: 312px;
  display: flex;
  width: 100%;
}

.submenu-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 25px;
  grid-row: 1;
}
.submenu-title {
  color: var(--light-text-neutral-600, #0c2028);
  border-right: 1px solid #dddddd;
  width: 26%;
  padding-right: 2%;
}

.submenu-title .subtitle {
  font-family: var(--title-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: var(--letter-spacing);
}

.submenu-title .text {
  font-size: 24px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing);
}

.submenu-items {
  width: 23%;
}

.submenu-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1em;
}

.submenu-items ul li {
  margin-bottom: 32px;
}

.submenu-items .hover ul li a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: var(--light-text-neutral-600, #0c2028);
  font-family: var(--default-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: var(--letter-spacing);
}

.submenu-items .hover ul li.novo a::after {
  content: 'NOVO';
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: #4ae07f;
  margin-left: 15px;
}

.submenu-items .hover:hover a {
  opacity: 0.2;
}

.submenu-items .hover:hover ul:hover a {
  opacity: 0.5;
}

.submenu-items .hover:hover ul:hover a:hover {
  opacity: 1;
}

.submenu-image-but {
  width: 40.5%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.submenu-image-but .image {
  height: 100%;
  background-size: cover !important;
}

.submenu-image-but .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.submenu-image-but .but {
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.submenu-image-but .but:hover svg rect {
  fill: #fff;
}
.submenu-image-but .but:hover svg path {
  stroke: #0c2028;
}

.submenu-image-but .image-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  width: 50%;
  line-height: 1.5em;
}

.submenu-image-but .image-content .title {
  font-family: var(--default-font-family);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 12px;
  letter-spacing: var(--letter-spacing);
}

.submenu-image-but .image-content .text {
  font-family: var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: var(--light-text-neutral-0);
}

.mask-menu-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: none;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}

.mobile {
  display: none;
}
.remove-scrolling {
  height: 100%;
  overflow: hidden;
}

/* 
 *  COMUNS
 */

.padding_vertical_128_mobile_64 {
  padding: 128px 0;
}

.padding_vertical_256_mobile_96 {
  padding: 256px 0;
}

@media (max-width: 1201px) {
  .header {
    padding: 14px;
  }

  header nav ul.buttons {
    gap: 10px;
  }

  header nav .buttons a {
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    line-height: 1.1em;
    letter-spacing: var(--letter-spacing);
  }

  header nav .buttons a:nth-child(1) {
    padding: 10px 20px;
  }

  header nav {
    gap: 20px;
  }
}

@media (min-width: 991px) and (max-width: 1170px) {
  header nav a,
  header nav ul .menu-item-object-custom > a {
    font-size: 12px;
    letter-spacing: var(--letter-spacing);
  }
  header nav .buttons a {
    font-size: 14px;
    line-height: 1em;
  }
}

@media (max-width: 990px) {
  .header {
    padding: 24px 20px;
    border-bottom: 1px solid #d9d9d9;
  }

  .mobile {
    display: block;
  }

  .menu-bars span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c2028;
    border-radius: 40px;
    cursor: pointer;
  }

  .desktop {
    display: none;
  }

  .menu-item-object-custom > a {
    padding: 0 !important;
  }

  header nav {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    gap: 20px;
    flex-direction: column;
    align-items: start;
    overflow: auto;
    display: none;
  }

  header nav .mobile {
    display: block;
    width: 100%;
  }

  header nav .mobile .top-itens {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
  }

  header nav .mobile .top-itens .logo img {
    width: 141px;
    height: auto;
  }

  header nav .mobile .top-itens .close-buttom span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0c2028;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
  }

  header nav ul.buttons {
    gap: 12px;
    flex-direction: column-reverse;
    padding: 97px 24px 24px;
    width: 100%;
  }

  header nav .buttons a {
    padding: 22px 20px;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.1em;
    letter-spacing: var(--letter-spacing);
    width: 100%;
  }

  header nav .buttons a:nth-child(1) {
    padding: 18px 20px;
    background-color: transparent !important;
  }

  header nav ul.menu {
    margin: 0;
    flex-direction: column;
    align-items: baseline;
    padding: 30px 24px;
    width: 100%;
  }

  header nav ul.menu li {
    width: 100%;
  }

  header nav ul {
    gap: 48px;
  }

  header nav ul.menu .menu-item > a {
    color: var(--light-text-neutral-600, #0c2028);
    font-size: 32px;
    line-height: 100%;
    letter-spacing: var(--letter-spacing);
    padding: 8px 0 !important;
    width: 97%;
    display: block;
  }

  header nav .dropdonw a::after {
    bottom: 12px;
    right: 0;
    transform: rotate(-90deg);
  }

  header nav .dropdonw a.active::after {
    transform: rotate(-90deg);
    right: 0;
    bottom: 23px;
  }

  .submenu {
    height: calc(100vh - 100px);
    padding: 24px 0;
    position: fixed;
    background-color: #fff;
    top: 100px;
    left: 0;
    width: 100%;
    overflow-y: auto;
  }
  .submenu-content {
    flex-direction: column;
    gap: 0;
    min-height: calc(100vh - 150px);
    justify-content: start;
  }
  .submenu-content .mobile {
    margin-bottom: 32px;
  }
  .submenu .container-main {
    height: auto;
  }
  .submenu-items ul {
    margin: 15px 0 0;
  }

  .submenu-title {
    width: 98%;
    padding-right: 2%;
    border-right: none;
    margin-bottom: 38px;
  }

  .submenu-items {
    width: 100%;
  }

  .mobile {
    display: block;
  }

  .mobile .voltar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0 3px;
    font-weight: 600;
  }

  .submenu-title .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: var(--letter-spacing);
  }

  .submenu-image-but {
    margin: 60px 0 0;
    width: 100%;
    height: auto;
    overflow: visible;
    flex-grow: 1;
    display: flex;
    align-items: end;
    min-height: 72px;
  }

  .submenu-image-but .image-content {
    position: initial;
    width: 80%;
  }

  .submenu-image-but .image {
    height: auto;
    background: #0c2028 !important;
    height: auto;
    padding: 20px;
    border-radius: 16px;
    flex-grow: 1;
  }

  .submenu-image-but .but {
    bottom: 15px;
  }

  .submenu-image-but .shadow {
    display: none;
  }
}

/* 
 *  FOOTER
 */
.new-footer {
  background-color: #f1f5f8;
}

.footer-divider {
  padding: 0;
  margin: 0;
  background-color: #cbced3;
  height: 1px;
  border: none;
}

.new-footer__link-item {
  text-decoration: none;
}

.menu {
  list-style: none;
}

.wrapper-flex-footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 64px 0;
}

.new-footer__institucional {
  align-items: center;
}

.new-footer__copyright {
  margin-top: 12px;
  font-style: normal;
}

.new-footer__copyright-address {
  font-size: 14px;
  margin: 0;
}

.new-footer_social {
  display: flex;
  gap: 8px;
  align-items: center;
}
h3.new-footer__wrapper-menu-title,
.new-footer__wrapper-menu-title {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-family: var(--default-font-family);
}

.new-footer__wrapper-menu .menu {
  list-style: none;
  padding: 0;
}

.new-footer__wrapper-menu .menu > li {
  padding-bottom: 8px;
}

.new-footer__wrapper-menu .menu > li > a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  line-height: 140%;
  padding: 0;
  margin: 0;
}

.new-footer__app {
  align-items: center;
}

.new-footer__qrcode {
  display: flex;
  gap: 32px;
  align-items: center;
}

.new-footer__slogan-title {
  font-size: 16px;
  margin: 0;
}

.new-footer__slogan-text {
  margin: 12px 0 0 0;
}

.new-footer__store {
  display: flex;
  gap: 24px;
}

.new-footer__terms {
  align-items: center;
}

.new-footer__wrapper-menu-terms .menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 32px;
}

.new-footer__wrapper-menu-terms .menu > li {
  padding-bottom: 8px;
}

.new-footer__wrapper-menu-terms .menu > li > a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  line-height: 140%;
  padding: 0;
  margin: 0;
  line-height: 140%;
}

.new-footer__contact-email {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  line-height: 140%;
  text-decoration: none;
  font-family: var(--default-font-family);
}

.new-footer__contact-tel {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
}

.new-footer__contact-tel-extra {
  padding: 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
}

.new-footer__legal {
  padding: 64px 0;
}

.new-footer__legal-button {
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: var(--letter-spacing);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.button-disclaimer--rotate {
  transform: rotate(180deg);
}

.image-button-disclaimer {
  margin-left: 12px;
}

.new-footer__disclaimer--closed {
  display: none;
}

/* Fintalk */
.icon-chat {
  font-size: 13px;
  color: transparent;
  text-align: left;
  padding: 0 0 0 18px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  position: fixed;
  bottom: 37px;
  right: 37px;
  border-radius: 30px;
  background-color: #263f2f;
  border: 0;
  z-index: 20;
  transition: width 0.4s;
  -webkit-transition: width 0.4s;
  overflow: hidden;
}

/* Fintalk */
.icon-chat img {
  position: absolute;
  top: 14px;
  right: 0;
  padding: 0 12px 0 2px;
  background-color: #263f2f;
}

.icon-chat:hover {
  width: 156px;
  color: #4ae07f;
  transition: width 0.4s;
  -webkit-transition: width 0.4s;
}

.icon-chat span {
  width: 156px;
  text-decoration: none;
  float: left;
  display: block;
  padding: 16px 0 0 0;
  letter-spacing: var(--letter-spacing);
  font-family: var(--default-font-family);
  font-size: 12px;
}

#chatFintalk {
  z-index: 999999;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0px 20px -5px;
}

.chat-fintalk-control {
  display: flex;
}

.chat-fintalk-icon-control {
  position: absolute;
  right: 5px;
  top: 16px;
  cursor: pointer;
}

.minimize-fintalk-icon {
  right: 40px;
}

.close-fintalk-icon {
  width: 24px;
  height: auto;
}

.minimize-fintalk-icon {
  width: 24px;
  height: auto;
}

#agentFintalk {
  border: none;
  border-radius: 8px;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  background-color: #ececec;
}

.minimize-chat-fintalk-wrapper {
  display: flex;
  background-color: #ffffff;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  width: 200px;
  height: 60px;
  justify-content: center;
  right: 20px;
  bottom: 0;
  border-radius: 8px 8px 0px 0px;
  align-items: center;
  position: fixed;
  cursor: pointer;
  z-index: 10;
}

.minimize-chat-fintalk-icon {
  margin-right: 16px;
  width: 30px;
}

.minimize-chat-fintalk-text {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: var(--letter-spacing);
  color: #263f2f;
}

#closeButton {
  position: absolute;
  right: 5px;
  top: 10px;
  height: 40px;
  cursor: pointer;
  width: 40px;
  background-color: transparent;
  content: url('https://avenue.us/wp-content/uploads/2023/01/Delete-Disabled.svg');
  border: none;
}

#closeButton::after {
  content: url('https://avenue.us/wp-content/uploads/2023/01/Delete-Disabled.svg');
  position: absolute;
  right: 5px;
  top: 10px;
  cursor: pointer;
}

@media (max-width: 767px) {
  footer .menu .menu-item a {
    padding: 0 0 8px 0;
  }
  .wrapper-flex-footer {
    padding: 48px 0;
  }

  .new-footer__wrapper-menu {
    padding-top: 40px;
  }

  .new-footer__wrapper-menu:first-child {
    padding-top: 0;
  }

  .new-footer_social {
    margin-top: 48px;
    position: relative;
    left: -16px;
  }

  .wrapper-flex-footer,
  .new-footer__qrcode {
    flex-direction: column;
  }

  .new-footer__terms,
  .new-footer_social,
  .new-footer__app {
    align-items: flex-start;
  }

  .new-footer__qrcode-image {
    display: none;
  }

  .new-footer__slogan {
    margin-bottom: 40px;
  }

  .new-footer__store {
    gap: 16px;
  }

  .new-footer__contact {
    margin-top: 32px;
  }

  #menu-termos-rodape {
    flex-direction: column;
    gap: 8px;
  }

  .new-footer__legal {
    padding: 48px 0 100px;
  }

  .new-footer__legal-button {
    display: flex;
    align-items: center;
    text-align: start;
  }

  /* Fintalk */
  .icon-chat {
    bottom: 60px;
    right: 20px;
    bottom: 90px;
    z-index: 20;
  }

  .icon-chat:hover {
    width: 50px;
  }

  #chatFintalk {
    bottom: 30px;
  }

  .minimize-chat-fintalk-wrapper {
    bottom: 175px;
    border-radius: 8px 0px 0px 8px;
    width: 60px;
    right: 0;
  }

  #agentFintalk {
    width: 360px;
    height: 600px;
  }

  .minimize-chat-fintalk-text {
    display: none;
  }

  .minimize-chat-fintalk-icon {
    margin-right: 0px;
    width: 40px;
  }

  .padding_vertical_128_mobile_64 {
    padding: 64px 0;
  }

  .padding_vertical_256_mobile_96 {
    padding: 96px 0;
  }
  .card-autor-blog {
    display: none;
  }
}

.menu > .menu-item:hover {
  opacity: 1;
}

.menu:hover .menu-item:not(:hover) {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.new-footer__link > .new-footer__link-item:hover {
  opacity: 1;
}

.new-footer__link:hover .new-footer__link-item:not(:hover) {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.minimize-chat-fintalk-icon {
  margin-right: 0px;
  width: 40px;
}

.input-form-denuncia {
  border-right: 16px solid transparent;
  /* outline: 1px solid; */
  padding: 16px;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  color: #9facb1;
  border-radius: 8px;
  background-color: #fff;
  margin-top: 8px;
  width: 100%;
  outline: none;
}
.form-labels {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.input-item-submit {
  margin: 0;
  width: 245px;
  position: relative;
}
.submit-form-denuncia {
  cursor: pointer;
  background-color: #4ae07f;
  color: #0c2028;
  font-size: 16px;
  letter-spacing: var(--letter-spacing);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  transition: 0.3s;
  width: 245px;
  text-align: left;
  height: 52px;
}
.submit-form-denuncia:hover {
  background-color: #205934;
  color: #4ae07f;
}
.icon-submit-form-denuncia {
  position: relative;
  top: -81px;
  left: 195px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  background: #fff;
  font-size: 12px;
  letter-spacing: var(--letter-spacing);
  color: #151515;
  padding: 10px 12px;
  border: 0;
  width: 100%;
  border-left: 3px solid;
  border-color: #4ae07f;
  margin-top: -50px;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}
.wpcf7-not-valid-tip {
  font-size: 10px;
}
.hide-identify-user {
  display: none;
}
.hide-locale-user {
  display: none;
}

/* blog issues */

/* list styles */
.banner-post-button-item {
  color: white !important;
  text-decoration: none !important;
}
/* author breakpoint */
.card-autor-blog {
  width: 100% !important;
}
.card-autor-blog .w-\[325px\] {
  width: 100% !important;
}

.hero_home_open_account {
  display: none;
}
@media (max-width: 767px) {
  .hero_home_open_account {
    height: 96px;
    background-color: var(--light-surface-neutral-0);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    padding: 24px 16px;
  }
  .hero_home_open_account .hero_home__button--mobile {
    border-radius: 56px;
    border: 1px solid var(--light-element-accent-300);
    background: var(--light-element-accent-300);
    font-family: var(--default-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: var(--letter-spacing);
    padding: 24px 16px;
    width: 100%;
    text-align: center;
    text-decoration: none;
  }
  .hero_home_open_account {
    display: flex;
    z-index: 20;
  }
  .new-footer__badge{
    flex-direction: column;
    padding: 48px 0;
  }
}

.new-footer__badge{
  display: flex;
  gap: 24px;
  padding: 64px 0;
}