@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --primaria: #993129;
}
* {
scrollbar-color: rgb(223, 227, 232) rgb(249, 250, 251);
scrollbar-width: thin;
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
html, body{
font-family: "Inter", sans-serif;
background-color:#FFFFFF;
color:#403f3f;
margin:0;
padding:0;
}
body{
max-width:1200px;
margin:0 auto;
}
ul{
margin:0;
padding:0;
}
ul li{
padding:0;
margin:0;
list-style: none;
}
img{
max-width: 100%;
height:auto;
border:0;
outline: 0;
}
button, input, a, select{
outline: 0 !important;
border:0;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
font-family: "Inter", sans-serif;
}
.loading__circle {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}
.loading__circle-spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid var(--primaria);
border-radius: 50%;
width: 50px;
height: 50px;
animation: loading__circle-spin 0.6s linear infinite;
}
@keyframes loading__circle-spin {
  to {
    transform: rotate(360deg);
  }
}
.container{
max-width: 1100px;
padding:0 20px;
}
#topo .banner{
width:100%;
height:170px;
}
#topo .banner img{
width:100%;
height:100%;
object-fit: cover;
}
#topo .header{
width: 100%;
background-color: #fff;
border-radius: 40px 40px 0 0;
position: relative;
z-index: 2;
margin-top: -40px;
text-align: center;
}
#topo .header .logo{
width: 120px;
height: 120px;
border: 5px solid #fff;
border-radius: 50%;
overflow: hidden;
margin: 0 auto -40px;
position: relative;
top: -50px;
}
#topo .header .detalhe{
display: flex;
align-items: center;
justify-content: center;
gap: 0 6px;
font-size: 14px;
padding:2px 0;
}
.aberto{
padding: 6px 10px;
border-radius: 20px;
color: #077c22;
background-color: #d7fdd7;
font-size: 13px;
font-weight: bold;
display: inline-flex;
gap: 6px;
margin: 10px auto;
}
@keyframes btn-pisca {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.btn-pisca {
-webkit-animation: btn-pisca .9s linear infinite;
-moz-animation: btn-pisca .9s linear infinite;
-ms-animation: btn-pisca .9s linear infinite;
-o-animation: btn-pisca .9s linear infinite;
animation: btn-pisca .9s linear infinite;
}
section#menu-nav{
padding: 10px;
background: var(--primaria);
}
section#menu-nav .categorias {
display: flex;
align-items: center;
overflow: hidden;
overflow-x: auto;
justify-content: center;
}
section#menu-nav .categorias a {
font-size: 16px;
color: #ffffff;
padding: 5px 20px 3px;
white-space: nowrap;
font-weight: 600;
transition:all .2s linear;
border-bottom: 2px solid transparent;
}
section#menu-nav .categorias a:hover{
border-color:#fff;
}
main#list{
padding:20px 0 30px;
}
.alert{
background-color: transparent !important;
border-width: 2px !important;
text-align: center;
padding: 10px 15px !important;
font-weight: 500;
font-size: 15px;
}
.alert.alert-danger{
color:red !important;
border-color:red !important;
}
.alert.alert-success{
color:#077c22 !important;
border-color:#077c22 !important;
}
main#list .produtos{
width: 100%;
display: flex;
align-items: stretch;
flex-wrap: wrap;
justify-content: space-between;
}
main#list .categoria{
padding:15px 0 25px;
}
main#list .categoria h2{
font-size: 20px;
font-weight: 700;
margin-bottom: 5px;
color: var(--primaria);
}
.produtos .produto-view{
margin-top: 25px;
width:calc(50% - 10px);
}
.produtos .produto-view a{
border: 2px solid #ccc;
display: flex;
border-radius: 15px;
padding: 20px 15px;
justify-content: space-between;
position: relative;
flex-wrap:wrap;
transition:all .2s linear;
}
.produtos .produto-view a:hover{
border-color:#000;
background-color: #f8fafc;
}
.produtos .produto-view a .text{
width: calc(100% - 118px);
color:#555;
}
main#list{
padding-bottom: 70px;
}
main#list .categoria .produtos .produto-view a .text h2{
font-size: 16px;
color: #333;
line-height: 22px;
margin: 0 0 5px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
min-height: 44px;
}
.produtos .produto-view a .text p{
font-size: 14px;
line-height: 21px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
margin: 0 0 15px;
}
.produtos .produto-view a .image img{
width:110px;
height:110px;
object-fit: cover;
border-radius: 10px;
}
.produtos .produto-view .text .preco{
display: flex;
align-items: center;
gap: 10px;
}
.produtos .produto-view .text .preco span{
font-size: 16px;
}
.produtos .produto-view .text .preco span.riscado{
display: block;
font-size: 14px;
text-decoration: line-through;
}
.produtos .produto-view .text .preco span.riscado span{
font-size: 14px;
}
.produtos .produto-view .text .preco span.atual{
font-weight: 700;
color: #077c22;
}
.produtos .produto-view .text .preco span.atual.atual-promo{
background-color: #077c22;
color: #fff;
border-radius: 5px;
padding: 3px 5px;
}
.produtos .produto-view span.mais-vendido{
color: #fff;
background: red;
border-radius: 8px;
font-size: 13px;
position: absolute;
top: -17px;
display: inline-flex;
justify-content: center;
font-weight: 700;
height: 28px;
width: auto;
align-items: center;
padding: 0 13px;
text-transform: uppercase;
}
.produtos .produto-view small.escolha{
display: block;
font-size: 13px;
font-style: italic;
line-height: 18px;
margin: 10px 0 7px;
width: 100%;
color:#000;
}
.produtos .produto-view small.disponiveis{
display: block;
font-size: 13px;
color:#000;
}
.produtos .produto-view small.disponiveis strong{
background-color: red;
color: #fff;
border-radius: 10px;
padding: 2px 7px;
font-size: 12px;
}
.pulsar {
transform: scale(1);
animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(7, 124, 34, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(7, 124, 34, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(7, 124, 34, 0);
    }
}
.alert.alert-danger.time{
background-color: rgb(255, 217, 217) !important;
}
.countdown {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.alert.alert-danger.time b{
margin-bottom: 10px;
display: block;
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#days, #hours, #seconds, #minutes {
width:50px;
height:40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 600;
background-color: red;
color: white;
border-radius: 5px;
}
.box p{
font-size: 15px;
margin:0;
}
.alert.alert-danger.time a{
background-color: white;
border-radius: 8px;
padding: 10px;
color:var(--primaria);
display: inline-flex;
margin-top:10px;
align-items: center;
justify-content: center;
height:28px;
font-size: 14px;
}
.avaliacoes{
color: #1f2937;
background-color: #f9fafb;
border: 2px solid #1f2937;
border-radius: 10px;
width: 100%;
margin: 0 auto 15px;
text-align: center;
padding: 12px 10px;
}
.avaliacoes h3{
font-weight: 700;
font-size: 20px;
letter-spacing: -1px;
margin: 0;
}
.avaliacoes .stars{
justify-content: center;
letter-spacing: 3px;
color: goldenrod;
}
.avaliacoes .nota{
justify-content: center;
font-size: 14px;
color: #333;
}
.avaliacoes span{
font-size: 14px;
color: #555;
}
.reviews{
padding: 0 0 30px;
}
.reviews .review{
display: flex;
align-items: center;
border-bottom: 1px solid #ccc;
padding: 15px 0;
}
.reviews .review .image{
width: 80px;
height: 80px;
margin-right: 15px;
}
.reviews .review .image img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px;
}
.reviews .review .text{
width: calc(100% - 95px);
}
.reviews .review .text .name{
display: flex;
align-items: center;
gap: 5px;
margin: 0 0 5px;
color: #1f2937;
}
.reviews .review .text .name b{
font-weight: 700;
font-size: 16px;
}
.reviews .review .text p{
font-size: 14px;
line-height: 20px;
color: #555;
font-weight: 500;
margin: 0;
}
.reviews .review .text .name .starts{
letter-spacing: 1px;
color: goldenrod;
}
.reviews .content-reviews{
display: flex;
flex-wrap: wrap;
gap:15px;
}
.reviews .content-reviews .review{
width: calc(50% - 8px);
}
.bottomBar {
position: fixed;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 20;
width: 100vw;
height: 54px;
border-top: 1px solid rgb(232, 234, 237);
display: flex;
justify-content: space-around;
-moz-box-align: center;
align-items: center;
background: rgb(255, 255, 255);
}
.bottomBar .contentBar {
max-width: 700px;
width: 100%;
display: flex;
align-items: center;
}
.bottomBar .contentBar a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 33.3333%;
color: rgb(127, 143, 159);
font-size: 13px;
font-weight: 500;
line-height: 150%;
text-align: center;
position: relative;
}
.bottomBar .contentBar a .icon .cart-badge {
position: absolute;
top: -5px;
right: -7px;
background: var(--primaria);
color: white;
border-radius: 50%;
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
}
.bottomBar .contentBar a .icon{
font-size: 18px;
position:relative;
}
.bottomBar .contentBar a.active {
color: var(--primaria);
}
section#menu-nav.fixed {
position: fixed;
width:100%;
left:0;
top: 0;
z-index: 11;
box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}
.delivery div:where(.swal2-container) h2:where(.swal2-title){
font-size: 22px;
}
.delivery div:where(.swal2-container) h2:where(.swal2-title.toast-title){
font-size: 16px;
}
.delivery div:where(.swal2-container) div:where(.swal2-html-container){
padding: 0 15px;
font-size: 18px;
}
.delivery div:where(.swal2-container) .swal2-select {
min-width: 50%;
max-width: 100%;
padding: 10px 15px;
background-color: #fff;
color: inherit;
font-size: 16px;
border: 1px solid #ccc !important;
border-radius: 8px;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(93,97,101,1)'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
background-size: 20px;
background-repeat: no-repeat;
background-position: center right 10px;
}
.delivery div:where(.swal2-container) div:where(.swal2-actions){
margin:10px 0 0;
}
.delivery div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
border-radius: 8px;
font-size: 16px;
width: 100%;
margin: 5px 2em 3px;
height: 47px;
}
div:where(.swal2-container) b{
font-weight: 600 !important;
}
.topo-produto{
padding: 15px 0;
background-color: #fff;
display: flex;
align-items: center;
}
.topo-produto .image-produto{
width:230px;
height: 230px;
overflow: hidden;
border-radius: 10px;
margin-right:20px;
}
.topo-produto .details{
width:calc(100% - 250px);
}
.topo-produto .details span.estoque{
display: block;
font-size: 14px;
}
.topo-produto .image-produto img{
width:100%;
height:100%;
object-fit: cover;
}
.topo-produto h2.titulo-produto{
color: rgb(48, 51, 60);
font-weight: 700;
font-size: 20px;
line-height: 26px;
}
.topo-produto p.descricao-produto{
font-size: 16px;
color: rgb(127, 143, 159);
font-weight: 500;
}
.topo-produto .produto-price{
margin-bottom: 15px;
}
.topo-produto .produto-price .price{
text-decoration: line-through;
font-size: 18px;
color: rgb(127, 143, 159);
margin-right: 10px;
font-weight: 500;
}
.topo-produto .produto-price .price_promo{
font-size: 20px;
font-weight: 700;
color: #077c22;
}
.opcoes-produto{
padding: 15px 0 60px;
}
.opcoes-produto .title-adicional{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
background-color: #f3f5f7;
padding: 10px 15px;
border-radius: 10px;
}
.opcoes-produto .title-adicional .title h2{
color: rgb(48, 51, 60);
font-weight: 700;
font-size: 18px;
margin: 0;
line-height: 20px;
}
.opcoes-produto .title-adicional .title span{
font-size: 15px;
font-weight: 500;
color: rgb(48, 51, 60);
}
.opcoes-produto .title-adicional .contador{
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 24px;
background: rgb(48, 51, 60);
border-radius: 30px;
font-size: 13px;
color: #fff;
padding-bottom: 1px;
}
.adicionais .option-item{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 15px;
border-bottom: 1px solid rgb(221, 226, 235);
}
.adicionais .option-item.disabled {
opacity: 0.6;
pointer-events: none;
}
.adicionais .option-item .name-adicional{
width: calc(100% - 100px);
}
.adicionais .option-item .name-adicional h3{
color: rgb(48, 51, 60);
font-weight: 700;
font-size: 16px;
margin: 0 0 3px;
line-height: 20px;
}
.adicionais .option-item .name-adicional span{
font-size: 14px;
line-height: 18px;
color: rgb(127, 143, 159);
font-weight: 500;
display: block;
}
.adicionais .option-item .seletor-adicional{
width: 90px;
border: 1px solid rgb(198, 205, 212);
background: rgb(243, 245, 247);
border-radius: 30px;
height: 36px;
}
.adicionais .option-item .seletor-adicional button.btn-qtd{
width: 33px;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
}
.adicionais .option-item .seletor-adicional button.btn-qtd svg{
width:auto;
height:16px;
}
.adicionais .option-item .seletor-adicional input{
width: 24px;
text-align: center;
background-color: transparent;
font-weight: 500;
color: rgb(48, 51, 60);
}
.adicionais{
margin-bottom: 25px;
}
.observacoes-produto{
position: relative;
}
.observacoes-produto label{
display: block;
width: 100%;
font-weight: 700;
font-size: 16px;
line-height: 22px;
letter-spacing: 0;
color: rgb(48, 51, 60);
margin: 0 0 5px;
}
.observacoes-produto textarea{
width: 100%;
margin: 0px auto;
height: 110px;
max-width: 100%;
border-radius: 10px;
padding: 8px 15px;
border: 1px solid rgb(248, 249, 250);
resize: none;
font-weight: 500;
line-height: 150%;
font-size: 15px;
color: rgb(127, 143, 159);
background-color: #f3f5f7;
}
.observacoes-produto small{
position: absolute;
right: 5px;
bottom: -22px;
font-weight: 600;
text-align: right;
line-height: 150%;
font-size: 14px;
color: rgb(127, 143, 159);
}
.bottomBuy{
position: fixed;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 110;
width: 100%;
box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 20px;
margin: 0px auto;
max-width: 100%;
padding: 12px 0;
display: flex;
-moz-box-align: center;
align-items: center;
-moz-box-pack: justify;
justify-content: space-between;
background-color: rgb(255, 255, 255);
}
.bottomBuy .contentBottomBuy{
width:100%;
max-width: 100%;
margin:0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap:0 30px;
}
.bottomBuy .contentBottomBuy .quantity-seletor{
width: 120px;
display: flex;
align-items: center;
justify-content: space-between;
}
.bottomBuy .contentBottomBuy .quantity-seletor button.btn-qtd{
width: 40px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(72, 84, 96);
color: rgb(255, 255, 255);
border-radius: 5px;
transition:all .2s linear;
}
.bottomBuy .contentBottomBuy .quantity-seletor input{
width: calc(100% - 80px);
text-align: center;
background-color: transparent;
font-size: 16px;
font-weight: 700;
color: rgb(48, 51, 60);
height:44px;
}
.bottomBuy .contentBottomBuy .quantity-seletor button.btn-qtd:disabled{
color: rgb(255, 255, 255);
cursor: not-allowed;
pointer-events: none;
background-color: rgb(198, 205, 212);
}
.bottomBuy .contentBottomBuy button.btn-comprar{
width: calc(100% - 150px);
height: 44px;
border-radius: 5px;
background-color: var(--primaria);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-weight: 600;
font-size: 16px;
padding-bottom: 2px;
transition:all .2s linear;
}
.bottomBuy .contentBottomBuy button.btn-comprar:disabled{
background-color: rgb(221, 226, 235);
cursor: not-allowed;
pointer-events: none;
color: rgb(127, 143, 159);
}

