@import url('boot.css?X');
@import url('../plugins/bootstrap/css/bootstrap.min.css');
@import url('../font/font-awesome/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    padding: 0px;
    margin: 0px;
}
:root {
    --radius: 12px;
    --success: #1BBFA0;
}

html{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    font-size: 15px;
}
:target {
    scroll-margin-top: .8em;
}
::placeholder{
    color: #ccc !important;
}

body{
    background-color: #fff;
    color: #2D2E2F;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4rem;
    height: 100%;
    font-weight: 400 !important;
    font-size: 1rem;
}

@media (min-width: 1240px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}

/*REMOVE AS MARGINS NO MOBILE*/
@media (max-width: 576px) {
    .mobile-no-margin {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
        border-radius: 0px !important;
        border-left: 0px !important;
        border-right: 0px !important;
    }
    .hmd{
        display: none;
    }
}
@media (max-width: 768px) {
    .hsm{
        display: none;
    }
}

.max-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.max-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*
@media (max-width: 576px) {
    .row.mx-n2 {
        margin-right: -0.5rem !important;
        margin-left: -0.5rem !important;
    }

    .mx-n2 .px-n2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
}*/

/*DIMINUIA A MARGEM EM GRIDS*/
.mx-n2 .px-n2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
/**/

h1,h2, h3, h4, h5, h6{
    letter-spacing: -0.04em;
}

a:hover{
    text-decoration: none !important;
}

/*HEADER*/
header .header-logo img{
    border-radius: 8px;
    border: 3px solid #41515a2e;
}

.badge{
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 15px;
    padding: 6px 12px;
}
.lead{
    line-height: 1.4em;
}


/*INPUT*/
.form-control{
   /* min-height: 41px;*/
}

.form-group .form-control{
    font-size: 15px;
    font-weight: normal;
    line-height: 45px;
    height: 45px;
    /*padding: 0.375rem 1rem;*/
    box-shadow: 2px 2px 2px #eee inset !important;
    color: #000;
    background: #fdfdfd;
    border: 1px solid #dfe4e8;
}

.btn{
    min-height: 38px;
    line-height: 26px;
    font-weight: 500;
    padding: .55rem 1rem;
    border-radius: 0.5rem;
}
.btn-sm{
    padding: 8px 1rem !important;
    min-height: 26px;
    line-height: 1.1em;
}
.btn-lg{
    padding: .55rem 1.5rem;
    line-height: 1.5;
}


.btn-success{
    background: var(--success);
    border-color: var(--success);
}

.text-success{
    color: var(--success) !important;
}


.btn:focus,
.form-control:focus {
    outline: none !important;
    border-color: inherit;
    -webkit-box-shadow: none;
    /*box-shadow: none;
    border: 0;*/
}

