- Início
- Fornos
Alto desempenho e tecnologia para sua cozinha
Os fornos Crissair combinam inovação e sofisticação, garantindo máximo controle de temperatura e distribuição uniforme de calor. Com múltiplas funções e design elegante, oferecem mais praticidade e eficiência para o seu dia a dia.

document.addEventListener('DOMContentLoaded', () => {
const categoryButtons = document.querySelectorAll('.js-btn');
const btnVoltar = document.querySelector("#js-send-latest");
btnVoltar.addEventListener("click", function(event) {
event.preventDefault();
if (document.referrer) {
if ('scrollRestoration' in history) {
history.scrollRestoration = 'manual';
}
window.history.back();
} else {
window.location.href = "/";
}
});
const currentURL = window.location.href;
categoryButtons.forEach(button => {
const linkElement = button.querySelector('.js-btn .elementor-button');
if (linkElement) {
const linkHref = linkElement.href;
if (currentURL === linkHref) {
button.classList.add('active');
}
}
});
});