RenValto Podcasting
Inicio Catálogo Nosotros Contacto Seguimientos Carrito

Iniciar sesión

Crear cuenta

Ir a… (Ctrl/Cmd + K)

Cursos de Podcasting diseñados para Chile

Domina todo el flujo: idea, guion, grabación, edición, publicación y crecimiento. Metodología práctica, mentores activos y enfoque en el mercado chileno.

Ver catálogo

Contenido en español de Chile (es-CL). Alta legibilidad y contraste. Sin fotos para carga ultra-rápida.

Por qué RenValto Podcasting

Comienza hoy

Próximo inicio en 00d 00h 00m 00s

Plan Inicial

Acceso a módulos base: guion, grabación y publicación.

Explorar módulos

Mentoría 1:1

Sesiones privadas para acelerar tu proyecto.

Cursos de podcasting en Chile: publicación, edición y monetización

Aprende a lanzar un podcast con enfoque latinoamericano: herramientas gratuitas, guiones claros, edición limpia y distribución efectiva en Spotify, Apple Podcasts y más. Optimiza tu presencia en buscadores con descripciones ricas y capítulos con palabras clave.

Palabras adicionales

renvalto.top minimalismo-renvalto top palabra clave extra curso-avanzado podcasting-chile

Inscripción rápida

Déjanos tus datos y te contactamos hoy.

Mentoría 1:1

Cuéntanos tu objetivo y agenda la primera sesión.

`; } } } const FX = { USD_CLP: 950 }; function getCurrency() { return localStorage.getItem('currency') || 'CLP'; } function setCurrency(v) { localStorage.setItem('currency', v); window.dispatchEvent(new CustomEvent('currencychange', { detail: v })); } function applyTheme() { const theme = localStorage.getItem('theme') || 'light'; document.documentElement.classList.toggle('dark', theme === 'dark'); } applyTheme(); function startCountdown(el, targetTs) { function pad(n){return String(n).padStart(2,'0')} function tick(){ const now = Date.now(); let diff = Math.max(0, targetTs - now); const d = Math.floor(diff/86400000); diff%=86400000; const h = Math.floor(diff/3600000); diff%=3600000; const m = Math.floor(diff/60000); diff%=60000; const s = Math.floor(diff/1000); el.textContent = `${pad(d)}d ${pad(h)}h ${pad(m)}m ${pad(s)}s`; } tick(); return setInterval(tick, 1000); } async function init() { await include('header.html', '#site-header'); await include('footer.html', '#site-footer'); document.body.addEventListener('click', (e) => { const openSel = e.target.getAttribute('data-open'); const closeSel = e.target.getAttribute('data-close'); if (openSel) { e.preventDefault(); openModal(openSel); } if (closeSel) { e.preventDefault(); if (closeSel.startsWith('#')) { const elm = document.querySelector(closeSel); if (elm && elm.id === 'cookieBanner') elm.classList.add('hidden'); else closeModal(closeSel); } else { closeModal(closeSel); } } }); const quickApplyBtn = document.getElementById('btn-open-quick-apply'); if (quickApplyBtn) quickApplyBtn.addEventListener('click', () => openModal('#modal-apply')); const mentoriaBtn = document.getElementById('btn-mentoria'); if (mentoriaBtn) mentoriaBtn.addEventListener('click', () => openModal('#modal-mentoria')); document.addEventListener('click', (e) => { if (e.target && e.target.id === 'header-theme-toggle') { const current = localStorage.getItem('theme') || 'light'; const next = current === 'light' ? 'dark' : 'light'; localStorage.setItem('theme', next); applyTheme(); } }); const curSel = document.getElementById('currencySelect'); if (curSel) { curSel.value = getCurrency(); curSel.addEventListener('change', (e) => setCurrency(e.target.value)); } const acceptCookies = document.getElementById('cookieAccept'); const cookieBanner = document.getElementById('cookieBanner'); if (acceptCookies && cookieBanner) { if (localStorage.getItem('cookie-consent') === 'yes') cookieBanner.classList.add('hidden'); acceptCookies.addEventListener('click', () => { localStorage.setItem('cookie-consent', 'yes'); cookieBanner.classList.add('hidden'); }); } $$('.js-block-submit').forEach(f => { f.addEventListener('submit', (e) => { e.preventDefault(); const btn = f.querySelector('button[type="submit"]'); const original = btn ? btn.textContent : ''; if (btn) { btn.disabled = true; btn.textContent = 'Enviado ✓'; setTimeout(() => { btn.disabled = false; btn.textContent = original; }, 2000); } const dlg = f.closest('dialog'); if (dlg) setTimeout(() => closeModal('#' + dlg.id), 500); }); f.addEventListener('input', (e) => { if (e.target.name === 'email') e.target.value = e.target.value.trim(); }); }); ['#modal-apply','#modal-mentoria'].forEach(id => { const dlg = $(id); if (!dlg) return; dlg.addEventListener('click', (ev) => { if (ev.target === dlg) closeModal(id); }); dlg.addEventListener('keydown', (ev) => { if (ev.key === 'Escape') closeModal(id); }); }); const cdEl = document.getElementById('countdown'); if (cdEl) { const now = new Date(); const target = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 7, 10, 0, 0); startCountdown(cdEl, target.getTime()); } } init();