.btn-destaque{
    display: flex;
    text-align: left;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.btn-destaque i{
    height: 42px !important;
    width: 42px !important;
    line-height: 42px !important;
    font-size: 1.4rem !important;
    background-color: #eeeeee;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
}
.btn-destaque small{
    display: block;
    font-size: 0.7rem;
}
.btn-destaque .fa-whatsapp{
    background: var(--success);
    color: #fff;
}
.btn-destaque .fa-phone-alt{
    color: var(--success);
}

.btn-primary{
    border-color: var(--padrao);
    background: var(--padrao);
    color: var(--contraste);
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover{
    border-color: var(--hover) !important;
    background: var(--hover) !important;
    color: var(--contraste) !important;
}



.btn-outline-secondary{
    border: 1px solid #ced4da;
}
.btn-outline-secondary:hover{
    /*background: #ced4da;*/
}

@media (max-width: 576px){
    .btn-destaque{
        padding: 0px;
    }
    .btn-destaque span{
        display: none;
    }
}




.nav-scroller {
  position: relative;
  z-index: 2;
  height: 54px;
 /* overflow-y: hidden;*/
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 13px;
  padding-top: 4px;
  margin-top: 1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}
.nav-scroller .dropdown-menu{
    margin-top: 45px;
    background-color: var(--padrao);
}
.nav-scroller .dropdown-menu .dropdown-item{
    color: #fff;
    font-weight: 500;
    padding-top: 8px;
    padding-bottom: 8px;
}
.nav-scroller .dropdown-menu .dropdown-item:hover{
    background-color: var(--hover);
    color: #fff;
}


.card-img-right {
  height: 100%;
  border-radius: 0 3px 3px 0;
}





section{
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 577px) {
    .jumbotron {
        padding: 4rem 3rem;
    }
}
@media (max-width: 576px) {
    .jumbotron {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}



.section-destaque .banner-destaque{
    background: var(--fundo-banner);
}

.section-destaque .borda-destaque{
    border: 2px solid #C6D5C2;
    min-height: 449px;
    max-width: 444px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 82px;
    position: relative;
}
.section-destaque .borda-destaque:before{
    /*background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='82' ry='82' stroke='%23007bff' stroke-width='12' stroke-dasharray='180' stroke-dashoffset='77' stroke-linecap='round'/%3e%3c/svg%3e");
    */position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height:calc(100% + 8px);
    content: '';
    border-radius: 82px;
}
.section-destaque .borda-destaque .imagem{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 82px;
    border: 16px solid #fff;
}
.section-destaque .borda-destaque img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.section-destaque .borda-destaque .texto{
    position: absolute;
    bottom: 40px;
    background: var(--padrao);
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    width: 76%;
    margin-left: 12%;
}
.section-destaque .borda-destaque .carousel-inner{
    height: 100%;
}
.section-destaque .borda-destaque .carousel-item{
    height: 100%;
}
.section-destaque .carousel-indicators{
    bottom: -68px;
}
.section-destaque .carousel-indicators li{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #ccc;
    background: transparent;
    position: relative;
}
.section-destaque .carousel-indicators li:before{
    content: '';
    background: #ccc;
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
}
.section-destaque .carousel-indicators li.active:before{
   background: var(--padrao);
}
@media(max-width: 768px){
    .section-destaque{
        padding-top: 0px !important;
    }
    .section-destaque .borda-destaque{
        min-height: 370px;
    }
}


.card-segmento {
    background: #F1F1EF  right center no-repeat;
    background-size: contain;
    border-radius: 15px;
    border: 0px;
}
.card-segmento.card_destaque_seg1{
    background-image: url(../img/passo1.webp);
}
.card-segmento.card_destaque_seg2{
    background-image: url(../img/passo2.webp);
}
.card-segmento.card_destaque_seg3{
    background-image: url(../img/passo3.webp);
}
.card-segmento small{
    font-size: 0.87rem;
    line-height: 1.1em;
}




.card-lateral-banner{
    background:  url(../img/banner-whatsapp2.webp) bottom left no-repeat;
    border-radius: 15px;
    background-size: contain;
    border: 0px;
    min-height: 407px;
    position: relative;
}
.card-lateral-banner:before{
    background:  url(../img/banner-whatsapp-fundo.webp) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    content: '';
    left: 0px;
    right: 0px;
    z-index: -1;
     border-radius: 15px;
    position: absolute;
}
.card-lateral-banner .card-body{
    padding: 30px;
}
.card-lateral-banner  small{
    font-size: 0.87rem;
    line-height: 1.1em;
}

.card-produtos .label{
    position: absolute;
    top: 8px;
    left: 8px;
    line-height: 1em;
}

.card-produtos .card-footer{
    border: 0px;
    background: none;
}

@media(max-width: 576px){
    .card-produtos .card-title{
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
}

/* FILTRO */
.input-filtrar{
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}
.input-filtrar .input-group-text {
    color: #b2b8be;
    background: #fff;
    border: none !important;
}
.input-filtrar .form-control{
    border: none !important;
    height: 44.5px;
    z-index: 2;
}


/*PAGINACAO*/

.paginator {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.paginator_item {
    display: inline-block;
    margin: 0 0.25rem 0.5rem 0.25rem;
    padding: 4px 12px;
    background: #a2aeba;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}
.paginator_item a{
    color: #fff;
}

.paginator_item  i{
    font-weight: 900;
}

.paginator_item:hover {
    background: var(--padrao);
    color: #fff;
    text-decoration: none;
}

.paginator_active,
.paginator_active:hover {
    background: var(--padrao);
}
/*PAGINACAO*/


.breadcrumb{
    padding: 0px;
    background: none;
    border-radius: 0px;
    font-size: 0.87rem;
    font-weight: 500;
}
.breadcrumb .breadcrumb-item a {
    color: var(--padrao);
}

.produto-detalhes .fotorama__thumb-border{
    border-radius: 8px !important;
    border-color: var(--padrao) !important;
}
.produto-detalhes .fotorama__thumb,
.produto-detalhes .fotorama__stage__shaft{
    border-radius: 8px !important;
    overflow: hidden;
}

.produto-detalhes .fotorama__nav:after,
.produto-detalhes .fotorama__stage:after,
.produto-detalhes .fotorama__nav:before,
.produto-detalhes .fotorama__stage:before{
    background-image: none !important;
}
.produto-detalhes .fotorama__nav-wrap{
    margin-top: 15px;
}

.produto-detalhes .produto-valor .valor-de{
    color: #aaa;
    text-decoration: line-through;
    font-weight: 600;
}
.produto-detalhes .produto-valor .badge-desconto{
    background: #eee;
    color: #666;
    border-radius: 8px;
    margin-bottom: 0px;
}

.produto-detalhes .valor-por strong{
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--padrao);
}
.produto-detalhes .passos-pedido{
    text-align: center;
}
.produto-detalhes .passos-pedido .img{
    border-radius: 50%;
    width: 64px !important;
    height: 64px !important;
    line-height: 62px;
    background: #eee;
    display: block;
}
.produto-detalhes .passos-pedido .texto{
    display: block;
    line-height: 1.1em;
}
.produto-detalhes .produto-informacoes{
    border: 1px solid #eee;
    padding: 30px 60px;
    border-radius: 8px;
}
.produto-detalhes .nav-pills{
    border-bottom: 1px solid #eee;
}
.produto-detalhes .nav-pills .nav-link{
    border: 0px;
    background: 0px;
    border-radius: 0px !important;
    font-weight: 600;
}
.produto-detalhes .nav-pills .nav-link.active{
    color: var(--padrao);
    border-bottom: 2px solid var(--padrao);
}
.produto-detalhes .tab-content{
    font-size: 1.1rem;
    line-height: 1.6em;
    padding-top: 30px;
}
.produto-detalhes .nav-scroller .nav-link{
    font-size: 1rem;
}
.produto-detalhes .produto-informacoes .tab-pane,
.produto-detalhes .produto-informacoes  .tab-pane p{
    word-break: break-all
}
.produto-detalhes .produto-informacoes  .tab-pane ul{
    list-style: inside;
}
@media(max-width: 576px){
    .produto-detalhes .produto-informacoes{
        padding: 30px 15px;
    }
    .produto-detalhes .produto-informacoes .tab-pane{
         /*padding-top: 30px;*/
    }

}

.list-checkout-form .form-group label{
    font-weight: 600;
    font-size: 0.87rem;
}


/*MODAL CONTATOS*/
.modalEmpresa .close{
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 9999;
    font-size: 30px !important;
    padding: 2px 8px;
    width: 40px;
    border: 1px solid #ddd;
}
.modalEmpresa .formulario-contato {
    padding: 2rem 1rem;
    letter-spacing: -.4px;
}
.modalEmpresa .modal-content{
    /*background-color: transparent !important;*/
}
.modalEmpresa .titulo {
    color: #071E56;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.modalEmpresa .subtitulo {
    color: #7C8595;
    font-weight: 500;
    font-size: 1rem;
}
.modalEmpresa .enderecoContato .endereco {
    line-height: 1.2em;
    font-size: 0.87rem;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}
.modalEmpresa .btn-detalhes-contato {
    border-radius: 50rem !important;
    padding: 4px !important;
    margin-bottom: 8px;
    color: #000
}
.modalEmpresa .btn-detalhes-contato .icone {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 38px;
    margin-right: 4px;
    border-radius: 50%;
}
.modalEmpresa  .btn_telefone .icone {
    background-color: #eee;
}
.modalEmpresa  .btn-whatsapp{
    border-color: var(--success) !important;
}
.modalEmpresa  .btn-whatsapp .icone {
    background-color: var(--success) !important;
    font-size: 1.1rem;
    color: #fff;
}
.modalEmpresa .btn-detalhes-contato  strong {
    font-size: 1.13rem;
}
.modalEmpresa .btn-detalhes-contato .icone2 {
    border-radius: 50px !important;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    margin-left: 15px;
    font-size: 13px;
    font-weight: 600;
    background-color: #18bc9c !important;
    display: inline-block;
    width: auto;
    height: 36px;
    text-align: center;
    line-height: 38px;
}
.modalEmpresa .btn-whatsapp .icone2 {
    background-color: var(--success) !important;

}
.modalEmpresa .btn_telefone:hover{
    color: #fff;
}
.modalEmpresa .btn-whatsapp:hover{
    color: #fff;
    background-color: var(--secondary) !important;
}
.modalEmpresa .contatos h4{
    font-size: 1.1rem
}

.modalEmpresa .formularios .input-group{
    background: #f8f9fa;
}
.modalEmpresa .formularios .input-group .form-control{
    background: transparent !important;
}


.modalEmpresa .btn-continuar{
    font-size: 0.93rem;
    font-weight: 700;
    padding: 1rem;
    text-transform: uppercase;
}
/*COR DOS BOTOES */
.button-tema{
    background-color: var(--padrao);
    color: var(--contraste);
}
.button-tema:hover{
    background-color: var(--hover);
    color: var(--contraste);
}
/**/



.botoes-contato-header .btn{
    background: none;
    border: 0px;
    padding-left: 4px;
    padding-right: 4px;
}
.botoes-contato-header .btn i{
    background-color: #eeeeee;
    color: #fff;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 1rem;
}
.botoes-contato-header .btn .contato-nome{
    font-weight: 700 !important;
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}
.botoes-contato-header .btn.btn-telefone i{
    color: #18bc9c;
}
.botoes-contato-header .btn:hover{
    background: none !important;
    color: #000 !important;
}

footer{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #fff;
}

footer .empresa h3{
    color: #616D76;
    font-size: 1rem;
    font-weight: 600;
}
footer .empresa img{
    border-radius: 0.25rem!important;
    border: 3px solid #41515a2e;
}
footer .empresa h2{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
footer .empresa span{
    font-size: 0.86rem;
    line-height: 1.3em;
    display: block;
}

footer .menu-rodape{
    padding: 0px;
    margin: 0px;
}

footer .menu-rodape li{
    list-style: none;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    padding-left: 8px;
    padding-right: 8px;
}

footer .direitos{
    font-size: 0.93rem ;
    color: #051826 !important;
    background-color: transparent !important;
    font-weight: 300;
}
footer .termos{
    text-align: right;
}
footer .btn-circle-icon{
}
footer .btn-circle-icon i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 1.1rem;
    padding: 0px;
    text-align: center;
    border-radius: 50%;
    background: #eee;
    margin-bottom: 8px;
}
footer .btn-telefone i {
    color: var(--success);
}
footer .btn-whatsapp i {
    background-color: var(--success);
    color: #fff;
}
footer .btn-email i {
    background-color: var(--danger);
    color: #fff;
}


#pedidoModal ::-webkit-scrollbar {
    width: 5px;
}

#pedidoModal ::-webkit-scrollbar-track {
    background-color: transparent;
}
#pedidoModal ::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 30px;
}

#pedidoModal .modal-dialog,
#pedidoModal .modal-content{
    position: relative;
    border: 0px;
}
#pedidoModal .modal-dialog:before{
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 100%;
    background: #D63834;
    z-index: 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
#pedidoModal .modal-title{
    font-size: 1.6rem;
    font-weight: 700;
}
#pedidoModal .btn-close{
    font-size: 1rem;
    font-weight: normal;
    color: #FF0000;
    border: 1px solid #aaa;
    border-radius: 20px;
    padding-left: 20px;
    line-height: 12px;
    padding-right: 20px;
}
#pedidoModal .table-carrinho h5{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
#pedidoModal .table-carrinho small{
    font-size: 0.87rem;
    color: #929BA1;
    display: block;
    line-height: 1.1em;
}
#pedidoModal .table-carrinho th {
    border-top: 0px;
    font-weight: 300;
    font-size: 1rem;
    border-bottom: 1px solid #dee2e6 !important;
}
#pedidoModal .table-carrinho small span{
    font-weight: 700;
}
#pedidoModal .table-carrinho tr.noborder td{
    border: 0px !important;
    padding: 0.4rem 0.75rem;
}


#pedidoModal .modal-header,
#pedidoModal .modal-body,
#pedidoModal .modal-footer{
    padding: 1rem 1.5rem;
}
#pedidoModal .modal-body{

}
#pedidoModal .btn-enviar-pedido{
    font-size: 1.07rem;
    padding-top: 12px;
    padding-bottom: 12px;
    background: #16BB9A;
}
#pedidoModal .dadosModal h3{
    font-size: 1.27rem;
    font-weight: 700;
    color: #3A6783;
    margin-bottom: 1rem;
}


