GioAnny Gold | Transformación VIP y Día de Spa en Olavarría

Cargando experiencia de lujo...

`) .join(''); }; async function obtenerServicio() { try { const res = await fetch(URL_SERVICIOS + '&t=' + new Date().getTime()); const csvText = await res.text(); const procesarCSV = (csv) => { const lineas = []; let actual = []; let celda = ''; let enComillas = false; for (let i = 0; i 0) { actual.push(celda); lineas.push(actual); actual = []; celda = ''; } } else { celda += char; } } if (celda || actual.length > 0) { actual.push(celda); lineas.push(actual); } return lineas; }; const filas = procesarCSV(csvText); const cabecera = filas[0].map(h => h.trim()); const filaDatos = filas.find(f => f[0] && f[0].trim().toLowerCase() === SERVICIO_ACTUAL.toLowerCase()); if (filaDatos) { const getCol = (nombre) => { const index = cabecera.indexOf(nombre); return index !== -1 ? filaDatos[index] : ''; }; const titulo = getCol('Título'); const desc = getCol('Descripción'); const incluye = getCol('Incluye'); const importante = getCol('Importante'); const precio = getCol('Precio'); document.getElementById('servicio-dinamico').innerHTML = `

Bienvenidos a GioAnny Gold

"Diseñamos la Experiencia Gold para aquellas mujeres que buscan un cambio de look y una renovación absoluta. Cerramos el salón para vos, ponemos a todo nuestro equipo a tu disposición."

${titulo}

${desc}

🏆 TODO INCLUIDO

${formatearListaServicio(incluye, '⭐')}

📜 PROTOCOLO VIP

${formatearListaServicio(importante, '•')}
${precio && precio.toLowerCase() !== 'undefined' ? `
Inversión: ${precio}
` : ''} SOLICITAR MEMBRESÍA VIP
`; document.getElementById('servicio-dinamico').style.opacity = 1; } } catch (err) { console.error(err); } } obtenerServicio();