section#topo-details{
position: fixed;
left: 0px;
right: 0px;
top: 0px;
z-index: 110;
width: 100%;
box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 20px;
margin: 0px auto;
max-width: 100%;
padding: 7px 0;
display: flex;
-moz-box-align: center;
align-items: center;
-moz-box-pack: justify;
justify-content: space-between;
background-color: rgb(255, 255, 255);
}
a.voltar, a.voltar2 {
display: table;
padding: 10px 20px;
align-items: center;
background: var(--primaria);
color: #ffffff;
border-radius: 100px;
font-size: 12px;
}
section#produto{
padding-top:70px;
padding-bottom: 80px;
}
section#produto .container.item{
border: 2px solid #e1e1e1;
border-radius: 10px;
}
section#carrinho{
padding:60px 0 80px;
}
.items-cart .item-cart .content-item{
position: relative;
width: 100%;
margin-top: 10px;
padding: 0.75rem;
border-radius: 10px;
box-shadow: 0 1px 3px rgb(0,0,0,.1);
gap: 0.5rem;
display: grid;
grid-template-columns: auto 1fr;
background-color: #fff;
}
.items-cart .item-cart:first-child .content-item{
margin-top:0;
}
.items-cart .item-cart .content-item .image-item{
position: relative;
width: 80px;
height: 80px;
border-radius: 0.375rem;
display: flex;
-moz-box-align: center;
align-items: center;
-moz-box-pack: center;
justify-content: center;
background-color: rgb(243, 245, 247);
}
.items-cart .item-cart .content-item .image-item img{
width: 100%;
height: 100%;
border-radius: 0.375rem;
object-fit: cover;
}
.details-item .content-details{
position: relative;
display: contents;
}
.details-item .content-details > div h2{
font-weight: 700;
line-height: 120%;
font-size: 15px;
color: rgb(48, 51, 60);
margin: 0;
}
.details-item .content-details > div h3.price{
margin-right: 20px;
font-weight: 600;
margin-bottom: 0;
line-height: 120%;
font-size: 16px;
color: rgb(48, 51, 60);
min-width: 100px;
}
.details-item .content-details > div .opcoes-item span{
display: flex;
align-items: center;
font-weight: 500;
line-height: 140%;
font-size: 13px;
color: rgb(127, 143, 159);
padding:1px 0;
}
.details-item .content-details > div .opcoes-item span span{
width: 20px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
color: rgb(127, 143, 159);
background-color: rgb(243, 245, 247);
margin-right: 5px;
border-radius: 5px;
font-size: 12px;
padding:0 0 1px;
}
.details-item .content-details > div .seletor-item{
display: flex;
align-items: center;
margin:10px 0;
}
.details-item .content-details > div .seletor-item .selector{
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.25rem;
background: rgb(248, 249, 250);
height: 32px;
width: 88px;
}
.details-item .content-details > div .seletor-item .selector input{
width: 24px;
height: 32px;
background-color: transparent;
text-align: center;
font-size: 1rem;
font-weight: 600;
color: rgb(48, 51, 60);
}
.details-item .content-details > div .seletor-item .selector button{
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
}
.details-item .content-details > div .observacoes-item strong{
display: block;
font-size: 13px;
font-weight: 600;
color: rgb(127, 143, 159);
margin-top: 6px;
}
.details-item .content-details > div .observacoes-item span{
display: flex;
color: rgb(127, 143, 159);
font-size: 13px;
}
.resume-cart{
position: relative;
width: 100%;
margin-top: 20px;
padding: 0.75rem;
border-radius: 10px;
box-shadow: 0 1px 3px rgb(0,0,0,.1);
background-color: #fff;
}
.resume-cart .subtotal{
display: flex;
align-items: center;
justify-content: space-between;
color: rgb(48, 51, 60);
margin-bottom: 6px;
}
.resume-cart .total{
padding-top:10px;
border-top:1px solid rgb(0,0,0,.1);
display: flex;
align-items: center;
justify-content: space-between;
color: var(--primaria);
}
.acoes-cart{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
a.btn-action-cart.next{
display: flex;
align-items: center;
justify-content: center;
height: 48px;
background-color: var(--primaria);
border-radius: 10px;
margin-top: 15px;
border:2px solid var(--primaria);
color: #fff;
font-weight: 600;
text-transform: uppercase;
gap: 10px;
}
a.btn-action-cart.prev{
display: flex;
align-items: center;
justify-content: center;
height: 48px;
background-color: transparent;
border:2px solid var(--primaria);
border-radius: 10px;
margin-top: 15px;
color: var(--primaria);
font-weight: 600;
text-transform: uppercase;
gap: 10px;
}
a.btn-action-cart{
width:49%;
}
.complementar-pedido{
padding: 30px 0 50px;
}
.complementar-pedido h3{
font-size: 20px;
margin:0 auto 20px;
display: flex;
align-items: center;
gap:10px;
color: rgb(48, 51, 60);
font-weight:600;
}
.complementar-pedido .complementares{
display: flex;
align-items: stretch;
justify-content: space-between;
flex-wrap:wrap;
}
.complementar-pedido .complementares .complementar{
width:30%;
margin:0 0 15px;
background-color: #fff;
border-radius: 15px;
border-top:1px solid rgb(0,0,0,.1);
}
.complementar-pedido .complementares .complementar .image-item{
width:100%;
height:140px;
}
.complementar-pedido .complementares .complementar .image-item img{
border-radius:15px 15px 0 0;
width:100%;
height:100%;
object-fit: cover;
}
.complementar-pedido .complementares .complementar .dados-item{
padding:15px;
}
.complementar-pedido .complementares .complementar .dados-item h3{
font-size: 16px;
color: rgb(48, 51, 60);
font-weight:600;
margin:0 0 5px;
}
.complementar-pedido .complementares .complementar .dados-item .price{
display: flex;
align-items: center;
gap:8px;
margin:0 0 10px;
}
.complementar-pedido .complementares .complementar .dados-item .price span{
font-size: 14px;
text-decoration: line-through;
color: rgb(127, 143, 159);
}
.complementar-pedido .complementares .complementar .dados-item .price strong{
font-weight: 700;
color:#077c22;
font-size: 15px;
}
.complementar-pedido .complementares .complementar .dados-item .select{
margin:0 0 10px;
}
.complementar-pedido .complementares .complementar .dados-item button.add-extra{
display: flex;
align-items: center;
justify-content: center;
height:36px;
border-radius: 8px;
background-color: var(--primaria);
color:#fff;
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
width:100%;
}
.complementar-pedido .complementares .complementar .dados-item select{
display: none;
}
.select2.select2-container{
width:100% !important;
}
.select2-search.select2-search--dropdown{
display:none;
}
.select2-hidden-accessible{
display: none;
}
.select2-selection__rendered{
width: 100%;
line-height: 150%;
transition: box-shadow .15s ease,border-color .15s ease;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-clip: padding-box;
display: flex;
align-items: center;
flex-wrap:wrap;
padding:5px 10px;
font-size:15px;
background-color: #f3f5f7;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(91,91,95,1)'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
background-repeat:no-repeat;
background-size:18px;
background-position:center right 7px;
cursor:pointer;
height: 36px;
font-weight: 500;
border-radius: 8px;
}
.select2-selection[aria-expanded="true"] .select2-selection__rendered{
border-color:var(--primaria);
}
.select2-selection__rendered li{
height: 100%;
display: flex;
align-items: center;
}
.select2-selection__rendered li.select2-selection__choice{
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
background-color: var(--primaria);
color: #fff;
padding: 0 10px 3px 6px;
border-radius: 20px;
height: 22px;
line-height: 1;
font-size: 14px;
}
.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove{
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
line-height: 1;
width: 14px;
height: 14px;
padding-bottom: 1px;
cursor: pointer;
}
.select2 + .select2-container{
width:100%;
z-index:99;
}
.select2-dropdown{
display: flex;
border: 0;
border-radius: .5rem;
background-color: #fff;
overflow: hidden;
box-shadow: 0 0 15px rgba(13, 13, 13, 0.1);
padding: 5px 5px;
}
.select2-dropdown .select2-results{
overflow: auto;
max-height: 240px;
}
.select2-dropdown .select2-results, .select2-dropdown .select2-results ul{
width:100%;
}
.select2-dropdown .select2-results ul li{
padding: 10px 15px;
font-size: 13px;
cursor: pointer;
font-weight: 400;
border-radius: 0.5rem;
background-color: transparent;
margin-bottom: 3px;
}
.select2-dropdown .select2-results ul li.select2-results__option.select2-results__option--highlighted{
background-color: var(--primaria);
color:#fff;
font-weight:500
}
.select2-dropdown .select2-results ul li.select2-results__option[aria-selected="true"]{
background-color:var(--primaria);
color:#fff;
opacity:0.4;
pointer-events:none;
}
.select2-selection__placeholder{
color: rgb(48, 51, 60);
}	
.faixa-topo{
background-color:var(--primaria);
color:#fff;
padding:15px 0;
}
.faixa-topo span{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-weight: 700;
color:#fff;
font-size: 16px;
line-height: 22px;
}
.content-checkout{
padding:20px 0 50px;
min-height: calc(100vh - 74px);
}
#social-proof-container .social-proof-content, #social-proof-container-mobile .social-proof-content {
gap: 10px;
padding: 25px 0px;
border-bottom: dashed 1px #d0d0d0;
}
#social-proof-container .social-proof-content .social-proof-image, #social-proof-container-mobile .social-proof-content .social-proof-image {
width: 60px;
height: 60px;
border-radius: 50%;
}
#social-proof-container .social-proof-content .social-proof-info-container, #social-proof-container-mobile .social-proof-content .social-proof-info-container {
gap: 4px;
width:calc(100% - 60px);
}
.flex-col {
flex-direction: column;
}
.social-proof-rate{
line-height: 1;
margin-top: -5px;
}
#social-proof-container .social-proof-content .social-proof-name, #social-proof-container-mobile .social-proof-content .social-proof-name {
font-size: 15px;
font-weight: 700;
color: #2b2b2b;
margin: 3px 0 0;
line-height: 18px;
}
#social-proof-container .social-proof-content .social-proof-message, #social-proof-container .social-proof-content .social-proof-message *, #social-proof-container-mobile .social-proof-content .social-proof-message, #social-proof-container-mobile .social-proof-content .social-proof-message * {
font-size: 14px;
color: #2b2b2b;
margin: 0px;
line-height:18px;
}
#social-proof-container .social-proof-content:last-child {
border-bottom: none;
}
#social-proof-container-mobile {
box-sizing: border-box;
background-color: white;
display: none;
position: relative;
}
#resume-social-proof-container {
width: 430px;
gap:10px;
}
#resume-cart {
gap: 10px;
}
#content-checkout-three-steps {
width:calc(100% - 460px);
}
.cart-section-container {
box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
padding: 24px;
border-radius: 5px;
background-color:#fff;
}
.cart-section-container h3{
font-size: 15px;
color: #2b2b2b;
font-weight: 700;
margin:0 0 5px;
}
.product-item{
border-bottom: 1px solid #eee;
padding-bottom: 15px;
padding-top: 15px;
}
.product-item .image-produto{
width:60px;
height:60px;
}
.product-item .image-produto img{
width:100%;
height:100%;
object-fit:cover;
}
.product-item .dados-produto{
width:calc(100% - 105px);
}
.product-item .dados-produto span{
font-weight: 400;
font-size: 14px;
line-height:18px;
display:inline-block;
color: #2b2b2b;
margin-bottom: 5px;
}
.product-item .dados-produto .price-item{
margin-bottom: 10px;
}
.product-item .dados-produto .price-item span{
font-size: 14px;
text-decoration: line-through;
color: #2b2b2b;
}
.product-item .dados-produto .price-item strong{
font-weight: 700;
color: #2b2b2b;
display: flex;
align-items: center;
font-size: 14px;
}
.product-item .dados-produto .price-item strong small{
font-size: 12px;
font-weight: 400;
margin-left: 5px;
}
.product-item .remover-produto{
width:25px;
padding-left:10px;
}
.product-item .dados-produto .cart-quantity{
display:flex;
align-items:center;
justify-content:center;
border: 1px solid #2b2b2b;
border-radius:30px;
padding:5px;
height:30px;
width:90px;
}
.product-item .dados-produto .cart-quantity button{
position:relative;
background-color:transparent;
color:#2b2b2b;
width:25px;
height:100%;
display:flex;
align-items:center;
justify-content:center;
padding:0;
}
.product-item .dados-produto .cart-quantity button span{
width:10px;
height:10px;
}
.product-item .dados-produto .cart-quantity button span:after,.product-item .dados-produto .cart-quantity button span:before{
background-color:#acacac;
}
.product-item .dados-produto .cart-quantity button:hover span:after,.product-item .dados-produto .cart-quantity button:hover span:before{
background-color:#5ac038;
}
.product-item .dados-produto .cart-quantity input{
-moz-appearance: textfield !important;
-webkit-appearance: textfield !important;
-ms-appearance: textfield !important;
appearance: textfield !important;
width:40px;
height:100%;
text-align:center;
color:#2b2b2b;
font-size:14px;
border:0;
outline:none;
box-shadow:none;
}
.product-item .dados-produto .cart-quantity input[type='number']{
-moz-appearance:textfield;
appearance: textfield;
}
.product-item .dados-produto .cart-quantity input[type='number']::-webkit-outer-spin-button,
.product-item .dados-produto .cart-quantity input[type='number']::-webkit-inner-spin-button {
-webkit-appearance:none;
display:none;
margin:0;
}
.remover-produto a{
color: #2b2b2b;
transition:all .3s linear;
}
.remover-produto a:hover{
color:#ff0000;
}
.items-end{
padding-top:10px;
}
.items-end > div{
padding:5px 0;
}
.items-end span.resume-cart-price-title{
color: #2b2b2b;
font-size:16px;
font-weight:400;
}
.items-end .total-value-resume span{
color: #2b2b2b;
font-size:16px;
}
.items-end .total-value-resume span.price-total span{
font-size:18px;
}
.bg-white {
background-color: white;
border-radius:5px;
padding:15px;
}
.bg-white.disabled_step {
opacity: 0.4 !important;
}
.bg-white.enable_step {
opacity: 1 !important;
}
.bg-white .section-title {
font-size: 15px;
font-weight: 700;
line-height:16px;
}
.bg-white .section-subtitle {
font-size: 15px;
font-weight: 400;
line-height:18px;
}
.bg-white .form-group {
margin-bottom: 15px;
gap: 5px;
}
.bg-white .form-group label {
font-size: 15px;
color: #2b2b2b;
}
.bg-white .input-default {
width:100%;
height: 54px;
border: 1px solid #d0d0d0;
padding: 2px 15px;
transition: all .3s;
color: #2b2b2b;
border-radius:10px;
background-color:#fff;
font-size:15px;
}
.bg-white .input-default-select{
width:100%;
height: 54px;
border: 1px solid #d0d0d0;
background-color:#fff;
-webkit-appearance: none;
appearance: none;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
background-position: center right;
background-repeat:no-repeat;
}
.bg-white .form-group span {
font-size: 13px;
}
.bg-white .label-error {
display: none;
margin-left: 1px;
margin-top: 0;
color: #ff6666;
font-size: 13px;
line-height:1;
}
.bg-white button.btn-checkout{
width:100%;
height:56px;
margin-top: 10px;
border-radius:10px;
background-color:var(--primaria);
color:#fff;
font-weight: 700;
font-size:16px;
transition:all .3s linear;
}
.bg-white button.btn-checkout:hover{
background-color:#02773e;
}
.bg-white button.btn-checkout .inner-text{
align-items:center;
}
.bg-white.disabled_step #delivery-address-inputs, .bg-white.disabled_step #shipping-methods, .bg-white.disabled_step #personal-data-inputs, .disabled_step #payment_box_methods_container .box-payment {
display: none !important;
}
.enable_step #step2-summary-container, .enable_step #step1-summary-container {
display: none !important;
}
.bg-white .input-default.error {
background-color: #FEECEF;
}
.disabled_step.validated.enable_step_edit {
cursor: pointer;
position: relative;
}
.disabled_step.validated.enable_step_edit:hover:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
}
#step1-summary-container p, #step2-summary-container p{
margin:0;
line-height:1;
}
#step1-summary-container p b, #step2-summary-container p b{
font-weight:700;
}
#hidden-zipcode-after-valid{
line-height: 1;
}
.custom-radio-active {
background-color: var(--primaria) !important;
box-shadow: 0px 0px 0px 3px white inset;
}
span#shipping-method-title-82579{
line-height: 1.2;
font-size:15px;
}
#shippings label span{
line-height: 1.2;
font-size:15px;
}
#shippings label span.label-price-shipping{
text-align:right;
}
#shippings label span.label-price-shipping b{
font-size: 16px;
}
#shippings label{
margin:10px 0 15px;
padding:0 5px;
}
.radios-payment-methods{
min-width: 20px;
min-height: 20px;
width: 20px;
height: 20px;
border-radius: 100%;
border: 1px solid #bbb;
}
.label-box-methods-payment {
font-size: 15px;
font-weight: 700;
flex: 1 1 0%;
padding-left: 10px;
width:100%;
}
.label-box-methods-payment b{
font-weight:700;
}
#container-payment-pix_hipercash p{
line-height: 1.2;
font-size: 15px;
}
#container-payment-pix_hipercash p b{
font-weight:700;
font-size:15px;
text-transform: uppercase;
}
button#general-submit-button{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--primaria);
height: 56px;
margin: 0;
cursor: pointer;
font-weight: normal;
color: #fff;
font-size: 15px;
transition: all .3s linear;
border-radius:10px;
animation: pulse-finalize 1.7s ease-in-out infinite;
}
@keyframes pulse-finalize {
  0% {
    box-shadow: 0 0 0 0 var(--primaria), 0 0 0 0 var(--primaria)
  }
  40% {
    box-shadow: 0 0 0 10px rgba(255, 158, 74, 0), 0 0 0 0 var(--primaria);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(255, 158, 74, 0), 0 0 0 5px rgba(255, 158, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 158, 74, 0), 0 0 0 5px rgba(255, 158, 74, 0);
  }
}
button#general-submit-button b{
font-weight: 700;
margin-right: 7px;
font-size: 16px;
}
button#general-submit-button span{
font-size:16px !important;
}
section#rodape-checkout hr{
border-top: 2px solid #2b2b2b;
}
section#rodape-checkout span#payment_methods_footer_label{
color: #2b2b2b;
display:block;
text-align:center;
font-size:15px;
text-transform: uppercase;
font-weight: 700;
}
section#rodape-checkout #payment_methods_footer_img {
margin-top: 10px;
margin-bottom: 25px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 10px;
}
section#rodape-checkout .cnpj span, section#rodape-checkout .name span{
color: #2b2b2b;
display:block;
text-align:center;
font-size:13px;
}
section#rodape-checkout .links-footer, section#rodape-checkout .links-footer a{
color: #2b2b2b;
font-size:13px;
margin-top:4px;
transition:all .3s linear;
}
section#rodape-checkout .links-footer a:hover{
opacity:0.7;
}
section#rodape-checkout{
padding:20px 0 30px;
}
span.discount-payment{
position: absolute;
top: -12px;
background-color: #2b2b2b;
color: #fff;
font-size: 12px;
padding: 2px 8px;
border-radius: 5px;
left: 20px;
}
.box-payment{
border:1px solid #2b2b2b;
padding:20px;
position:relative;
}
.box-payment.disabled{
opacity: 0.7;
pointer-events: none;
margin-top:15px;
padding: 15px 20px;
}
.box-payment span.aviso-card{
background-color: #ff2020;
color: #fff;
padding: 3px 12px;
border-radius: 30px;
font-size: 12px;
}
.areaPix h3{
text-align: center;
font-size: 22px;
line-height: 1;
font-weight: 700;
margin: 0 0 15px;
}
.areaPix .qrCode{
width: 190px;
margin: .75rem auto 1rem;
background-color: #fff;
padding: 10px;
box-shadow: 0 0 5px rgba(13, 13, 13, 0.2);
border-radius: .5rem;
}
input#copia_cola{
width: 100%;
background-color: rgb(248,248,248);
border: 1px dashed #ccc;
border-radius: .5rem;
padding: 5px 15px;
height: 48px;
font-size: 14px;
color: #2b2b2b;
margin: 0 auto 12px;
max-width: 90%;
display: block;
}
button.btn-copiar{
width: 100%;
height: 44px;
background-color: var(--primaria);
color: #fff;
font-weight: 700;
font-size: 1rem;
line-height: 1;
border-radius: .5rem;
transition: all .3s linear;
max-width: 90%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
text-transform: uppercase;
}
button.btn-copiar:hover{
background-color: #02773e; 
}
.areaPix .infos p{
max-width: 90%;
margin: 0 auto 15px;
color: #2b2b2b;
font-size: 13px;
}
#area-pix .dados{
background-color: #fff;
max-width: 600px;
margin: 5px auto 0;
padding: 20px 5px 5px;
border-radius:10px;
box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
}
.dados .pedido{
max-width: 90%;
margin:0 auto;
}
.dados .pedido h3{
text-align: center;
font-size: 22px;
line-height: 1;
font-weight: 700;
margin: 0 0 15px;
}
.dados .pedido p{
text-align: center;
font-size: 16px;
color:#2b2b2b;
}
.dados .pedido .dados-pedido{
background-color: #f4f4f4;
padding:15px 15px 8px;
border-radius: 10px;
margin-bottom: 15px;
}
.dados .pedido .dados-pedido .item{
margin-bottom: 10px;
}
.dados .pedido .dados-pedido .item strong{
display: block;
text-align: center;
color:#2b2b2b;
font-size: 16px;
line-height: 1.2;
}
.dados .pedido .dados-pedido .item span{
display: block;
text-align: center;
color:#2b2b2b;
font-size: 15px;
line-height: 1.2;
}
.tabela table tbody tr td.image{
width:50px;
}
.tabela table tbody tr td.image img{
width:50px;
border: 1px solid #e4e4e4;
}
.tabela table tbody tr td.price{
text-align: center;
font-size: 15px;
width: 80px;
color: #2b2b2b;
}
.tabela table tbody tr td.qtd{
text-align: center;
font-size: 15px;
width: 50px;
color: #2b2b2b;
}
.tabela table tbody tr td.total{
font-size: 15px;
width: 80px;
color: #2b2b2b;
text-align: right;
font-weight: 700;
}
.tabela table tbody tr td.title span{
padding: 0 10px;
font-size: 14px;
line-height: 1.2;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 500;
text-transform: uppercase;
}
.tabela table tbody tr td{
padding:7px 0;
}
.tabela table tbody tr{
border-bottom: 1px solid #ccc;
}
.dados .pedido .resumo-final{
padding:2px 0 25px;
}
.dados .pedido .resumo-final{
width:100%;
}
.dados .pedido .resumo-final .item{
display: flex;
align-items: center;
justify-content: space-between;
color:#2b2b2b;
padding:5px 0;
}
.dados .pedido .resumo-final .item:not(:last-child){
border-bottom: 1px solid #ccc;
}
p.img-status{
padding:15px 0;
}
p.img-status img{
max-width: 400px;
}
.message-top {
text-align: center;
padding: 0;
font-size: 14px;
background: #000;
color: #fff;
overflow: hidden;
}
.message-top.marquee-custom .message-top__content {
display: flex;
gap: 20px;
white-space: nowrap;
animation: 50s linear infinite marqueeCustom;
opacity: 1;
}
.message-top .item span{
display: table;
text-align: center;
margin: 7px auto 8px;
color: #fff;
font-weight: 400;
position:relative;
text-transform: uppercase;
font-size: 14px;
}
.message-top .item span b{
font-size: 14px;
}
.message-top.marquee-custom .item span::after {
content: "";
width: 4px;
height: 4px;
margin: -4px 0 0 20px;
background: #fff;
display: inline-block;
vertical-align: middle;
border-radius: 13px;
}
@keyframes marqueeCustom{from{transform:translateX(0)}to{transform:translateX(-100%)}}
span.title-orderBump{
display: block;
margin: 25px 0 0px;
font-size: 16px;
color: #313c52;
text-align: center;
font-weight: 500;
}
span.title-orderBump strong{
color: var(--primaria);
}
.item-orderBup{
position: relative;
border: 2px dashed #f79f1a;
transition: background-color 2s,opacity .5s,filter .5s;
background-color: #fff5ee;
padding: 12px 12px 20px;
display: flex;
align-items: flex-start;
border-radius: 10px;
margin: 25px 0 35px;
cursor: pointer;
}
.item-orderBup .ob-purchased, .item-orderBup .trash{
display: none;
}
input:checked + .item-orderBup .ob-purchased, input:checked + .item-orderBup .trash{
display: flex;
}
input:checked + .item-orderBup{
background-color: #f3fff7;
border: 2px dashed #59bf75;
padding: 20px 12px 12px;
margin-bottom: 12px;    
}
.item-orderBup .ob-purchased{
align-items: center;
justify-content: center;
font-size: 10px;
text-transform: uppercase;
color: #fff;
font-weight: 700;
background-color: #59bf75;
position: absolute;
top: -10px;
border-radius: 5px;
width: 128px;
gap: 0 5px;
height: 20px;
padding-bottom: 1px;
left: 18px;
}
.item-orderBup .trash{
position: absolute;
top:15px;
right:15px;
}
.item-orderBup .image{
width: 70px;
height: 70px;
overflow: hidden;
border-radius: 8px;
margin-right: 12px;
background-color:#fff;
}
.item-orderBup .image img{
width:100%;
height:100%;
object-fit: cover;
}
.item-orderBup .dados{
width:calc(100% - 82px);
}
.item-orderBup .selecionar{
position: absolute;
right:12px;
bottom:-16px;
display: flex;
align-items: center;
height:32px;
border-radius: 8px;
background-color: #ca6e39;
color:#fff;
font-weight: 700;
text-transform: uppercase;
font-size: 14px;
padding: 0 12px;
}
.item-orderBup .selecionar span{
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
width: 18px;
height: 18px;
border: 1px solid rgb(221, 226, 235);
border-radius: 5px;
padding: 3px;
transition: all .2s linear;
margin-right: 10px;
}
.item-orderBup .selecionar span span{
width:100%;
height: 100%;
background-color: #fff;
padding: 0;
border:0;
}
input:checked + .item-orderBup .selecionar{
display: none;
}
.item-orderBup .dados h3{
color: #313c52;
font-size: 15px;
text-transform: uppercase;
font-weight: 700;
margin: 0 0 3px;
}
.item-orderBup .dados span{
display: block;
color: #999;
font-size: 12px;
margin:0 0 6px;
}
.item-orderBup .dados .price-list{
display: flex;
align-items: center;
gap:10px;
}
.item-orderBup .dados .price-list span.antes{
font-size: 12px;
font-weight: 400;
color: #e81414;
text-decoration: line-through;
}
.item-orderBup .dados .price-list span.atual{
font-size: 16px;
line-height: 16px;
font-weight: 700;
color: var(--primaria);
}
.produto-cart{
position: relative;
display: flex;
align-items: flex-start;
padding: 12px 0;
border-bottom: 1px solid #dbdbdb;
}
.produto-cart .quantity{
position: absolute;
right: 5px;
top: 14px;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background-color: #028b4b;
border-radius: 50%;
color: #fff;
font-size: 14px;
}
.produto-cart .image{
width: 78px;
height: 78px;
overflow: hidden;
border-radius: 10px;
margin-right: 15px;
}
.produto-cart .image img{
border-radius: 10px;
width:100%;
height:100%;
object-fit: cover;
}
.produto-cart .dados{
width: calc(100% - 93px);
}
.produto-cart .dados h3{
max-width: 90%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 3px 0 5px;
}
.produto-cart .dados p{
font-size: 14px;
font-weight: 400;
margin: 0 0 5px;
color: #555;
}
.produto-cart .dados .price{
display: flex;
align-items: center;
gap: 10px;
}
.produto-cart .dados .price span.price{
text-decoration: line-through;
font-size: 13px;
color: #666;
display: block;
}
.produto-cart .dados .price span.promo{
font-size: 15px;
font-weight: 700;
color: var(--primaria);
}

