2 Copos de Açaí 1L ZERO body { font-family: Arial, sans-serif; padding: 20px; background: #fff; color: #333; } .container { max-width: 480px; margin: auto; } .product-image { width: 160px; display: block; margin: 0 auto 15px; } h1 { text-align: center; color: #5D017D; font-size: 22px; } .price-old { text-align: center; color: gray; text-decoration: line-through; } .price-new { text-align: center; font-size: 20px; font-weight: bold; background: #27ae60; color: white; padding: 6px 14px; border-radius: 8px; animation: pulse 1.5s infinite; display: inline-block; margin: 10px auto; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.07); } 100% { transform: scale(1); } } h2 { color: #5D017D; font-size: 16px; margin-top: 20px; } label { display: block; margin-bottom: 8px; font-size: 15px; } .btn { margin-top: 25px; background: #5D017D; color: white; border: none; padding: 14px; width: 100%; font-size: 16px; font-weight: bold; border-radius: 8px; cursor: pointer; } #popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); justify-content: center; align-items: center; z-index: 9999; } .popup-content { background: white; padding: 20px; border-radius: 12px; width: 90%; max-width: 360px; text-align: center; } .popup-content h3 { margin: 0 0 10px; font-size: 18px; color: #5D017D; } .popup-content input { width: 100%; padding: 10px; font-size: 15px; border-radius: 8px; border: 1px solid #ccc; margin-top: 10px; } .btn-popup { margin-top: 12px; padding: 12px; width: 100%; font-weight: bold; font-size: 15px; border-radius: 8px; border: none; cursor: pointer; } .btn-popup.confirm { background: #5D017D; color: white; } .btn-popup.secondary { background: #999; color: white; } .agendamento { display: none; margin-top: 15px; }
Açaí 1L ZERO

2 Copos de Açaí 1L ZERO

R$ 69,80
R$ 34,90

Escolha até 9 complementos gratuitos!

Coberturas (máx. 2)

Frutas (máx. 2)

Complementos (máx. 4)

Turbine seu açaí (máx. 1)

function abrirPopup() { document.getElementById('popup').style.display = 'flex'; } function mostrarAgendamento() { document.getElementById('agendamento').style.display = 'block'; } const checkboxes = document.querySelectorAll('.complemento'); checkboxes.forEach(box => { box.addEventListener('change', () => { const selecionados = document.querySelectorAll('.complemento:checked').length; if (selecionados > 9) { box.checked = false; alert('Você só pode escolher até 9 complementos no total.'); } }); });