* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Fonts */
@font-face {
    font-family: 'Helvetica-Regular';
    src: url('fonts/Helvetica-Neue-LT-Pro-33-Thin-Extended.otf') format('otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica-Bold';
    src: url('fonts/Helvetica-Neue-LT-Pro-53-Extended.otf') format('otf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.font-default h1,
.font-default h2,
.font-default h3 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.2em;
}

.font-default p,
.font-default a,
.font-default span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.3em;
}

.font-default h1 {
    font-size: 44px;
}

.font-default h2 {
    font-size: 30px;
}

.font-default h3 {
    font-size: 22px;
}

.font-default span {
    font-size: 12px;
}

@media(min-width:1024px) {
    .font-default h1 {
        font-size: 70px;
        line-height: 1em;
    }

    .font-default h2 {
        font-size: 38px;
    }
    
    .font-default p,
    .font-default a {
        font-size: 16px;
    }
    
    .font-default span {
        font-size: 14px;
    }
}


/* header */
header.header {
    display: flex;
    justify-content: center;
}

header.header .container.blur-head {
    position: absolute;
    top: 15px;
    width: calc(100% - 5%);
    padding: 8px;
    border-radius: 30px;
    background: radial-gradient(231% 135.8% at 0.9% 2.98%, #1d1a1a66 0%, #4c454599 100%);
    backdrop-filter: blur(21px);
    z-index: 9;
    border: 1px solid #fff;
}

.nav-mobile {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #041833 0%, #102F5A 100%);
    padding: 30px 10px;
    z-index: 999;
    transition: .4s ease-in-out;
    transform: translateX(-100%);
    height: 100vh;
    /* padding-bottom: 96px; */
    overflow-y: scroll;
}

.nav-mobile.active-nav {
    transform: translateX(0);
}

.nav-mobile img {
    width: 180px;
}

.nav-mobile a.nav-closed span:first-child {
    transform: translate(-8px, 10px) rotate(45deg);
}

.nav-mobile a.nav-closed span:nth-of-type(2) {
    transform: scale(0);
}

.nav-mobile a.nav-closed span:last-child {
    transform:  translate(-10px, -19px) rotate(-45deg);
}

.nav-head li {
    padding: 10px 10px 10px 0;
    text-align: center;
    z-index: 99;
}

.nav-head li:after {
    content: "";
    border-right: 1px solid #ffffff40;
    position: absolute;
    top: 10px;
    bottom: 10px;
    transform: translateX(5px);
}

.nav-mobile .nav-head li:after {
    border-right: 0;
}

.nav-head .submenu li:after,
.nav-head li:last-child:after {
    border-right: none;
}

.nav-mobile .nav-head li,
.nav-head li:last-child {
    border-right: none;
}

/* .nav-mobile ul ul {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.nav-mobile ul ul.d-none {
    display: inline-block !important;
    max-height: 0;
    padding: 0;
    margin: 0;
} */

.nav-head a {
    font-size: 20px;
    font-weight: 500;
}

a.logo-header img {
    width: 120px;
}

a.btn-header {
    display: inline-block;
    border-radius: 30px;
    padding: 12px 25px;
    border: 1px solid #fff;
    transition: .4s ease-in-out;
    color: #fff;
    width: -webkit-fill-available;
    text-align: center;
}

.header a.btn-header:hover {
    background: #fff;
    color: #000;
}

.bc-cyan {
    background: #3895FF;
}

a.nav-closed {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding-left: 10px;
}

a.nav-closed span {
    display: inline-block;
    width: 25px;
    height: 1px;
    background: #ffffff;
}

a.nav-closed span:last-child {
    width: 35px;
}

a.nav-closed span:first-child {
    width: 30px;
}

.nav-head .submenu {
    position: fixed;
    left: 0;
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 10px 60px;
    border-radius: 30px;
    border: 1px solid;
    background: radial-gradient(231% 135.8% at 0.9% 2.98%, #1d1a1ab8 0%, #4c4545 100%);
    /* backdrop-filter: blur(70px); */
    transform: translateY(30px);
}

.nav-head .submenu:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    filter: blur(60px);
    background: #00000085;
}

ul.list-inline.m-0.submenu-level-2 li {
    padding: 20px 0 0;
    text-align: left;
}

.submenu li a.fw-bold {
    font-size: 14px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

ul.submenu-level-2 a {
    font-size: 12px;
}

/* content */
section.webbanner {
    min-height: 100vh;
    background: url(assets/img/webbanner-min.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

a.btn-default,button.btn-default {
    display: inline-block;
    padding: 23px 100px 23px 30px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    color: #000;
    width: max-content;
    display: flex;
    align-items: center;
    transition: .4s ease-in-out;
    border: none;
}

a.btn-default:hover,button.btn-default:hover {
    background: #3895ff;
    color: #fff;
}

a.btn-default:hover i.icon-default,button.btn-default:hover i.icon-default {
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
}

a.btn-default.btn-aba:hover i.icon-default,button.btn-default.btn-aba:hover i.icon-default {
    transform: rotate(0deg);
    filter: brightness(0) invert(1);
}

i.icon-default.icon-doc:after {
    content: "";
    background: url(assets/svg/doc.svg) no-repeat center center;
    background-size: cover;
    position: absolute;
    inset: 5px;
    display: inline-block;
}

a.btn-default:hover  i.icon-default.icon-doc {
    transform: none;
    filter: none;
    background: #051a37;
}

.bc-white {
    background: #fff;
}

.bc-graylight {
    background: #f9f7f7;
}

span.box-icon {
    position: absolute;
    right: 10px;
    width: 45px;
    height: 45px;
    background: #3895FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explorer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

a.explorer:hover .arrow-down {
    animation: arrowJump 1s ease-in-out;
    transition: 1s ease-in-out;
}

i.icon-default {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .4s ease-in-out;
}

.btn-aba span.box-icon i.icon-default {
    width: 25px;
    height: 25px;
}

.arrow-down {
    transform: rotate(90deg);
    transition: .4s ease-in-out;
}

@keyframes arrowJump {
    0% {
        transform: rotate(90deg) translateX(0px);
        transition: 1s ease-in-out;
    } 50% {
        transform: rotate(90deg) translateX(5px);
        transition: 1s ease-in-out;
    } 100% {
        transform: rotate(90deg) translateX(0px);
        transition: 1s ease-in-out;
    }
}

section.webbanner-home:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #080E0E 100%);
    height: 100%;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

section.webbanner:after {
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(to right, #99999938 0%, #ffffff 49%, #99999931 100%);
    height: 1px;
    pointer-events: none;
    width: calc(100% - 5%);
    left: calc(100% - 97.5%);
}

section.aba1 {
    background: linear-gradient(180deg, #080E0E 29%, #000 84%, #1B2C3B 100%);
}

.bc-black {
    background: #313131;
}

.bc-gray {
    background: #E5E5E5;
}

@media(max-width:768px) {
    .webbanner.webbanner-produtos .content-banner.pt-5 {
        padding-top: 96px !important;
        padding-bottom: 30px;
    }
}

a.btn-aba {
    min-width: auto;
    padding: 0 65px 0 20px;
    max-width: fit-content;
}

a.btn-aba span.box-icon {
    width: 40px;
    height: 40px;
    top: calc(100% - 45px);
    background: none;
}

a.btn-aba span.box-icon i.icon-default.icon-key {
    width: 20px;
    height: 20px;
    background-image: url(assets/svg/key.svg);
}

.aba1 img {
    width: 100%;
}

.card-keycode.bc-gray {
    background: #F5F5F5;
    border-radius: 30px;
    padding: 30px;
    min-height: 265px;
}

.card-keycode.bc-gray img {
    max-width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.desc-item-tool {
    padding-top: 20px;
}

a.text-blue {
    color: #3895FF;
}

section.full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

section.about {
    background: url(assets/img/banner-about-min.jpg) no-repeat left;    
    background-size: cover;
}

section.full-height:before {
    content: "";
    background: linear-gradient(74deg, #1F1F1F 19.71%, rgba(0, 0, 0, 0.00) 55.8%);
    position: absolute;
    inset: 0;
}

section.faq ul {
    counter-reset: item;
    list-style-type: none;
}

section.faq ul li {
    counter-increment: item;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #E4E4E4;
    cursor: pointer;
    transition: .4s ease-in-out;
    display: flex;
    justify-content: space-between;
}

section.faq ul li a {
    align-content: center;
}

/* .response-answer.w-100 {
    padding: 30px;
    margin: 0;
    border-top: 1px solid #E4E4E4;
} */

section.faq ul li:hover {
    background: #e4e4e41a;
}

section.faq ul li:last-child {
    border-bottom: 1px solid #E4E4E4;
}

section.faq ul li span:before {
    content: counter(item, decimal);
    color: #3895FF;
    position: absolute;
    left: 10px;
    font-size: 34px;
    font-weight: 300;
    z-index: 9999;
}

span.numeric-count {
    align-self: center;
    display: inline-block;
    height: 20px;
    width: min(35%, 150px);
    position: relative;
}

section.faq ul li p {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px 10px 0;
}

.faq .list-inline i.icon-default,
.panel-list .list-inline i.icon-default {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #3895FF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.faq .number-item-faq {
    display: inline-block;
    width: 30px;
    height: 30px;
    left: 0;
    z-index: 9999999;
}

.faq .list-inline i.icon-arrow:before,
.panel-list .list-inline i.icon-arrow:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(assets/svg/arrow.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(180deg);
    transition: .4s ease-in-out;
}

.panel-list .list-inline i.icon-arrow:before {
    width: 15px;
    height: 15px;
}

.faq ul.list-inline li:hover i.icon-arrow:before,
.panel-list .list-inline li:hover i.icon-arrow:before {
    transform: rotate(270deg);
    transition: .4s ease-in-out;
}

.faq ul.list-inline li.active i.icon-arrow:before,
.panel-list .list-inline li.active i.icon-arrow:before {
    transform: rotate(360deg);
    transition: .4s ease-in-out;
}

.response-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    transition: .4s ease-in-out;
}

.faq-item.active {
    font-weight: bold;
    transition: .4s ease-in-out;
}

.response-answer.w-100.active {
    padding: 40px 0;
    margin: 0;
    border-top: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    transition: .4s ease-in-out;
    max-height: max-content;
}

.response-answer p {
    padding: 0 20px;
}


footer.footer-key {
    background: linear-gradient(180deg, #041833 0%, #102F5A 100%);
}

.footer-side-one {
    padding-bottom: 30px;
    border-bottom: 1px solid #133460;
}

.footer-side-one a.logo-foot img {
    width: 200px;
}

.footer-side-one a {
    color: #7289A8;
    font-size: 22px;
    display: block;
    width: max-content;
    padding: 10px 0 0;
}

.redes-sociais a.icon-redes {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redes-sociais {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 30px 0 0;
}

.icon-face {
    background-image: url(assets/svg/face.svg);
}

.icon-linkedin {
    background-image: url(assets/svg/linkedin.svg);
}

.icon-insta {
    background-image: url(assets/svg/insta.svg);
}

i.icon-heart {
    background: url(assets/svg/hearth.svg) no-repeat;
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 0;
    background-size: contain;
    transform: translateY(4.5px);
}

i.icon-default.icon-arrow {
    background-image: url(assets/svg/arrow.svg);
}

i.icon-faq {
    background-image: url(assets/svg/faq.svg);
}

i.icon-about {
    background-image: url(assets/svg/about.svg);
}

.bc-blue {
    background: #1A447D;
}

.footer-copy p,
.footer-copy a {
    font-size: 12px;
    color: #10305A;
}

@media(min-width:1024px) {
    .container, .container-lg, .container-md, .container-sm {
        width: calc(100% - 5%);
        max-width: 1300px;
        /* padding-left: 4.166666%;
        padding-right: 4.166666%; */
    }

    nav.nav-head {
        overflow: hidden;
        white-space: nowrap;
    }
    
    nav.nav-head ul {
        width: 100%;
        /* animation: scrollX 5s linear infinite alternate;
        padding: 0px 15px; */
        line-height: 0;
        justify-content: center;
    }
    
    /* Animação */
    @keyframes scrollX {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(0% - 27%));
        }
    }

    header.header .container {
        padding: 30px;
    }

    a.logo-header img {
        width: 150px;
    }

    .nav-head a {
        font-size: 8px;
    }

    a.btn-header {
        font-size: 12px;
    }

    a.icon-perfil {
        display: inline-block;
        width: 40px;
        height: 30px;
        /* background: red; */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }

    a.icon-search {
        background-image: url(assets/svg/search.svg);
    }

    a.user-conta {
        background-image: url(assets/svg/user.svg);
    }

    a.carrinho {
        background-image: url(assets/svg/cart.svg);
    }

    section.webbanner {
        padding-top: 50px;
    }

    .aba1 .desc-default p {
        font-size: 14px;
    }

    .item-card-tools {
        width: 24.3%;
        min-height: 353px;
    }
    
    .card-keycode.bc-gray {
        min-height: 270px;
    }
    
    .card-keycode.bc-gray img {
        max-height: 150px;
    }

    .desc-item-tool {
        padding: 20px 10px;
    }
    
    .desc-item-tool p {
        font-size: 14px;
    }
    
    section.aba1.py-5,
    section.py-5.ferramentas,
    section.py-5.faq {
        padding: 80px 0 !important;
    }

    section.faq ul li {
        padding: 20px;
    }

    span.numeric-count {
        width: min(10%, 150px);
    }

    section.faq ul li p {
        font-size: 20px;
        padding: 30px 35px;
    }
    
    .faq .list-inline i.icon-default {
        width: 50px;
        height: 50px;
    }

    .panel-list .list-inline i.icon-default {
        width: 40px;
        height: 40px;
    }

    footer.footer-key.pt-5 {
        padding: 48px 0 0!important;
    }

    .footer-side-one a {
        font-size: 26px;
    }

    .footer-copy.bc-white.py-4.mt-5 {
        margin-top: 80px !important;
    }

    .footer-side-two p {
        padding-right: 80px;
    }

    .footer-copy p, .footer-copy a {
        font-size: 14px;
    }
}

@media(min-width: 1280px) {
    .nav-head a {
        font-size: 10px;
    }
}

@media(min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Quem somos */
section.motiva {
    background: url(assets/img/banner-motiva-min.jpg) no-repeat left;
    background-size: cover;
}

section.full-height.motiva:before {
    background: linear-gradient(45deg, black, transparent);
}

i.icon-message {
    background-image: url(assets/svg/message.svg);
}

.card-historia {
    border-radius: 15px;
    min-height: 400px;
    width: 24%;
}

/* proposito */
.item-motiva .bc-gray-linear {
    border: 1px solid #fff;
    background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(21px);
    border-radius: 12px;
    max-width: 150px;
}

.item-motiva .bc-gray-linear img {
    width: 100%;
}

.img-people:before {
    content: "";
    border: 2px solid #3895FF;
    border-radius: 200px;
    position: absolute;
    inset: -20px;
}

.img-people {
    transform: scale(.7);
}

.card-depoimento {
    background: #F5F5F5;
    border-radius: 15px;
}

@media(min-width:1024px) {
    .item-motiva .bc-gray-linear {
        max-width: 80px;
    }

    .item-motiva.d-flex.align-items-center {
        width: 30%;
    }
    
    .item-motiva p {
        font-size: 12px;
    }

    .align-items-center.card-depoimento.d-flex.flex-md-column {
        width: 32%;
    }
}

/* Produtos */
section.webbanner-produtos {
    background: url(assets/img/banner-produtos-min.jpg) no-repeat 70% top;
    background-size: cover;
    min-height: 400px;
}

.search-container form,
.page-products main.main {
    position: relative;
}

.filters-products {
    padding-bottom: calc(3rem + 76px) !important;
}

.filter-product {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #0f1b29;
    width: 50%;
    height: 76px;
    z-index: 99;

    & .items-options, & .aply-filter {
        display: none;
    }

    & .items-options select.form-select {
        border: none;
        border-bottom: 1px solid #9F9F9F40;
        border-radius: 0;
    }

    & h2 {
        color: #fff;
        font-size: 20px;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .accordion-content {
        display: none;
        padding-left: 15px;
    }
    
    & .accordion-item.active .accordion-content {
        display: block;
    }
}


.items-options a {
    color: #000;
    border-bottom: 1px solid #9F9F9F40;
    padding: 15px 0;
    position: relative;
    text-decoration: none;
    font-size: 14px;
}

.items-options a:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #3895FF;
    border-bottom: 1.5px solid #3895FF;
    transform: rotate(45deg);
}

.categories-orders .order {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 76px;
    z-index: 99;

    & select, & .search-mobile {
        position: absolute;
        inset: 0;
        outline: none;
        border: none;
        padding: 20px;
        font-size: 20px;
        background: #3895ff;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .search-mobile {
        display: inline-block;
        /* width: 40px;
        height: 30px; */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(assets/svg/search.svg);
        background-origin: content-box;
    }
    
    .search-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    input#busca-produtos {
        border: 1px solid #b3b3b3;
        border-radius: 50px;
        padding: 10px 30px;
    }

    button#buscar {
        position: absolute;
        right: 5px;
        border: none;
        outline: none;
        background: #3895ff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        top: 2px;

        & svg {
            width: 15px;
            transform: translateY(-2px);
            filter: brightness(0) invert(1);
        }
    }
}

.categories {
    display: flex;
    overflow-x: scroll;
    margin-bottom: 30px;
    padding-bottom: 20px;
    /* animation: animaInvest 6s linear infinite alternate; */

    & .pb-2 {        
        border-bottom: 1px solid #9F9F9F40;
        text-align: center;
        padding: 0px 10px 10px;
        min-width: 120px;
        
        & a {
            color: #A5A3A3;
            font-size: 11px;

            &.cat-active {
                color: #000;
                border-bottom: 2px solid #3895FF;
            }
        }
    }

    &::-webkit-scrollbar {
        height: 0px;
        background: #0f1b291f;
    }
    
    &::-webkit-scrollbar-thumb {
        background: #3895ff;
    }
}

/* @keyframes animaInvest {
  0% {
      transform: translateX(0%);
 }
  100% {
      transform: translateX(-45%);
 }
} */

.content-single .search-container {
    z-index: 9;
}

.content-single .search-container button#buscar {
    width: 53px;
    height: 53px;
}

@media(min-width:1024px) {
    .filters-products {
        padding-bottom: 3rem !important;
    }

    .categories-orders .order {
        position: inherit;
        width: auto;
        height: auto;
        
        & select {
            position: inherit;
            background: transparent;
            border: 1px solid #B3B3B3;
            color: #000;
            border-radius: 30px;
            width: 200px;
            padding: 10px;
            font-size: 16px;
        }
    }
    
    .filter-product {
        position: sticky;
        top: 20px;
        background: transparent;
        width: 25%;
        border: 1px solid #B3B3B3;
        border-radius: 12px;
        padding: 30px;
        height: max-content;
        
        & .items-options, & .aply-filter {
            display: block;
        }
    }

    .filter-product h2 {
        position: relative;
        color: #000;
    }

    .aply-filter a.btn-default,
    .aply-filter button.btn-default {
        width: auto;
        padding: 20px;
        
        & span.box-icon {
            background: #fff;

            & i.icon-default.icon-arrow {
                filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(1830%) hue-rotate(195deg) brightness(105%) contrast(101%);
            }
        }
    }
    
    .aply-filter a.text-blue {
        text-align: center;
        display: inline-block;
        width: 100%;
        padding: 20px 0 0;
    }
    
    .categories {
        margin: 0;
        padding: 0;
        width: 75%;
        align-self: center;
        gap: 10px;

        & .pb-2 {        
        min-width: auto;
        
            & a {
                font-size: 12px;
            }

        }
    }
    
    .products-items a.item-card-tools {
        width: 31.5%;
    }
}

@media(min-width: 1280px) {
    .aply-filter a.btn-default,
    .aply-filter button.btn-default {
        padding: 25px;
    }

    .categories {
        width: 80%;
    }
}

/* paginacao */
.pagination-container a.page-numbers, .pagination-container span {
    border: 1px solid #B3B3B3;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #3895ff;
    margin: 0 3px;
    min-width: 35px;
    display: inline-block;
    text-align: center;
}

.pagination-container span.current.page-numbers {
    background: #3895ff;
    color: #fff;
}

a.prev.page-numbers, a.next.page-numbers {
    display: none;
}

@media(min-width:1024px) {
    a.prev.page-numbers, a.next.page-numbers {
        display: inline;
    }
}

/* single produto */
.webbanner-produtos h1 {
    width: min(80%, 700px);
    word-break: break-word;
}

.content-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
}

.galeria-produto {
    width: 100%;
}

.galeria-produto img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    height: 220px;
    object-fit: scale-down;
}

.d-flex.align-items-center {
    width: 100%;
}

.produto-info {
    border: 1px solid #B3B3B3;
    border-radius: 12px;
    padding: 30px;
}

.produto-info p:last-child {
    margin: 0;
}

.galeria-produto {
    background: #f5f5f5;
    padding: 30px 30px 80px;
    border-radius: 12px;
    position: relative;
    min-height: 300px;
}

.img-destaque-single {
    width: 100%;
}

.box-grid-images {
    position: absolute;
    bottom: 20px;
    left: 30px;
}

.box-grid-images img {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    cursor: pointer;
}

#descricao-produtos .active.align-items-baseline.flex-column.response-answer.w-100 {
    min-height: max-content;
}

.quantidade-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.quantidade-btn {
    background-color: #1a447d;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: .6s linear;
}

.quantidade-btn:hover {
    background-color: #3895ff;
}

.quantidade-input {
    width: 60px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    padding: 10px;
    height: 35px;
}

@media(min-width:1024px) {
    .content-description {
        padding: 60px 0;
    }

    .webbanner-produtos h1 {
        word-break: normal;
    }

    .galeria-produto {
        width: calc(50% - 30px);
        align-self: center;
        min-height: 440px;
        display: flex;
        align-items: center;
    }
    
    .produto-info, .desc-product {
        width: calc(50% - 30px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0;
    }

    .galeria-produto .img-destaque-single img {
        height: 300px;
    }

    .box-grid-images img {
        width: 50px;
        height: 50px;
    }
}

@media(min-width:1280px) {
    .galeria-produto {
        padding: 40px 40px 110px;
    }

    .galeria-produto .img-destaque-single img {
        height: 290px;
    }

    .box-grid-images {
        left: 40px;
    }

    .box-grid-images img {
        width: 70px;
        height: 70px;
        margin: 0 10px 0 0;
    }

}

/* Carrinho */
.absolute-carrinho {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 460px;
    max-width: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: ease-in-out 0.3s;
    z-index: 999999;
    height: 100%;
    justify-content: space-between;
    padding: 0;
}

body.overflow-carrinho:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000075;
    width: 100%;
    height: 300vh;
    z-index: 99;
}

.absolute-carrinho.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    display: flex;
    box-shadow: -23px 14px 39px -31px rgba(0,0,0,0.75);
}

.header_carrinho {
    padding: 30px 20px;
    background: url(assets/img/banner-produtos-min.jpg) no-repeat right;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.texto_header_header h3 {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 22px;
}

.btn_voltar a {
    width: 40px;
    height: 40px;
    background: #348cee;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.footer_carrinho{
    white-space: nowrap;
    padding: 20px 26px;
    border-top: 1.2px solid #E4E4E4;
    display: flex;
    flex-direction: column;
    justify-content: normal;
}

.content_carrinho {
    padding: 20px;
    overflow-y: auto;
    height: inherit;
    overflow-x: hidden;
}

.content_carrinho::-webkit-scrollbar {
    width: 7px;
    background: #FDFDFD;
}

div#content_carrinho::-webkit-scrollbar-thumb {
    background: #000000f5;
    border-radius: 5px;
}

.content_carrinho p{
    font-size: 20px;
}

i.carrinho-vazio {
    display: inline-block;
    background: url(assets/img/carrinho-de-compras.png) no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
}

.btn_finalizer_compra a:hover{
    background-color: #333;
    text-decoration: none;
}

.item_produto_carrinho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    border: 1px solid #e4e4e4;
    padding: 20px;
    margin: 0 0 10px;
    border-radius: 12px;
    width: 100%;
}

.imagem_carrinho {
    width: 115px;
    padding: 5px 10px;
    position: relative;
    width: 35%;
}

.imagem_carrinho span {
    position: absolute;
    background: #3894fe;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -10px;
    border-radius: 4px;
    padding: 5px;
}

.imagem_carrinho img {
    width: 95px;
    max-width: inherit;
    max-height: 95px;
    object-fit: contain;
    max-width: 100%;
    transform: scale(2);
}
.conteudo_produto_carrinho {
    word-break: break-word;
    width: 50%;
}
.conteudo_produto_carrinho h4{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3em;
}

.conteudo_produto_carrinho h4 {
    color: #3A4347;
}

a.btn_excluir_produto {
    background: #f9f7f7;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s ease-in-out;
    cursor: pointer;
    width: 15%;
}
 
a.btn_excluir_produto:hover{
    filter: invert(1);
}

i.icon-lixo {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: url(assets/img/lixo.png) no-repeat center center;
    background-size: contain;
}

.font-default span.atualiza-qtde {
    display: inline-block;
    width: 30px;
    background: #f9f7f7;
    margin: 10px 5px 0 0;
    border-radius: 3px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #152539;
    cursor: pointer;
}

/* Pagina de cadastro */
/* estilizacao form */
.aba-cadastro form {
    font-family: 'Montserrat';
}

.border-default {
    border-radius: 15px;
    border: 1px solid #e5e5e5;
}

.aba-cadastro fieldset.campos-comuns, .campos-comuns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.field-aside {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.field-aside input, .field-aside select {
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    text-indent: 10px;
}

input[type="text"][readonly], input[type="email"][readonly] {
    background: #efefef8a;
}

.aba-cadastro form button, .item-checkout button {
    border: none;
    width: min(100%, 200px);
    border-radius: 50px;
    padding: 10px;
    margin: 0 auto;
    display: block;
    transition: .6s ease-in-out;
}

fieldset#campos-cpf, fieldset#campos-cnpj {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

@media(min-width: 1024px) {
    .field-aside {
        width: 48%;
        gap: 5px;
    }
}

@media(min-width: 1280px) {
    .field-aside {
        width: 31.5%;
    }
}

/* Estilização do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
    color: #333;
}

.modal-content p {
    color: #666;
}

span.close {
    position: absolute;
    right: -20px;
    top: -20px;
    background: #3895ff;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
    color: #fff;
    cursor: pointer;
}

#fecharModal {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

#fecharModal:hover {
    background-color: #005f8d;
}

/* Pagina do carrinho */
.box-checkout {
    border: 1px solid #f5f5f5;
    border-radius: 12px;
}

aside.item-checkout {
    width: 100%;
    padding: 30px;

    & .field-aside {
        width: 100%;
    }
}

aside.aside-people {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 1rem;
}

@media(min-width:1024px) {
    aside.item-checkout {
        width: 50%;
        padding: 30px 3rem 0px 0;
    }

    form.dados-people {
        padding: 0 30px;
    }

    div#orcamento-itens {
        max-height: 620px;
        overflow-y: auto;
    }

    .item_produto_carrinho {
        grid-gap: 60px;
    }

    aside.item-checkout.aside-product {
        max-height: 710px;
        padding: 20px 3rem 0;
    }
}

/* Dashboard usuario */
li.list-item a:hover {
    background: #e5e5e5;
    transition: .3s ease-in-out;
}

li.list-item:first-child a:hover {
    border-radius: 12px 0 0 0;
}

li.list-item a {
    transition: .3s ease-in-out;
}

.tablist-guides a.active {
    font-weight: bold;
    color: blue;
}

.panel-orcamento .response-answer.w-100.active {
    padding: 20px 0 40px;
}

/* table orcamento */
.table-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-custom thead th {
    border-bottom: 2px solid #dee2e6;
    text-align: left;
    padding: 12px 8px;
    font-weight: 600;
    color: #8b8b89;
}

.table-custom tbody td {
    padding: 12px 8px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.status-scoping {
    color: #6c757d;
    font-style: italic;
}

.grade-a {
    color: #28a745;
    font-weight: bold;
}

.status-item-pendente {
    background: #f9f7e7;
    color: #bc9b49;
    font-weight: 600;
}

.status-item-aprovado {
    background: #f7fcf8;
    color: #65d2a0;
    font-weight: 600;
}

.status-item-recusado {
    background: #ffecec;
    color: #ad1d1a;
    font-weight: 600;
}

/* pre loader */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #3895ff;
    --_m: conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}
@keyframes l3 {to{transform: rotate(1turn)}}

button[type="submit"][disabled] {
    cursor: not-allowed;
    filter: brightness(0.8);
    transition: .6s ease-in-out;
}

/* dropdown conta */
.account-dropdown,
.search-form {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 .3125rem .1875rem rgba(0,0,0,0.2);
    /* padding: 30px; */
    right: 15px;
    top: calc(0px + 3rem);
    min-width: 200px;
    z-index: 999999;
}

.search-form {
    background: transparent;
    box-shadow: none;
}

.account-dropdown,
.search-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

span.close-box {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 300;
    cursor: pointer;
    background: #3895ff;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.item-level1 .level2.active h3,
.account-dropdown h3,
.account-dropdown h3 a.link-level1 {
    font-size: 20px;
    color: #3895ff;
}

.item-level1 .level2.active a,
.account-dropdown a {
    display: inline-block;
    width: 100%;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    width: max-content;
}

.account-dropdown h4 {
    font-size: 20px;
    font-weight: 400;
    color: #3895ff;
}

.item-level1 .level2.active h3 {
    border-bottom: 1px solid;
    padding: 0 0 10px;
}

input#busca-produtos-header {
    border: 1px solid #b3b3b3;
    border-radius: 50px;
    padding: 10px 30px;
}

button#buscar-header {
    position: absolute;
    right: 5px;
    border: none;
    outline: none;
    background: #3895ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 2px;

    & svg {
        width: 15px;
        transform: translateY(-2px);
        filter: brightness(0) invert(1);
    }
}
