Soluções em engenharia de vidros e alumínio com mais de 20 anos de experiência e certificação ISO 9001.
Conheça a experiência de quem confiou na Sanglass Engenharia para seus projetos
Tire suas principais dúvidas sobre envidraçamento e nossos serviços
Não encontrou a resposta que procurava?
Nossa equipe técnica está pronta para analisar seu projeto. Escolha a melhor forma de contato.
📍 Carregando localização…
// Render solutions grid
(function() {
var grid = document.getElementById('solutionsGrid');
if (!grid) return;
SOLUTIONS.forEach(function(s) {
var a = document.createElement('a');
a.href = 'produto-detalhe.html?slug=' + s.slug;
a.className = 'solution-card';
a.innerHTML = '
' + '
'; grid.appendChild(a); }); })();
// Render clients (first 12)
(function() {
var grid = document.getElementById('clientsGrid');
if (!grid) return;
CLIENTS.slice(0, 12).forEach(function(c) {
var div = document.createElement('div');
div.innerHTML = '
// Testimonials
(function() {
var el = document.getElementById('testimonials');
if (!el) return;
TESTIMONIALS.forEach(function(t) {
var stars = '';
for (var i = 0; i < t.rating; i++) stars += '★';
el.innerHTML += '
' + '
' + '
' + '
"' + t.text + '"
'; }); })();
// FAQ (function() { var el = document.getElementById('faq'); if (!el) return; FAQ_ITEMS.forEach(function(item, i) { var div = document.createElement('div'); div.className = 'faq-item'; div.innerHTML = '' + '
';
el.appendChild(div);
});
})();