.confirme-pedido{
display: flex;
align-items: center;
padding: 15px 20px;
background-color: rgb(68, 204, 170);
border-radius: 10px;
width: 300px;
margin: 30px auto;
}
.confirme-pedido .text{
margin-left: 20px;
font-size: 18px;
color: #fff;
}
.status-order ul{
position: relative;
width: 290px;
margin: 0 auto;
}
.status-order ul li{
display: flex;
align-items: center;
gap: 15px;
color: rgb(127, 143, 159);
font-weight: 500;
font-size: 16px;
position: relative;
z-index: 2;
}
.status-order ul li .icone{
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(232, 234, 237);
border-radius: 50%;
}
.status-order ul li.active{
color:#000;
}
.status-order ul li.active .icone{
background-color: rgb(255, 151, 0);
}
.status-order ul li .icone svg path{
fill:rgb(127, 143, 159);
}
.status-order ul li.active .icone svg path{
fill:#fff;
}
.status-order ul li:not(:last-child){
margin-bottom: 40px;
}
.status-order ul:before{
content:'';
width:2px;
height:100%;
top:0;
left:13px;
background-color: rgb(232, 234, 237);
position:absolute;
}
b, strong{
font-weight: 700;
}
section#entrega-prioritaria{
padding: 40px 0;
}
section#entrega-prioritaria .logo{
text-align: center;
margin:0 auto 20px;
}
section#entrega-prioritaria .logo img{
width:90px;
height:90px;
object-fit: cover;
border-radius: 50%;
}
section#entrega-prioritaria .content-upsell{
background-color: white;
border-radius:12px;
padding:25px 30px;
box-shadow: 0 0 2px rgb(0,0,0,.1);
max-width: 720px;
margin:0 auto 15px;
}
section#entrega-prioritaria .content-upsell .title{
display: flex;
align-items: center;
justify-content: space-between;
color: rgb(48, 51, 60);
font-weight: 700;
font-size: 22px;
margin: 0 auto 24px;
}
section#entrega-prioritaria .content-upsell .title i{
color: hsl(0, 85.4%, 59.8%);
}
section#entrega-prioritaria .content-upsell .alert.alert-warning{
background-color: hsl(45.7, 100%, 95.9%) !important;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 16px;
border-width:1px !important;
}
section#entrega-prioritaria .content-upsell .alert.alert-warning i{
font-size: 20px;
}
section#entrega-prioritaria .content-upsell p{
color: rgb(48, 51, 60);
text-align: center;
margin-bottom: 25px;
}
section#entrega-prioritaria .content-upsell .alert{
margin-bottom: 20px;
}
section#entrega-prioritaria .content-upsell .alert.alert-danger{
background-color: #fff1f3 !important;
padding:15px 10px !important;
border-width:1px !important;
}
section#entrega-prioritaria .content-upsell .alert.alert-danger h4{
font-weight: 700;
font-size: 16px;
}
section#entrega-prioritaria .content-upsell .alert.alert-danger p{
font-size: 16px;
margin:0;
}
section#entrega-prioritaria .content-upsell .alert.alert-danger p span{
color:red;
font-weight: 700;
}
section#entrega-prioritaria .content-upsell p span.price{
font-weight: 700;
color:var(--primaria);
font-size: 18px;
}
section#entrega-prioritaria .content-upsell .alert.alert-light{
background-color: #fcfcfd !important;
color:red;
display: flex;
align-items: center;
justify-content: center;
}
section#entrega-prioritaria .content-upsell .alert.alert-light strong{
max-width: 500px;
display: block;
}
button.btn-taxa{
width: 100%;
display: flex;
align-items: center;
color: #fff;
gap: 10px;
justify-content: center;
height: 50px;
border-radius: 10px;
background-color: var(--primaria);
font-weight: 600;
text-transform: uppercase;
font-size: 15px;
margin: 0 auto 5px;
transition: all .2s linear;
}
button.btn-taxa:hover{
transform:scale(1.04);
}
section#entrega-prioritaria .content-upsell small{
display: block;
text-align: center;
}
section#entrega-prioritaria .content-upsell .grid{
display: grid;
margin-top: 20px;
grid-template-columns: repeat(3,minmax(0,1fr));
gap: 1rem;
}
section#entrega-prioritaria .content-upsell .grid .beneficio{
text-align: center;
padding: .75rem;
border-radius: 0.5rem;
background-color: hsla(24.8, 100%, 54.5%, 0.05);
}
section#entrega-prioritaria .content-upsell .grid .beneficio .icon{
font-size: 22px;
margin: 0 0 6px;
}
section#entrega-prioritaria .content-upsell .grid .beneficio p{
font-size: 14px;
margin: 0 0 5px;
}
section#entrega-prioritaria .content-upsell + small{
display: block;
text-align: center;
max-width: 660px;
margin:0 auto;
}
section#pix{
padding:20px 0;
color: rgb(48, 51, 60);
}
section#pix .dados-pix{
position:relative;
background-color: #fff;
max-width: 668px;
margin:0 auto;
border-radius: 15px;
}
section#pix .dados-pix .divisor{
width:100%;
display: flex;
align-items: center;
justify-content: space-between;
}
section#pix .dados-pix .topo-pix{
display: flex;
align-items: center;
justify-content: space-between;
padding: 25px 30px 15px;
}
section#pix .dados-pix .topo-pix .logo{
width: 64px;
height: 64px;
}
section#pix .dados-pix .topo-pix .logo img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
section#pix .dados-pix .icone-pix svg{
fill: #94a3b8;
}
section#pix .dados-pix .dados{
padding: 25px 30px 10px;
}
section#pix .dados-pix .dados .title-method{
display: flex;
justify-content: space-between;
margin:0 0 10px;
}
section#pix .dados-pix .dados .title-method h2{
font-size:18px;
text-transform: uppercase;
font-weight: 500;
}
section#pix .dados-pix .dados .title-method .infos-date{
display: flex;
flex-direction: column;
align-items: flex-end;
font-size: 15px;
}
section#pix .dados-pix .dados h3{
font-size: 18px;
font-weight: 600;
}
section#pix .dados-pix .dados .dados-pessoa{
display: flex;
justify-content: space-between;
}
section#pix .dados-pix .dados .dados-pessoa .pessoa{
display: flex;
flex-direction: column;
width:50%;
}
section#pix .dados-pix .dados .dados-pessoa .endereco{
width:50%;
}
section#pix .dados-pix .dados .dados-pessoa .pessoa span, sectioN#pix .dados-pix .dados .dados-pessoa .endereco span{
display: flex;
gap:7px;
font-size: 15px;
line-height: 22px;
margin:0 0 5px;
}
section#pix .dados-pix .dados .dados-pessoa .pessoa span i, sectioN#pix .dados-pix .dados .dados-pessoa .endereco span i{
width:20px;
height:20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
section#pix .dados-pix .area-qrcode{
padding: 25px 30px 30px;
}
section#pix .dados-pix .area-qrcode .time-price{
display: flex;
justify-content: space-between;
margin:0 0 15px;
}
section#pix .dados-pix .area-qrcode .time-price .price-pix{
display: flex;
flex-direction: column;
}
section#pix .dados-pix .area-qrcode .time-price .price-pix span, section#pix .dados-pix .area-qrcode .time-price .expira-pix span{
font-weight: 600;
font-size: 14px;
}
section#pix .dados-pix .area-qrcode .time-price .price-pix strong{
color:#ea1d2c;
font-size: 22px;
font-weight: 700;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix{
display: flex;
flex-direction: column;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix{
display: flex;
align-items: center;
gap:3px;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix .minutos, section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix .segundos{
background-color: #ea1d2c;
font-weight: 700;
color: #fff;
border-radius: 5px;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix i{
font-size: 20px;
margin-right:7px;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix span{
font-weight: 700;
font-size: 18px;
color:#ea1d2c;
}
section#pix .dados-pix .area-qrcode h3{
text-align: center;
margin: 0 0 20px;
font-weight: 500;
font-size: 18px;
}
section#pix .dados-pix .area-qrcode .qrcode{
max-width: 200px;
padding: 10px;
border-radius: 10px;
border: 1px solid #ccc;
margin: 0 auto 15px;
}
input#codePix{
width: 100%;
background-color: #fff;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 10px;
font-size: 15px;
font-weight: 500;
color: #555;
margin-bottom: 10px;
}
button#copy_pix{
width: 100%;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
background-color: #16b000;
color: #fff;
font-weight: 600;
gap: 10px;
margin: 0 0 25px;
transition: all .2s linear;
}
button#copy_pix:hover{
background-color: #139602;
}
section#pix .dados-pix .area-qrcode .passos .passo{
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
section#pix .dados-pix .area-qrcode .passos .passo strong{
background-color: #ea1d2c;
font-weight: 700;
text-transform: uppercase;
font-size: 12px;
color:#fff;
border-radius: 7px;
padding:5px 10px;
margin-right:10px;
}
section#pix .dados-pix .area-qrcode .passos .passo span{
flex:1;
width:100%;
font-size: 15px;
line-height: 20px;
padding-top:3px;
}
section#pix .dados-pix .area-qrcode .passos .passo:last-child{
margin:0;
}





