Resistência 5mm e 3mm
Código: X4L8L97MK
R$ 50,00
R$ 40,00
Comprar
Estoque:
Disponível
Calcule o frete
OK
Não sei meu CEP
* Este prazo de entrega está considerando a disponibilidade do produto + prazo de entrega.
Maiores informações: (11) 4902-6179 / atendimento@ultravac.com.br
R$ 50,00
R$ 40,00
Comprar
Estoque:
Disponível
function initBuyTogether() {
const buy_together_url = ‘https://www.embaladoraavacuo.com.br/compre_junto/’,
image_url = ‘https://cdn.awsli.com.br/150×150/None’,
cart_url = ‘https://www.embaladoraavacuo.com.br/carrinho/produto/adicionar’,
variations = {};
function formatPrice(price) {
return new Intl.NumberFormat(‘pt-BR’, {
style: ‘currency’,
currency: ‘BRL’
}).format(price);
}
function slugify(text) {
return text.toLowerCase().replace(/ /g, ‘-‘).replace(/[^w-]+/g, ”);
}
function getHTMLProduct(format, product) {
const $product = $($(‘.compre-junto__item–‘ + format).html()),
skus = [];
$product.attr({
‘data-id’: product.id,
‘data-code’: product.code
});
if(product.image)
$product.find(‘.compre-junto__imagem img’).attr({
src: image_url.replace(‘/None’, product.image.url),
alt: product.name
});
$product.find(‘.compre-junto__nome a’).attr(‘href’, product.url).text(product.name);
const grids = {};
product.skus.forEach(function(sku) {
if(sku.is_available) {
const data = {
sku: sku.id,
promotional_price: sku.price.promotional,
regular_price: sku.price.full,
buy_together_price: sku.price.buy_together_price,
attributes: []
};
sku.variations.forEach(function(variation) {
if(data.attributes.indexOf(variation.value.id) === -1)
data.attributes.push(variation.value.id);
if(grids.hasOwnProperty(variation.grid.id)) {
if(grids[variation.grid.id].values.findIndex(function(value) {
return value.id === variation.value.id;
}) === -1) {
grids[variation.grid.id].values.push({
id: variation.value.id,
value: variation.value.value,
codes: variation.value.codes,
position: variation.value.position
});
}
} else {
grids[variation.grid.id] = {
value_for_display: variation.grid.value_for_display,
values: [{
id: variation.value.id,
value: variation.value.value,
codes: variation.value.codes,
position: variation.value.position
}]
};
}
});
skus.push(data);
}
});
Object.keys(grids).forEach(function(key) {
grids[key].values.sort(function(a, b) {
if(a.position === b.position)
return a.value.localeCompare(b.value);
return a.position – b.position;
});
});
Object.keys(grids).forEach(function(key) {
const grid = grids[key];
grid.values.forEach(function(value) {
let selector = ‘compre-junto__atributos–‘ + slugify(grid.value_for_display);
if([‘8945’, ‘8948’].indexOf(key) > -1) {
let element = function() {
if(value.codes.secondary) {
selector += ‘es’;
return ‘
‘;
}
return ‘
‘;
}();
const $container = $product.find(‘.’ + selector);
if($container.length)
$container.append(element);
else
$product.find(‘.compre-junto__variacoes’).append(‘
‘);
} else {
let element = ” + value.value + ”;
const $container = $product.find(‘.’ + selector);
if($container.length)
$container.find(‘select’).append(element);
else
$product.find(‘.compre-junto__variacoes’).append(‘
‘);
}
});
});
if(product.type === ‘individual’) {
$product.find(‘.compre-junto__sku’).val(product.skus[0].id);
$product.find(‘.compre-junto__preco–regular’).text(formatPrice(product.skus[0].price.full)).attr(‘data-price’, product.skus[0].price.full);
$product.find(‘.compre-junto__preco–regular’).attr(‘data-full-price’, product.skus[0].price.full);
if(product.skus[0].price.promotional > 0 && product.skus[0].price.promotional !== product.skus[0].price.full ){
$product.find(‘.compre-junto__preco–promocional’).text(formatPrice(product.skus[0].price.promotional)).attr(‘data-price’, product.skus[0].price.promotional);
$product.find(‘.compre-junto__preco–promocional’).attr(‘data-promotional-price’, product.skus[0].price.promotional);
}
if(product.skus[0].price.buy_together_price > 0 && product.skus[0].price.buy_together_price !== product.skus[0].price.full){
$product.find(‘.compre-junto__preco–promocional’).text(formatPrice(product.skus[0].price.buy_together_price)).attr(‘data-buy-together-price’, product.skus[0].price.buy_together_price);
$product.find(‘.compre-junto__preco–promocional’).attr(‘data-price’, product.skus[0].price.buy_together_price);
}
} else {
variations[product.id] = skus;
}
return $product.prop(‘outerHTML’);
}
function setVariation(type, $attribute) {
const $product = $attribute.closest(‘.compre-junto__produto’),
$parent = $attribute.closest(‘.compre-junto__atributos’),
product_id = $product.attr(‘data-id’),
$error = $product.find(‘.compre-junto__erro–variacoes’),
$buy_button = $(‘.compre-junto__comprar’),
parent_selector = $parent.get(0).classList[1];
$error.text(”);
$buy_button.removeClass(‘compre-junto__comprar–desabilitado’);
let value;
if(type === ‘grid’) {
value = $attribute.attr(‘data-value’);
$parent.find(‘.compre-junto__atributo–selecionado’).removeClass(‘compre-junto__atributo–selecionado’);
$attribute.addClass(‘compre-junto__atributo–selecionado’);
} else {
value = $attribute.val();
}
$parent.attr(‘data-value’, value);
if(variations.hasOwnProperty(product_id) && $product.find(‘.compre-junto__atributos:not([data-value])’).length === 0) {
const selected_attributes = JSON.stringify($product.find(‘.compre-junto__atributos’).map(function() {
return $(this).attr(‘data-value’);
}).get().sort());
const variation_found = {};
$.each(variations[product_id], function(index, variation) {
const attributes = JSON.stringify(variation.attributes.sort());
if(selected_attributes === attributes) {
variation_found.sku = variation.sku;
variation_found.promotional_price = variation.promotional_price;
variation_found.regular_price = variation.regular_price;
variation_found.buy_together_price = variation.buy_together_price;
return false;
}
});
const sku = $product.find(‘.compre-junto__sku’);
const regular_price = $product.find(‘.compre-junto__preco–regular’);
const promotional_price = $product.find(‘.compre-junto__preco–promocional’);
if($.isEmptyObject(variation_found)) {
sku.val(”);
regular_price.text(”).attr(‘data-price’, ”);
promotional_price.text(”).attr(‘data-price’, ”);
$error.text(‘Variação indisponível’);
$buy_button.addClass(‘compre-junto__comprar–desabilitado’);
return;
}
sku.val(variation_found.sku);
regular_price.text(formatPrice(variation_found.regular_price))
.attr(‘data-price’, variation_found.regular_price)
.attr(‘data-full-price’, variation_found.regular_price);
promotional_price
.attr(‘data-promotional-price’, variation_found.promotional_price || ”)
.attr(‘data-buy-together-price’, variation_found.buy_together_price || ”)
if (variation_found.buy_together_price > 0 && variation_found.buy_together_price !== variation_found.regular_price) {
promotional_price.text(formatPrice(variation_found.buy_together_price))
.attr(‘data-price’, variation_found.buy_together_price);
return;
}
if (variation_found.promotional_price > 0 && variation_found.promotional_price !== variation_found.regular_price) {
promotional_price.text(formatPrice(variation_found.promotional_price))
.attr(‘data-price’, variation_found.promotional_price);
return;
}
promotional_price.text(”).attr(‘data-price’, ”);
}
}
function updateTotalPrice() {
let regular_price = 0,
promotional_price = 0;
discount_value = Number($(‘.compre-junto__conteudo’).attr(‘data-discount-value’));
discount_label = $(‘.compre-junto__desconto’);
$(‘.compre-junto__produto–principal, .compre-junto__produto–selecionado’).each(function() {
const price = $(this).find(‘.compre-junto__preco–regular’).attr(‘data-price’);
if(!price) {
regular_price = 0;
return false;
}
const _regular_price = parseFloat(price),
_promotional_price = $(this).find(‘.compre-junto__preco–promocional’).attr(‘data-price’);
regular_price += _regular_price;
promotional_price += _promotional_price ? parseFloat(_promotional_price) : _regular_price;
});
if(regular_price) {
$(‘.compre-junto__preco-total–regular’).text(formatPrice(regular_price));
$(‘.compre-junto__preco-total–promocional’).text(promotional_price < regular_price ? formatPrice(promotional_price) : '');
} else {
$(‘.compre-junto__preco-total–regular’).text(”);
$(‘.compre-junto__preco-total–promocional’).text(”);
}
const totalWithPercentage = regular_price – ((discount_value / 100) * regular_price);
if (promotional_price < totalWithPercentage) {
discount_label.hide();
}
}
function updatePriceAttributes() {
var selected_products = $(‘.compre-junto__produto–selecionado’).length;
var total_products = $(‘.compre-junto__conteudo’).attr(‘data-total’);
var buy_together_discount = $(‘.compre-junto__conteudo’).attr(‘data-discount-value’);
var discount_label = $(‘.compre-junto__desconto’);
var all_products_selected = selected_products === total_products – 1;
if (all_products_selected) {
if (buy_together_discount !== ‘null’){
$(discount_label).css( ‘display’, ‘block’ );
}
$(‘.compre-junto__conteudo’).find(‘.compre-junto__produto’).each(function() {
var productElement = $(this);
var buy_together = Number(productElement.find(‘.compre-junto__preco–promocional’).attr(‘data-buy-together-price’)|| undefined);
var full_price = Number(productElement.find(‘.compre-junto__preco–regular’).attr(‘data-price’)|| undefined);
if(!isNaN(buy_together) && buy_together !== full_price){
productElement.find(‘.compre-junto__preco–promocional’).text(formatPrice(buy_together)).attr(‘data-price’, buy_together)
}
});
return;
}
$(discount_label).css( ‘display’, ‘none’ );
$(‘.compre-junto__conteudo’).find(‘.compre-junto__produto’).each(function() {
var productElement = $(this);
var promotional = Number(productElement.find(‘.compre-junto__preco–promocional’).attr(‘data-promotional-price’)|| undefined);
if(!isNaN(promotional)){
productElement.find(‘.compre-junto__preco–promocional’).text(formatPrice(promotional)).attr(‘data-price’, promotional);
}
if(isNaN(promotional)){
productElement.find(‘.compre-junto__preco–promocional’).text(”).attr(‘data-price’, ”)
}
})
}
function addToCart(buyTogether) {
const url = new URL(cart_url);
$(‘.compre-junto__produto–principal, .compre-junto__produto–selecionado’).each(function() {
const sku = $(this).find(‘.compre-junto__sku’).val();
if(!sku) return;
url.searchParams.set(sku, 1);
});
if(!url.searchParams.size) return;
if(window.eventTracking && typeof window.eventTracking.handleBuyTogetherAddToCart === ‘function’) {
window.eventTracking.handleBuyTogetherAddToCart();
}
$.cookie(‘buytogether’, buyTogether.id);
$.cookie(‘buytogetherProducts’, Array.from(url.searchParams.keys()));
const fromSmartSuggestions = buyTogether.id === ‘1’;
url.searchParams.set(‘origin’, ‘buy-together’ + (fromSmartSuggestions ? ‘-smart’ : ”));
window.location.href = url;
}
function setFirstVariation() {
$(‘.compre-junto__produto’).each(function() {
const $variations = $(this).find(‘.compre-junto__variacoes’);
if(!$variations.is(‘:empty’)) {
const $attribute = $variations.find(‘.compre-junto__atributo’).first();
if($variations.find(‘.compre-junto__atributos’).length === 1) {
if($attribute.hasClass(‘compre-junto__atributo–grade’))
$attribute.click();
else
$attribute.val($attribute.find(‘option’).eq(1).val()).change();
} else {
const productVariations = variations[$(this).attr(‘data-id’)];
const attributeValue = $attribute.hasClass(‘compre-junto__atributo–grade’)
? $attribute.attr(‘data-value’)
: $attribute.find(‘option’).eq(1).val();
const indexVariation = productVariations.findIndex(function(variation) {
return variation.attributes.indexOf(attributeValue) > -1;
});
const attributes = productVariations[indexVariation].attributes;
$.each(attributes, function(index, value) {
const $attribute_grid = $variations.find(‘.compre-junto__atributo–grade’).filter(function() {
return $(this).attr(‘data-value’) === value;
});
if($attribute_grid.length) {
$attribute_grid.click();
} else {
const $attribute_list = $variations.find(‘.compre-junto__atributo–lista option’).filter(function() {
return this.value === value;
});
$attribute_list.parent().val(value).change();
}
});
}
}
});
}
$.get(buy_together_url + PRODUTO_ID, function(response) {
if(response && response.data) {
const buyTogether = response.data,
format = buyTogether.structure === ‘list’ ? ‘lista’ : ‘grade’,
total_products = buyTogether.products.length,
total_columns = $(‘.produto.span9’).length ? 9 : 12;
discount_type = buyTogether.discountType
discount_value = buyTogether.discountValue
products_total_selected = buyTogether.products.length – 1
let html = ‘
‘;
html += getHTMLProduct(‘principal’, buyTogether.products[0].product);
html += ‘
for(let index = 1; index < total_products; index++)
html += getHTMLProduct(format, buyTogether.products[index].product);
html += `
`;
if(buyTogether.positionInProduct === ‘afterProduct’)
$(‘#buy-together-position2’).html(html).show();
else
$(‘#buy-together-position1’).html(html).show();
if(format === ‘grade’) {
$(‘.compre-junto__produtos’).slick({
infinite: false,
slidesToShow: 2.5,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 1
}
}
]
});
}
updateTotalPrice();
$(‘.compre-junto__atributo–grade’).click(function() {
setVariation(‘grid’, $(this));
updatePriceAttributes();
updateTotalPrice();
});
$(‘.compre-junto__atributo–lista’).change(function() {
setVariation(‘list’, $(this));
updatePriceAttributes();
updateTotalPrice();
});
setFirstVariation();
$(‘.compre-junto__selecionar input’).change(function() {
$(this).closest(‘.compre-junto__produto’).toggleClass(‘compre-junto__produto–selecionado’);
updatePriceAttributes();
const total = $(‘.compre-junto__produto–selecionado’).length + 1;
const total_title = total === 1
? [‘somente’, ‘item’]
: [‘os’, ‘itens’];
$(‘.compre-junto__titulo-total’).text(‘Compre ‘ + total_title[0] + ‘ ‘ + total + ‘ ‘ + total_title[1]);
updateTotalPrice();
});
$(‘.compre-junto__comprar button’).click(function() {
addToCart(buyTogether);
});
$(document).trigger(‘buy_together_ready’);
}
});
}
$(function() {
initBuyTogether();
});
Categorias
CÂMARA DE VÁCUO
Embaladoras a Vácuo
TANQUE DE ENCOLHIMENTO
Peças em Geral
Assistência Técnica
Sobre a loja
Fabricação e manutenção de Máquinas Embaladora a vácuo e câmara de vácuo para teste de estanqueidade, vendas de peças para reposição. Trabalhamos com matérias primas de excelente qualidade.
Entre em contato e faça um orçamento: (11) 99564-4284 (11) 4902-6179 atendimento@ultravac.com.br
www.ultravac.com.br
Contato
Telefone: (11) 99564-4284
Whatsapp: (11) 99564-4284
E-mail: atendimento@ultravac.com.br
Social
Selos
Henrique Freitas Fontana ME – CNPJ: 20.459.099/0001-00
© Todos os direitos reservados. 2026
UltraVac – Sistemas de Vácuo
Fale Conosco
Tel: (11) 99564-4284
00
Produtos no carrinho
Carrinho vazio
R$ –PRODUTO_PRECO_DE–
R$ –PRODUTO_PRECO_POR–
–PRODUTO_NOME–
–PRODUTO_SKU–
–CARRINHO_QUANTIDADE– produto no carrinho
Total: R$ –CARRINHO_TOTAL_ITENS–
Ir para o carrinho
Carregando conteúdo, aguarde…
Fechar
Fale Conosco
Preencha o formulário abaixo.
Favorito adicionado
O produto foi adicionado com sucesso à sua Lista de Desejos.
Fechar
Visualizar Lista de Desejos
Erro ao adicionar favorito
O produto não foi adicionado com sucesso ao seus favoritos, por favor tente mais tarde.
Visualizar a lista de favoritos.
Fechar
Logar
Ops!
Esse produto encontra-se indisponível.
Deixe seu e-mail que avisaremos quando chegar.
Obrigado!
Você receberá um e-mail de notificação, assim que esse produto estiver disponível em estoque
var google_tag_params = {
ecomm_pagetype: ‘product’,
ecomm_prodid: ‘X4L8L97MK’,
ecomm_category: ‘Peças em Geral’,
ecomm_totalvalue: 40.00,
dynx_pagetype: ‘offerdetail’,
dynx_totalvalue: 40.00,
dynx_itemid: ‘X4L8L97MK’
};
var googleadservicesJS = document.createElement(‘SCRIPT’);
var googleadservicesDone = false;
googleadservicesJS.setAttribute(‘src’, ‘//www.googleadservices.com/pagead/conversion_async.js’);
googleadservicesJS.setAttribute(‘type’, ‘text/javascript’);
googleadservicesJS.setAttribute(‘charset’, ‘utf-8’);
document.body.appendChild(googleadservicesJS);
googleadservicesJS.onload = googleadservicesJS.onreadystatechange = function () {
if(!googleadservicesDone && (!this.readyState || this.readyState === “loaded” || this.readyState === “complete”)) {
try {
googleadservicesDone = true;
googleadservicesJSCallback();
// Handle memory leak in IE
googleadservicesJS.onload = googleadservicesJS.onreadystatechange = null;
document.body.removeChild(googleadservicesJS);
} catch (e) {}
}
};
function googleadservicesJSCallback() {
if(googleadservicesDone){
/* <![CDATA[ */
window.google_trackConversion({
google_conversion_id: 959721228,
google_custom_params: window.google_tag_params,
google_remarketing_only: true,
});
//]]>
}
}
.li-whatsapp a {
position: fixed;
right: 16px;
bottom: 92px;
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
border-radius: 100%;
background-image: linear-gradient(to right, #209142, #56d263);
text-decoration: none;
z-index: 99;
}
.li-whatsapp i {
font-size: 48px;
color: #fff;
}
window.fbAsyncInit = function() {
if($(‘meta[property=”fb:app_id”]’).length) {
FB.init({
appId : $(‘meta[property=”fb:app_id”]’).attr(‘content’),
xfbml : true,
version : ‘v2.5’
});
} else {
FB.init({
xfbml : true,
version : ‘v2.5’
});
}
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/pt_BR/sdk.js”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));
if(‘serviceWorker’ in navigator) {
window.addEventListener(‘load’, function() {
navigator.serviceWorker.register(‘/service-worker.js’);
});
}






