/**
 * 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);
}

.input-search-blog {
  width: 100%;
  border: none;
  background: #f1f1f1;
  padding-left: 16px;
  border-radius: 100px 0 0 100px;
  outline: 0;
}
/* .input-search-blog:focus {
  background: #f1f1f1 !important;
} */
.button-search-blog {
  float: right;
  border: none;
  font-weight: 500;
  padding-right: 16px;
  padding-left: 12px;
  border-radius: 0 100px 100px 0;
  border-left: 1px solid #d5d5d5;
  background: #f1f1f1 !important;
  margin-right: 16px;
  cursor: pointer;
}
.header-search-icon {
  margin: 0 !important;
}
.header-search-icon:hover {
  background-color: transparent !important;
}
.form-search-blog {
  width: 60%;
  display: flex;
  position: relative;
  top: -50px;
  height: 44px;
  left: 150px;
  margin-bottom: -44px;
  background-color: white;
}
.header-search-icon,
.header-search-icon-close {
  text-decoration: none !important;
}

.mobile-search {
    margin-left: auto;
    margin-right: 16px;
}

.header-mobile-search {
    height: calc(100vh - 100px);
    padding: 36px 0 0 0;
    position: fixed;
    background-color: #fff;
    top: 85px;
    left: 0;
    width: 100%;
    overflow-y: auto;
    z-index: 999;
    display: none;
}
.header-mobile-search.active {
    display: block;
}
.header-mobile-search__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 0 24px;
    width: 100%;
}
.header-mobile-search__form > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.header-mobile-search__form h3 {
    font-family: var(--title-font-family);
    color: #002820;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}
.header-mobile-search .input-search-blog {
    border: 1px solid #8F9FA6;
    padding: 18px 16px;
    font-size: 16px;
    background-color: white;
    border-radius: 16px;
}
.header-mobile-search .avenue-button--single {
    border: none;
    padding: 20px 0;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.1em;
    letter-spacing: var(--letter-spacing);
    width: 100%;
    border-radius: 100px;
}


.container-main {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.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: 16px;
    letter-spacing: var(--letter-spacing);
}

header nav a.opacity {
    opacity: 0.5;
}

header nav .dropdown {
    padding: 0 24px 0 0;
}

header nav .dropdown 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;
}

.has-third-level::after {
    position: absolute;
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 16L14 12L10 8' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
    width: 24px;
    height: 24px;
}

.submenu-nivel3 {
    display: none;
    opacity: 0;
}
.submenu-nivel3.is_open {
    display: block;
    opacity: 1;
}

header nav .dropdown 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 24px;
    border-radius: 48px;
    font-family: var(--default-font-family);
    font-weight: 500;
    font-size: 14px;
    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, .sub-menu {
    height: 400px;
    padding: 67px 20px 30px;
    position: relative;
    display: none;
    opacity: 0;
}

.submenu.show, .sub-menu.show {
    height: 400px;
    padding: 67px 20px 30px;
    position: relative;
    display: none;
    opacity: 0;
    transition: 0.5s;
}

.submenu.is_open, .sub-menu.is-open {
    display: block;
    opacity: 1;
}

.submenu .container-main, .sub-menu .container-main {
    height: 312px;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.submenu-content {
    display: flex;
    width: 100%;
    gap: 64px;
    grid-row: 1;
}

.submenu-title, .submenu-items {
    color: var(--light-text-neutral-600, #0c2028);
    border-right: 1px solid #dddddd;
    width: 26%;
    padding-right: 2%;
}

.submenu-items.submenu-nivel3 {
    border-right: none;
}

.submenu-title .subtitle {
    font-family: var(--title-font-family);
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: var(--letter-spacing);
    color: #002820;
}

.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: #002820;
    font-family: var(--default-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

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

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

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

    .only-desktop {
        display: none;
    }

    header nav .dropdown {
        padding-right: 0;
    }

    .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 {
        max-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: #002820;
        font-size: 32px;
        line-height: 40px;
        font-weight: 500;
        padding: 8px 0 !important;
        width: 97%;
        display: block;
    }

    header nav .dropdown a::after {
        bottom: 12px;
        right: 0;
        transform: rotate(-90deg);
    }

    header nav .dropdown 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%;
        border-right: none;
    }

    .submenu-nivel3 {
        border-top: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd;
        padding: 0 16px;
        transition: all 0.5 ease-in;
    }
    .submenu-nivel3 ul {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px 0
    }
    .submenu-nivel3 ul li {
        margin-bottom: 0;
    }
    .submenu-nivel3.is_open {
        margin-top: 24px;
    }
    .submenu-items .hover a,
    .submenu-items .hover a:hover, 
    .submenu-items .hover:hover ul:hover a {
        opacity: 1;
    }

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

    .menu-item-expand::after {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8L12 16' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 12L8 12' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
        position: absolute;
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        right: 24px;
    }
    .menu-item-expanded::after {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 12L8 12' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z' stroke='%23A3B1B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        position: absolute;
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        right: 24px;
    }

}




/* 
 *  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;
    gap: 64px;
}

.unset-justify-between {
    justify-content: unset !important;
}

.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;
    color: var(--light-text-neutral-600, #0c2028);
}

.new-footer__app {
    align-items: center;
}

.new-footer__qrcode {
    display: flex;
    gap: 64px;
    align-items: center;
}

.new-footer__slogan-title {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.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%;
    color: #002820;
}

.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);
    color: #002820;
}

.new-footer__contact-tel {
    text-decoration: none;
    font-size: 16px;
    letter-spacing: var(--letter-spacing);
    color: #002820;
}

.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;
    cursor: pointer;
}

.button-disclaimer--rotate {
    transform: rotate(180deg);
}

.image-button-disclaimer {
    margin-left: 12px;
}

.new-footer__disclaimer--closed {
    display: none;
}

#contentDisclaimer p {
    line-height: 24px;
}

#contentDisclaimer a {
    color: #002820;
    font-style: italic;
}

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

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


/* UI */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    height: 100%;
}

.header-space {
    height: 80px;
}

@media (max-width: 767px) {
    .header-space {
        height: 84px;
    }
}

.avenue-button--single {
    background-color: #47E57F;
    color: #002820;
    padding: 16px;
    border-radius: 24px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    outline: 0;
    transition: 0.3s;
    min-width: fit-content;
}
.avenue-button--single:hover {
    background-color: #228B5F;
}
.avenue-button--go {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
}
.avenue-view-more--button {
    padding: 12px 16px;
    border: 1px solid #CBD4D8;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #002820;
    font-weight: 500;
    text-decoration: none;
}

.avenue-section__title {
    font-size: 32px;
    font-weight: 500;
    color: #002820;
    line-height: 40px;
}