@media(max-width:992px){
#topo .banner {
width: 100%;
height: 140px;
}
#topo .header .logo {
width: 100px;
height: 100px;
}
#topo .header .detalhe{
font-size: 13px;
}
#topo .header {
border-radius: 30px 30px 0 0;
}
section#menu-nav .categorias {
justify-content: flex-start;
scrollbar-width: none;
-ms-overflow-style: none;
}
section#menu-nav .container{
padding:0;
}
section#menu-nav .categorias a {
font-size: 15px;
color: #ffffff;
padding: 5px 15px 3px;
}
.alert {
font-size: 14px;
line-height: 18px;
}
.produtos .produto-view {
margin-top: 25px;
width: 100%;
}
.produtos .produto-view a .image img {
width: 98px;
height: 98px;
object-fit: cover;
border-radius: 10px;
}
.produtos .produto-view a .text {
width: calc(100% - 105px);
color: #555;
}
.produtos .produto-view .text .preco span {
font-size: 15px;
}
.reviews .content-reviews .review {
width: 100%;
}
.reviews .review .text .name .starts{
font-size: 14px;
}
.reviews .review .text .name, .reviews .review .text .name b{
font-size: 15px;
}
.aberto, .fechado {
position: absolute;
left: 10px;
top: 10px;
}
section#topo{
padding-bottom: 15px;
}
.topo-produto{
flex-direction: column;
}
.topo-produto .image-produto {
width: 100%;
height: 200px;
margin-bottom: 20px;
margin-right: 0;
}
.topo-produto .image-produto img{
object-position: bottom;
}
.topo-produto .details {
width: 100%;
}
section#produto .container.item{
border:0;
}
.opcoes-produto {
padding: 15px 0 60px;
width: calc(100% + 20px);
margin-left: -10px;
}
.topo-produto .produto-price {
margin-bottom: 6px;
}
.topo-produto p.descricao-produto{
margin-bottom: 10px;
}
section#produto {
padding-top: 55px;
padding-bottom: 80px;
}
a.btn-action-cart {
width: 100%;
height: 44px !important;
font-size: 14px;
}
.resume-cart .subtotal, .resume-cart .total{
font-size: 15px;
}
.items-cart .item-cart .content-item .image-item{
width:60px;
height:60px;
}
.complementar-pedido h3 {
font-size: 16px;
}
.complementar-pedido .complementares .complementar {
width: 100%;
background-color: #fff;
border-radius: 15px;
border-top: 1px solid rgb(0,0,0,.1);
max-width: 310px;
margin: 0 auto 15px;
}
.complementar-pedido .complementares .complementar .dados-item h3 {
font-size: 15px;
}
#content-checkout-three-steps {
width: 100%;
order: 2;
}
#resume-social-proof-container {
width: 100%;
order:1;
margin-bottom:20px;
}		
#social-proof-container-mobile{
display:block;
overflow: hidden;
margin-top:20px;
width:100%;
}	
#area-pagar .content{
width:100%;
}
#social-proof-container-mobile .swiper-slide{
padding:20px 14px 0;
border:0;
}	
#social-proof-container .social-proof-content .social-proof-image, #social-proof-container-mobile .social-proof-content .social-proof-image {
width: 50px;
height: 50px;
}
#social-proof-container .social-proof-content .social-proof-info-container, #social-proof-container-mobile .social-proof-content .social-proof-info-container {
gap: 4px;
width: calc(100% - 50px);
padding-left: 10px;
}
.product-item .dados-produto span{
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
section#pagar .logo a {
max-width: 86px;
display: block;
}
section#pagar .content-header {
max-width: 100%;
margin: 0 auto;
padding: 0 15px !important;
}
.bg-white .input-default{
height:48px;
}
.bg-white button.btn-checkout{
height:50px;
}
.bg-white .section-title {
margin: 0 0 3px;
}
.bg-white .section-subtitle {
font-size: 14px;
}
section#rodape-checkout .links-footer, section#rodape-checkout .links-footer a {
font-size: 11px;
}
section#rodape-checkout #payment_methods_footer_img{
gap:5px;
}
section#rodape-checkout #payment_methods_footer_img img{
width:36px;
}
.label-shipping-methods span:first-child{
width:20px !important;
}
.label-shipping-methods span#shipping-method-title-82579{
width: 120px !important;
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 5px;
}
.label-shipping-methods span:nth-child(3){
width:120px !important;
}
#shippings label span.label-price-shipping{
width:54px !important;
}
.box-payment{
padding:20px 10px;
}
.box-payment.disabled{
padding:15px 10px;
}
.box-payment span.aviso-card{
display: none;
}
.faixa-topo span{
font-size: 12px;
line-height: 17px;
}
section#pix .dados-pix .topo-pix {
padding: 20px 15px 10px;
}
section#pix .dados-pix .topo-pix .logo {
width: 50px;
height: 50px;
}
section#pix .dados-pix .icone-pix svg {
fill: #94a3b8;
width: 42px;
}
section#pix .dados-pix .dados {
padding: 20px 15px 10px;
}
section#pix .dados-pix .dados .title-method h2 {
font-size: 16px;
}
section#pix .dados-pix .dados .title-method .infos-date{
font-size: 14px;
}
section#pix .dados-pix .dados h3 {
font-size: 16px;
font-weight: 600;
}
section#pix .dados-pix .dados .dados-pessoa{
flex-direction: column;
}
section#pix .dados-pix .dados .dados-pessoa .pessoa, section#pix .dados-pix .dados .dados-pessoa .endereco{
width:100%;
}
section#pix .dados-pix .dados .dados-pessoa .pessoa span i, sectioN#pix .dados-pix .dados .dados-pessoa .endereco span i {
width: 18px;
height: 18px;
font-size: 16px;
}
section#pix .dados-pix .area-qrcode {
padding: 20px 15px 30px;
}
section#pix .dados-pix .area-qrcode .time-price .price-pix strong{
font-size: 18px;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix .minutos, section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix .segundos {
width: 26px;
height: 26px;
font-size: 14px;
}
section#pix .dados-pix .area-qrcode .time-price .expira-pix .time-pix i {
font-size: 18px;
margin-right: 7px;
}
section#pix .dados-pix .area-qrcode h3 {
text-align: center;
margin: 0 0 20px;
font-weight: 500;
font-size: 15px;
}
section#pix .dados-pix .area-qrcode .qrcode {
max-width: 150px;
}
input#codePix{
font-size: 13px;
}
button#copy_pix{
height:48px;
}
section#pix .dados-pix .area-qrcode .passos .passo {
flex-direction: column;
align-items: center;
justify-content: center;
}
section#pix .dados-pix .area-qrcode .passos .passo span{
text-align: center;
max-width: 300px;
margin:0 auto;
}
section#entrega-prioritaria .logo img {
width: 74px;
height: 74px;
}
section#entrega-prioritaria .content-upsell .title {
font-size: 18px;
text-align: center;
line-height: 22px;
gap: 0 15px;
}
section#entrega-prioritaria .content-upsell{
padding:25px 15px;
}
section#entrega-prioritaria .content-upsell .alert.alert-warning {
font-weight: 700;
font-size: 14px;
text-align: left;
padding: 10px 7px !important;
}
section#entrega-prioritaria .content-upsell .alert.alert-warning i {
font-size: 16px;
}
section#entrega-prioritaria .content-upsell p{
font-size: 15px;
}
section#entrega-prioritaria .content-upsell .alert.alert-danger p {
font-size: 15px;
margin: 0;
}
section#entrega-prioritaria .content-upsell p span.price{
font-size: 16px;
}
button.btn-taxa{
font-size: 14px;
line-height: 18px;
}
button.btn-taxa span{
max-width: 205px;
display: block;
}
section#entrega-prioritaria .content-upsell .grid .beneficio p {
font-size: 13px;
margin: 0 0 5px;
line-height: 16px;
}
section#entrega-prioritaria .content-upsell .grid{
gap:6px;
}
section#entrega-prioritaria small{
font-size: 12px !important;
}
section#entrega-prioritaria{
padding:30px 0 50px;
}








}