- Início
- Beer Centers
Perfeição na preservação das cervejas
Os Beer Centers Crissair proporcionam o ambiente ideal para armazenar suas cervejas, garantindo a temperatura perfeita para cada estilo. Com tecnologia avançada e Design Atemporal, oferecem controle preciso de refrigeração e umidade, preservando o sabor e a qualidade da sua bebida.

Beer Centers
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');
}
}
});
});