.container {
    max-width: 100%;
    margin: 0 auto;
}    
    
.menu.superior {
    position: relative;
    background: #fff;
    border-top: 0px solid #ffffff45;
    margin-top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 0px solid #ffffff45;
}

/* Menu */
.menu.superior .nivel-um > li {
    float: left;
    border-right: 0px solid rgba(0, 0, 0, 0.1);
    border-left: 0px solid rgba(255, 255, 255, 0.8);
}

/* Títulos */
.titulo.cor-segundario {
    color: #d3d3d3;
}

.titulo.cor-secundaria.vazio-text {
    color: #d3d3d3;
}

/* Barra de pesquisa */
.busca {
    position: relative;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.09);
    border: 0.8px solid #ddd;
}

/* Fundo */
.fundo-secundario {
    background-color: white;
}

.fundo-secundario,
.fundo-secundario *,
.fundo-secundario *:hover,
.fundo-secundario:hover,
.fundo-secundario.botao:hover {
    color: black;
}

/* Rodapé */
#rodape .institucional {
    background: var(--cor_footer);
    padding-bottom: 40px;
}

/* Imagens de produtos */
.listagem .span3 .imagem-produto,
.listagem .produtos-carrossel .imagem-produto {
    height: 300px;
}

/* Produto sobreposto */
.listagem .listagem-item .produto-sobrepor {
    display: block;
    position: absolute;
}

/* Banners */
.span12.banner.tarja img {
    display: block;
    margin: 0 auto;
}

/* Listagem */
.listagem .listagem-linha li {
    border-width: 0;
    border-style: none;
}

.listagem .listagem-item:hover .listagem-item-wrap {
    max-width: 600px;
    border-radius: 4px;
    box-shadow: 0 1px 6px 3px rgb(181 181 181 / 15%);
    border: 1px solid #ececec;
}

.listagem .listagem-linha {
    padding-top: 20px;
    margin-top: 20px;
    border-width: 0px 0 0;
    border-style: solid;
}

/* Estilos Mobile */
@media screen and (max-width: 768px) {
    .menu.superior {
        flex-direction: column;
    }

    .menu.superior .nivel-um > li {
        float: none;
        width: 100%;
    }

    .span12.banner.tarja img {
        width: 100%;
        height: auto;
    }

    .icone-menu {
        font-size: 24px;
        display: block;
    }
}
document.addEventListener("DOMContentLoaded", function() {
  // Remove o carrossel se existir
  var carrossel = document.querySelector('.produtos-carrossel');
  if (carrossel && typeof $(carrossel).slick === 'function') {
    $(carrossel).slick('unslick');
  }
});