html {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    color: rgb(49, 43, 69);
    background-color: rgb(240, 242, 245);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, Lato, "sans-serif";
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

h1 {
    font-weight: 700;
}



header {
    width: 100%;
    top: -65px;
    transition: top 0.2s;
    display: block;
    unicode-bidi: isolate;
}

.nav {
    -webkit-box-pack: center;
    justify-content: center;
    background: rgb(224, 86, 253);
    height: 65px;
    padding: 5px 0px;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-box-pack: justify;
    max-width: 1326px;
    margin: 0px auto;
}

.offcanvas.offcanvas-end {
    width: 250px;
}

.navbar-toggler {
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
    color: rgb(255, 255, 255);
    background: transparent;
    border: 0px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .navbar-toggler {
        display: flex;
        font-size: 2rem;
        width: 34px;
        height: 34px;
    }
}

.navbar-toggler-icon {
    color: rgb(255, 255, 255);
}

.menu-mobile {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: rgb(224, 86, 253);
    transition: left 0.2s;
}

.offcanvas-title {
    color: rgb(255, 255, 255);
    padding: 0px 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    margin-right: 20px;
}

.container-content {
    -webkit-box-pack: justify;
    max-width: 1326px;
    margin: 0px auto;
}

.aside {
    padding: 50px 10px 10px;
    /* position: relative; */
}

.aside-content {
    position: sticky;
    top: 80px;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(238, 238, 238);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.aside-content p {
    color: rgb(104, 112, 117);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.link-logo {
    color: rgb(255, 255, 255);
    padding: 0px 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    margin-right: 20px;
}

.logo-img {
    color: transparent;
    max-width: 140px;
    width: auto;
    height: 52px;
    border-radius: 4px;
}

.search-nav {
    margin-left: auto;
    margin-right: 6px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.hwjoi {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
    color: rgb(255, 255, 255);
    background: transparent;
    border: 0px;
    cursor: pointer;
}

.nav-link {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0px 12px;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 12px));
    gap: 16px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .grid-products {
        grid-template-columns: repeat(3, calc(33.3333% - 9px));
        gap: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .grid-products {
        grid-template-columns: calc(50% - 4px) calc(50% - 4px);
        gap: 8px;
    }
}

.product-box {
    position: relative;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    font-size: 1.4rem;
}

@media only screen and (max-width: 480px) {
    .product-box {
        padding: 0px;
    }
}

.card-discount {
    position: absolute;
    right: 4px;
    top: 4px;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgb(224, 86, 253);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
}

.card-img-top {
    position: relative;
    height: 160px;
}

.card-loja-logo {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: rgb(255, 255, 255);
    width: 36px;
    height: 36px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 6px;
}

.promo-time {
    color: rgb(130, 136, 140);
    font-style: normal;
    font-size: 1.2rem;
    line-height: 16px;
    margin: 8px 0px;
    font-weight: 400;
}

.link-product {
    text-decoration: none;
    color: inherit;
}

.product-name {
    min-height: 28px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-size: 1.4rem;
    color: rgb(53, 58, 61);
    font-weight: 500;
    line-height: 18px;
    overflow-wrap: break-word;
    line-break: strict;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-bottom: 6px;
}

.display-preco {
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.8rem;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.preco-de {
    text-decoration: line-through;
    font-weight: 400;
    color: rgb(130, 136, 140);
    margin-bottom: 0px;
    font-size: 1.2rem;
}

.preco-por {
    display: inline-block;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(224, 86, 253);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    font-weight: 700;
}

.title-h1 {
    line-height: 1.55556;
    font-size: 1.9rem;
    font-weight: 700;
}

.btn-primary {
    display: block;
    border-radius: 99px;
    font-size: 1.6em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
    text-align: center;
    background: rgb(224, 86, 253);
    padding: 15px 30px;
    width: 100%;
    max-width: max-content;
    margin: 20px auto;
    text-decoration: none;
    border: 0px;
}

.btn-primary:hover {
    background: rgb(231, 137, 250) !important;
    color: rgba(255, 255, 255, 0.9);
}

.btn-grupo {
    border: 0px;
    text-align: center;
    border-radius: 99px;
    cursor: pointer;
    background: rgb(85, 189, 85);
    width: 100%;
    display: block;
    padding: 8px;
    margin-top: 10px;
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.btn-grupo:hover {
    background: rgb(143, 230, 143);
    color: rgb(255, 255, 255);
}

footer {
    padding: 30px 0px;
}

.footer-content {
    max-width: 1326px;
    margin: 0px auto;
    text-align: center;
    color: rgb(104, 112, 117);
    font-size: 1.2rem;
}

.sociais {
    font-size: 1.8rem;
}

.certif {
    opacity: 0.9;
    padding: 0px 16px;
    margin-bottom: 20px;
}

.certif img {
    display: block;
    width: 100px;
    height: auto;
}

.copyright {
    display: block;
    text-align: left;
    padding: 0px 16px;
    font-size: 1.2rem;
}

.dvfd5454 {
    max-width: 700px;
    margin: 64px auto;
    color: rgb(20, 20, 20);
    font-size: 16px;
    font-weight: 500;
}
.ehDmSC {
    display: flex
;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px auto 32px;
    text-align: center;
}

.eCHJSx
 {
    position: relative;
}

.gJOTXN {
    border-radius: 58px;
    object-fit: cover;
    width: 96px;
    aspect-ratio: auto 96 / 96;
    height: 96px;
    border: 4px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0.6em;
}

.iAuUUp {
    margin: 15px;
    padding: 0px 30px;
    max-width: 400px;
}

.fEFkaI {
    font-size: 16px;
    line-height: 20px;
    margin: 0px auto;
    font-weight: 700;
    text-shadow: rgb(255, 255, 255) 0px 0.05em 0.04em;
}

.heGkck {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin: 5px auto 0px;
}

.PjQnQ {
    padding: 40px 0px;
    text-align: center;
}

.eCHJSx::after {
    content: "";
    width: 22px;
    height: 22px;
    bottom: 2px;
    right: 2px;
    display: block;
    position: absolute;
    background-image: url(/static/assets/imagens/verified-seal.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.foeSeL {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: 0px auto;
    width: 100%;
}

.bTBSug {
    display: flex
;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0.6em;
    background-color: rgb(255, 255, 255);
    border: 0px;
    border-radius: 60px;
    color: rgb(83, 76, 76);
    margin: 0px 12px 16px;
    padding: 24.5px 86px;
    cursor: pointer;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    overflow-wrap: break-word;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    text-decoration: none !important;
}

@media only screen and (max-width: 480px) {
    .bTBSug {
        font-size: 14px;
        line-height: 16px;
        padding: 24.5px 24px 24.5px 68px;
    }
}

.bTBSug:hover {
                -webkit-transform: scale(1.02);
                -ms-transform: scale(1.02);
                transform: scale(1.02);
                color: rgba(255,255,255,0.9);
                background-color: #e056fd;
            }

.WdFsC
 {
    position: absolute;
    width: 48px;
    height: 48px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    pointer-events: none;
    top: calc(50% - 24px);
    border-radius: 50%;
    left: 12px;
}

.cxsUNl {
    font-size: 10px;
    margin-top: 20px;
}

.cNWEon {
    display: block;
    text-align: left;
    padding: 0px 16px;
    font-size: 1.2rem;
}

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box
}

.exnyeE {
    margin-left: 8px;
    font-size: 1rem;
    border-radius: 3px;
    padding: 5px;
    background: rgba(211, 18, 185, 0.08);
    color: rgb(224, 86, 253);
}

.sdf5456s {
    padding: 16px 24px;
    background-color: rgb(255, 255, 255);
}

.dfvd4541d {
    display: flex;
    width: fit-content;
    /* text-decoration: none; */
}

.dfvd4541d p {
    color: rgb(112, 114, 116);
    font-size: 1.2rem;
    margin-bottom: -2px;
}

.iPiXMb {
    background-color: rgb(255, 255, 255);
    width: 36px;
    height: 36px;
    margin-right: 8px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
}

.dRQeTK {
    width: 100%;
    height: 300px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    text-align: center;
}

.foTygl {
    font-size: 1.6rem;
    line-height: 2rem;
    color: rgb(44, 44, 44);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kjHSQl {
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 55px;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 2.35rem;
}

.dCxagT {
    text-decoration: line-through;
    font-weight: 500;
    color: rgb(130, 136, 140);
    margin-bottom: -2px;
    font-size: 1.5rem;
}

.wEqjX {
    display: flex;
    font-size: 2.4rem;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(224, 86, 253);
    font-weight: bold;
}

.fhflJP {
    color: rgb(224, 86, 253);
    font-size: 1.2rem;
    font-weight: bold;
}


.gKbydx {
    background: rgb(255, 255, 255);
    display: block;
}

.drMtht {
    display: block;
    border-radius: 99px;
    font-size: 1.6em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
    text-align: center;
    padding: 15px 20px;
    width: 100%;
    background-color: rgb(224, 86, 253);
    text-decoration: none;
    margin-bottom: 10px;
}

.hsJSIt {
    font-size: 1.2rem;
    text-align: center;
    color: rgb(104, 112, 117);
}