<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Arteknov</title>
	<link>https://arteknov.com</link>
	<description>Arteknov</description>
	<pubDate>Tue, 14 Jul 2026 17:35:49 +0000</pubDate>
	<generator>https://arteknov.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Inicio</title>
				
		<link>https://arteknov.com/Inicio-1</link>

		<pubDate>Wed, 18 May 2022 07:16:28 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/Inicio-1</guid>

		<description></description>
		
	</item>
		
		
	<item>
		<title>Arteknov</title>
				
		<link>https://arteknov.com/Arteknov</link>

		<pubDate>Wed, 22 Mar 2023 16:48:01 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/Arteknov</guid>

		<description>
	
	</description>
		
	</item>
		
		
	<item>
		<title>Inicio</title>
				
		<link>https://arteknov.com/Inicio</link>

		<pubDate>Sun, 24 Oct 2021 18:05:16 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/Inicio</guid>

		<description></description>
		
	</item>
		
		
	<item>
		<title>intro</title>
				
		<link>https://arteknov.com/intro</link>

		<pubDate>Wed, 29 Jan 2025 06:20:29 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/intro</guid>

		<description>
	
</description>
		
	</item>
		
		
	<item>
		<title>about</title>
				
		<link>https://arteknov.com/about-1</link>

		<pubDate>Sun, 24 Oct 2021 18:05:16 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/about-1</guid>

		<description>

Arteknov — Panel



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --lime: #c8f135;
    --black: #000;
    --white: #fff;
    --gray1: #cccccc;
    --gray2: #aaaaaa;
    --gray3: #555555;
    --border: #1e1e1e;
    --border2: #2a2a2a;
    --surface: #0a0a0a;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'DM Mono', 'Courier New', monospace;
  }

  body {
    background: var(--black);
    color: #fff;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
  }

  .ak-panel {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 28px 32px;
  }

  .ak-eyebrow {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
  }
  .ak-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--gray3); }
  .ak-eyebrow.active { color: var(--lime); }
  .ak-eyebrow.active::before { background: var(--lime); }
  .ak-section + .ak-section { margin-top: 34px; }

  /* ══════════════════════════════════════════
     TOOLBAR DE ICONOS — como pestañas/paneles
     de un programa (Premiere / Resolve / DaVinci)
  ══════════════════════════════════════════ */
  .ak-toolbar {
    display: grid;
    gap: 1px;
    background: var(--border2);
    border: 1px solid var(--border2);
  }
  .ak-toolbar.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .ak-toolbar.cols-6 { grid-template-columns: repeat(6, 1fr); }

  .ak-tile {
    background: var(--surface);
    padding: 26px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
  }
  .ak-tile::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .ak-tile:hover { background: #0f0f0f; }
  .ak-tile:hover::before { transform: scaleX(1); }
  .ak-tile:hover .ak-tile-icon { border-color: var(--lime); color: var(--lime); background: rgba(200,241,53,0.06); }
  .ak-tile:hover .ak-tile-label { color: var(--lime); }

  .ak-tile-icon {
    width: 56px; height: 56px;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray1);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
  }
  .ak-toolbar.cols-6 .ak-tile-icon { width: 42px; height: 42px; }

  .ak-tile-label {
    font-family: var(--font-head), sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: var(--white);
    line-height: 1;
    transition: color 0.2s;
  }
  .ak-toolbar.cols-6 .ak-tile-label { font-size: 12px; font-family: var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray1); }

  .ak-tile-sub {
    font-size: 10.5px;
    color: var(--gray3);
    letter-spacing: 0.04em;
    line-height: 1.4;
    max-width: 150px;
  }

  .ak-tile-num {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--gray3);
  }

  /* CTA */
  .ak-cta {
    margin-top: 1px;
    background: #0d0d0d;
    border: 1px solid var(--border2);
    border-top: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .ak-cta-text { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray2); }
  .ak-cta-text strong { color: var(--white); font-weight: 400; }
  .ak-cta-btn {
    background: var(--lime);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    white-space: nowrap;
  }
  .ak-cta-btn:hover { background: #d6ff3d; transform: translateY(-1px); }

  /* ══════════════════════════════════════════
     FOOTER — misma lógica de dock de iconos, mini
  ══════════════════════════════════════════ */
  .ak-footer {
    border-top: 1px solid var(--border2);
    max-width: 1040px;
    margin: 34px auto 0;
    padding: 16px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-logo { font-family: var(--font-head); font-size: 20px; letter-spacing: 0.04em; color: var(--white); }
  .footer-copy { font-size: 10px; letter-spacing: 0.08em; color: var(--gray3); text-transform: uppercase; }
  .footer-copy span { color: var(--lime); }
  .footer-icons { display: flex; gap: 6px; }
  .footer-icon-btn {
    width: 30px; height: 30px;
    border: 1px solid var(--border2);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray2);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    position: relative;
  }
  .footer-icon-btn:hover { border-color: var(--lime); color: var(--lime); }

  .footer-donate { position: relative; }
  .footer-donate summary { list-style: none; cursor: pointer; }
  .footer-donate summary::-webkit-details-marker { display: none; }
  .donate-panel {
    position: absolute; bottom: calc(100% + 8px); right: 0;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-left: 2px solid var(--lime);
    padding: 10px 12px;
    width: 230px;
    z-index: 5;
  }
  .donate-panel .crypto-name { font-size: 11px; color: var(--white); margin-bottom: 4px; }
  .donate-panel .crypto-address {
    font-size: 9px; color: var(--lime); word-break: break-all;
    line-height: 1.5; display: block; margin-bottom: 6px; opacity: 0.8;
  }
  .copy-btn {
    background: transparent; border: 1px solid var(--border2);
    padding: 3px 8px;
    font-family: var(--font-body); font-size: 9px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray3); cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .copy-btn:hover, .copy-btn.copied { background: var(--lime); color: #000; border-color: var(--lime); }

  /* ══════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════ */
  @media (max-width: 780px) {
    .ak-toolbar.cols-6 { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .ak-panel { padding: 28px 16px 24px; }
    .ak-toolbar.cols-3 { grid-template-columns: 1fr; }
    .ak-tile { flex-direction: row; text-align: left; padding: 16px; }
    .ak-tile-icon { width: 40px; height: 40px; }
    .ak-tile-sub { max-width: none; }
    .footer-icons { gap: 4px; }
  }





  
  
    Arteknov — Oferta
    

      
        01
        
          
            
            
          
        
        ProductosDigitales
        Instrumetos midi
             · Herramientas VJ · video · Plugins · videomapping
      

      
        02
        
          
            
            
          
        
        IntegraciónMultimedia
        Audio · Inmersión interactivos ·iluminación video ·VR · web 3D
      

      
        03
        
          
            
          
        
        CursosArteknov
        TouchDesigner · video art · asesoría personalizada
      

    
  

  
  
    Hablemos de tu proyecto
    

      
        
          
        
        Llamada
      

      
        
          
        
        Formulario
      


      
        
          
        
        WhatsApp
      

      
        
          
        
        Instagram
      


      
        
          
        
        YouTube
      

      
        
          
        
        Email
      

    

    
      ¿Tienes un proyecto en mente? Cuéntanos los detalles.
      
        Escribir por WhatsApp
        
      
    
  





  Arteknov
  © Arteknov · México
  
    
      
    
    
      
    
    
      
    
    
      
        
      
      
        Bitcoin (BTC)
        1DUda93LJYkAh25zDihN5rfLDTYKnwVtQJ
        Copiar
      
    
  


!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/444005eb135ba62c66af8934e/e4e315574851d0218ea7674d5.js");


function copyAddr(id, btnId) {
  const text = document.getElementById(id).textContent.trim();
  navigator.clipboard.writeText(text).then(() =&#62; {
    const btn = document.getElementById(btnId);
    const original = btn.innerHTML;
    btn.textContent = '✓ Copiado';
    btn.classList.add('copied');
    setTimeout(() =&#62; {
      btn.innerHTML = original;
      btn.classList.remove('copied');
    }, 2000);
  });
}
</description>
		
	</item>
		
		
	<item>
		<title>Cursos</title>
				
		<link>https://arteknov.com/Cursos</link>

		<pubDate>Tue, 14 Jul 2026 17:35:49 +0000</pubDate>

		<dc:creator>Arteknov</dc:creator>

		<guid isPermaLink="true">https://arteknov.com/Cursos</guid>

		<description>

Arteknov — Metodología &#38;amp; Cursos



  /* ── RESET &#38; VARIABLES ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --lime: #c8f135; --lime-glow: rgba(200, 241, 53, 0.25);
    --black: #000; --white: #fff;
    --gray1: #ccc; --gray2: #aaa; --gray3: #777;
    --border: #1e1e1e; --border2: #2a2a2a;
    --surface: #0a0a0a; --surface-hover: #141414;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'DM Mono', 'Courier New', monospace;
  }
  body {
    background: var(--black); color: var(--white);
    font-family: var(--font-body); -webkit-font-smoothing: antialiased; line-height: 1.4;
  }

  /* ── ESTRUCTURA UNIVERSAL ── */
  .ak-section {
    padding: 40px 20px; position: relative; width: 100%; border-bottom: 1px solid var(--border);
  }
  .ak-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.2;
    background-image: linear-gradient(var(--border2) 1px, transparent 1px), linear-gradient(90deg, var(--border2) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .ak-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 24px; }

  /* ── CABECERAS (SHARED) ── */
  .ak-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .ak-title-box { display: flex; flex-direction: column; gap: 4px; }
  .ak-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); display: flex; align-items: center; gap: 8px; }
  .ak-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--lime); display: block; }
  .ak-heading { font-family: var(--font-head); font-size: 42px; line-height: 1; letter-spacing: 0.02em; color: var(--white); }
  .ak-desc { font-size: 13px; color: var(--gray1); max-width: 500px; }

  /* ── SECCIÓN 1: METODOLOGÍA ── */
  .ak-stats { display: flex; gap: 8px; flex-wrap: wrap; }
  .ak-stat {
    background: var(--surface); border: 1px solid var(--border2); border-radius: 4px;
    padding: 6px 12px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray2);
  }
  .ak-stat strong { color: var(--lime); font-size: 12px; }
  .ak-phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
  .ak-phase {
    background: var(--surface); border: 1px solid var(--border2); border-radius: 6px; padding: 20px;
    transition: all 0.2s; display: flex; flex-direction: column; gap: 12px;
  }
  .ak-phase:hover { border-color: var(--lime); transform: translateY(-2px); box-shadow: 0 4px 15px var(--lime-glow); }
  .ak-phase-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
  .ak-phase-title { font-family: var(--font-head); font-size: 24px; color: var(--white); margin: 0; }
  .ak-icon { color: var(--lime); }
  .ak-phase-text { font-size: 11px; color: var(--gray1); flex: 1; }
  .ak-deliverables { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .ak-deliverables li { font-size: 10px; color: var(--gray2); display: flex; align-items: center; gap: 6px; text-transform: uppercase; }
  .ak-deliverables li::before { content: '✓'; color: var(--lime); font-weight: bold; }

  /* ── SECCIÓN 2: CATÁLOGO &#38; COMPRA ── */
  .ak-filters-wrapper {
    position: sticky; top: 0; z-index: 10; background: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    padding: 10px 0; border-bottom: 1px solid var(--border); margin: -10px 0 10px 0;
  }
  .ak-filters { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .ak-filters::-webkit-scrollbar { display: none; }
  .ak-filter {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px;
    border: 1px solid var(--border2); border-radius: 16px; color: var(--gray2); cursor: pointer;
    background: var(--surface); transition: all 0.2s; white-space: nowrap; font-weight: 500; font-family: var(--font-body);
  }
  .ak-filter:hover { border-color: var(--lime); color: var(--white); }
  .ak-filter.active { background: var(--lime); color: var(--black); border-color: var(--lime); font-weight: 700; }
  .ak-count-tag { font-size: 10px; color: var(--gray3); text-align: right; text-transform: uppercase; }
  .ak-count-tag strong { color: var(--lime); font-size: 14px; }

  .ak-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .ak-card {
    background: var(--surface); border: 1px solid var(--border2); border-radius: 6px;
    display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit;
    transition: all 0.2s; position: relative;
  }
  .ak-card:hover { transform: translateY(-3px); border-color: var(--lime); box-shadow: 0 6px 20px rgba(200, 241, 53, 0.15); }
  .ak-card.is-hidden { display: none; }

  .ak-card-img { width: 100%; aspect-ratio: 16 / 9; background: #111; position: relative; overflow: hidden; }
  .ak-card-img img, .ak-card-img .image-link { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: 0.4s; }
  .ak-card:hover .ak-card-img img, .ak-card:hover .ak-card-img .image-link { transform: scale(1.05); filter: brightness(1); }
  .ak-card-tag {
    position: absolute; top: 8px; left: 8px; font-size: 8px; font-weight: 700; text-transform: uppercase;
    color: var(--black); background: var(--lime); padding: 3px 6px; border-radius: 3px; z-index: 2;
  }

  .ak-card-body { padding: 14px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
  .ak-card-title { font-family: var(--font-head); font-size: 20px; letter-spacing: 0.03em; color: var(--white); line-height: 1.1; margin: 0; }
  .ak-card:hover .ak-card-title { color: var(--lime); }

  .ak-card-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--border); padding-top: 10px; }
  .ak-card-link { font-size: 10px; text-transform: uppercase; color: var(--gray2); font-weight: bold; }
  .ak-card:hover .ak-card-link { color: var(--white); }

  /* ── CTAs GENERALES &#38; EMPTY ── */
  .ak-empty { display: none; padding: 30px; text-align: center; color: var(--gray3); font-size: 11px; border: 1px dashed var(--border2); border-radius: 6px; }
  .ak-empty.visible { display: block; }

  .ak-cta-bar {
    background: #111; border: 1px solid var(--border2); border-radius: 6px; padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 10px;
  }
  .ak-cta-text { font-size: 12px; color: var(--gray2); text-transform: uppercase; letter-spacing: 0.05em; }
  .ak-cta-text strong { color: var(--white); }
  .ak-btn {
    background: var(--lime); color: var(--black); padding: 10px 20px; border-radius: 4px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; transition: 0.2s; border: none; cursor: pointer;
  }
  .ak-btn:hover { background: #d6ff3d; transform: scale(1.02); box-shadow: 0 0 10px var(--lime-glow); }

  @media (min-width: 768px) {
    .ak-card.featured { grid-column: span 2; }
    .ak-card.featured .ak-card-img { aspect-ratio: 21 / 8; }
    .ak-card.featured .ak-card-title { font-size: 28px; }
  }
  @media (max-width: 640px) {
    .ak-heading { font-size: 32px; }
    .ak-cta-bar { flex-direction: column; text-align: center; }
    .ak-btn { width: 100%; justify-content: center; }
  }






  
    
      +800 alumnos
      100% online
      Acceso permanente
    

    
  




  

    
      
        Catálogo
        Cursos
      
      17 programas
    

    
    
      
        Todos
        TouchDesigner
        Ableton
        VDMX
        Generativo
        Audio
        Video
        IA
        Hardware
      
    

    
    
      
        Principiante
&#60;img width="959" height="1280" width_o="959" height_o="1280" data-src="https://freight.cargo.site/t/original/i/ff37eb2915a28030b7ee5b41abd998b7a774d86923c62cd73fbff1f48309cc91/Arteknov1.jpg" data-mid="250411177" border="0"  src="https://freight.cargo.site/w/959/i/ff37eb2915a28030b7ee5b41abd998b7a774d86923c62cd73fbff1f48309cc91/Arteknov1.jpg" /&#62;

        
          Introducción a TouchDesigner y Ableton live
          Ver Info ↗
        
      
      
        
&#60;img width="1024" height="1024" width_o="1024" height_o="1024" data-src="https://freight.cargo.site/t/original/i/ed45c5c37ff55f9d4b92b37b2a5025f8f9581e5dc96edc180ac07d2adaebc6ed/arteknov_instalation_av_in_natural_place_futurist_whit_displays_4718d588-ada2-40dc-bca0-5442acc05306.png" data-mid="250411171" border="0"  src="https://freight.cargo.site/w/1000/i/ed45c5c37ff55f9d4b92b37b2a5025f8f9581e5dc96edc180ac07d2adaebc6ed/arteknov_instalation_av_in_natural_place_futurist_whit_displays_4718d588-ada2-40dc-bca0-5442acc05306.png" /&#62;
Audio
        
          Audio Reactivo — Imagen y Sonido
          Ver Info ↗
        
      
      
        Mapping&#60;img width="1090" height="796" width_o="1090" height_o="796" data-src="https://freight.cargo.site/t/original/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" data-mid="250616403" border="0"  src="https://freight.cargo.site/w/1000/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" /&#62;&#60;img width="1090" height="796" width_o="1090" height_o="796" data-src="https://freight.cargo.site/t/original/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" data-mid="250616403" border="0"  src="https://freight.cargo.site/w/1000/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" /&#62;&#60;img width="1090" height="796" width_o="1090" height_o="796" data-src="https://freight.cargo.site/t/original/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" data-mid="250616403" border="0"  src="https://freight.cargo.site/w/1000/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" /&#62;
&#60;img width="1090" height="796" width_o="1090" height_o="796" data-src="https://freight.cargo.site/t/original/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" data-mid="250616403" border="0"  src="https://freight.cargo.site/w/1000/i/fd4c9e9d8c111e688eb83e3f82020099bbc8f380387a7eefd17904b09cdb9fa0/download-5.png" /&#62;

        
          Video Mapping Interactivo
          Ver Info ↗
        
      
      
        IA
&#60;img width="512" height="512" width_o="512" height_o="512" data-src="https://freight.cargo.site/t/original/i/45ab4be70e12d0b09a7345cbf12d315d149dc12f96c94dd70557efa52ac9f526/image.jpg" data-mid="250411182" border="0"  src="https://freight.cargo.site/w/512/i/45ab4be70e12d0b09a7345cbf12d315d149dc12f96c94dd70557efa52ac9f526/image.jpg" /&#62;

        
          Herramientas Creativas de IA
          Ver Info ↗
        
      
      
        
&#60;img width="1568" height="1262" width_o="1568" height_o="1262" data-src="https://freight.cargo.site/t/original/i/4ef0578fd5acf60ac157ff920493bb2734c094d7b741b7cf123519cbfb25ce22/Screenshot-2026-05-01-at-8.23.06.png" data-mid="250411192" border="0"  src="https://freight.cargo.site/w/1000/i/4ef0578fd5acf60ac157ff920493bb2734c094d7b741b7cf123519cbfb25ce22/Screenshot-2026-05-01-at-8.23.06.png" /&#62;
Performance
        
          Live Cinema
          Ver Info ↗
        
      
      
        
&#60;img width="1080" height="1920" width_o="1080" height_o="1920" data-src="https://freight.cargo.site/t/original/i/b4934def61afb11e0d0d59615353ee9b9db2f2b794e4e3a581b29be68dd28cbb/untitled.png" data-mid="250411200" border="0"  src="https://freight.cargo.site/w/1000/i/b4934def61afb11e0d0d59615353ee9b9db2f2b794e4e3a581b29be68dd28cbb/untitled.png" /&#62;
3D
        
          Escenarios Virtuales
          Ver Info ↗
        
      
      
        Código AV
&#60;img width="2468" height="1402" width_o="2468" height_o="1402" data-src="https://freight.cargo.site/t/original/i/eb8884bf03a4c14c43509a41ea7d0f5619a6a06d7df457b5c8a853cdb213bfe5/Screenshot-2025-12-18-at-12.09.43a.m..png" data-mid="250616437" border="0"  src="https://freight.cargo.site/w/1000/i/eb8884bf03a4c14c43509a41ea7d0f5619a6a06d7df457b5c8a853cdb213bfe5/Screenshot-2025-12-18-at-12.09.43a.m..png" /&#62;

        
          Programación Audiovisual
          Ver Info ↗
        
      
      
        Arte
&#60;img width="960" height="1280" width_o="960" height_o="1280" data-src="https://freight.cargo.site/t/original/i/e9c44ec8e17936816cc39354ef3cc4fc5a2d292e51973ac0944e3b8283ad296b/photo_2023-03-16_23-42-36.jpg" data-mid="250411167" border="0"  src="https://freight.cargo.site/w/960/i/e9c44ec8e17936816cc39354ef3cc4fc5a2d292e51973ac0944e3b8283ad296b/photo_2023-03-16_23-42-36.jpg" /&#62;

        
          Arte Sonoro
          Ver Info ↗
        
      
      
        Digital
&#60;img width="900" height="1366" width_o="900" height_o="1366" data-src="https://freight.cargo.site/t/original/i/18ee4d1a6efed05fc12a55d771d8e4f31e3e68f67eba9a71e498274744216fc1/Screenshot-2026-03-11-at-11.34.47p.m..png" data-mid="250411188" border="0"  src="https://freight.cargo.site/w/900/i/18ee4d1a6efed05fc12a55d771d8e4f31e3e68f67eba9a71e498274744216fc1/Screenshot-2026-03-11-at-11.34.47p.m..png" /&#62;

        
          Principios de Arte Digital
          Ver Info ↗
        
      
      
        VJ
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/fc16563d34edd6a457f7fd59b9515dd84d8334f4b3f0f645fadbddf11f8d44de/90741694_2611185429117658_5597901874715061910_n.jpg" data-mid="250616559" border="0"  src="https://freight.cargo.site/w/1000/i/fc16563d34edd6a457f7fd59b9515dd84d8334f4b3f0f645fadbddf11f8d44de/90741694_2611185429117658_5597901874715061910_n.jpg" /&#62;

        
          VJ con Software Libre
          Ver Info ↗
        
      
      
        Hardware
&#60;img width="1280" height="1280" width_o="1280" height_o="1280" data-src="https://freight.cargo.site/t/original/i/f87b3bcd050b49c390a5e71eed37856d5bffd2fc41001e6db758f707cca9e15e/photo_2023-03-16_23-46-55.jpg" data-mid="250411179" border="0"  src="https://freight.cargo.site/w/1000/i/f87b3bcd050b49c390a5e71eed37856d5bffd2fc41001e6db758f707cca9e15e/photo_2023-03-16_23-46-55.jpg" /&#62;

        
          Creación Instrumentos MIDI
          Ver Info ↗
        
      
      
        Visión
&#60;img width="1080" height="1920" width_o="1080" height_o="1920" data-src="https://freight.cargo.site/t/original/i/8be4578df19a7890e5f350e886135cf8726c1f122f6f78dda7aa00c6d1305b9e/TDMovieOut.2.png" data-mid="250411189" border="0"  src="https://freight.cargo.site/w/1000/i/8be4578df19a7890e5f350e886135cf8726c1f122f6f78dda7aa00c6d1305b9e/TDMovieOut.2.png" /&#62;

        
          Visión Artificial Interactiva
          Ver Info ↗
        
      
      
        Max/MSP&#60;img width="2449" height="3266" width_o="2449" height_o="3266" data-src="https://freight.cargo.site/t/original/i/089d7ccc49164aa2a7cffaced905e56037fc4c8aa56adc0a17c4e1bbd5bf1a6a/image3A140747_mirror3.png" data-mid="250411170" border="0"  src="https://freight.cargo.site/w/1000/i/089d7ccc49164aa2a7cffaced905e56037fc4c8aa56adc0a17c4e1bbd5bf1a6a/image3A140747_mirror3.png" /&#62;
&#60;img width="2597" height="4617" width_o="2597" height_o="4617" data-src="https://freight.cargo.site/t/original/i/240adfa5a308d3d5ea45fccb3f6d34347df1be6c74d8fa699c227a4f8dc16441/1000108895-1.png" data-mid="250411193" border="0"  src="https://freight.cargo.site/w/1000/i/240adfa5a308d3d5ea45fccb3f6d34347df1be6c74d8fa699c227a4f8dc16441/1000108895-1.png" /&#62;

        
          Introducción a Max/MSP
          Ver Info ↗
        
      
      
        Ableton&#60;img width="862" height="1280" width_o="862" height_o="1280" data-src="https://freight.cargo.site/t/original/i/f6d4353a70161c41b60a991591f17636b863eb0e0f6906b9ceb437963cef2550/photo_2021-12-14-01.13.03.jpeg" data-mid="250411169" border="0"  src="https://freight.cargo.site/w/862/i/f6d4353a70161c41b60a991591f17636b863eb0e0f6906b9ceb437963cef2550/photo_2021-12-14-01.13.03.jpeg" /&#62;
        
          Ableton Live — Max for Live
          Ver Info ↗
        
      
      
        Intermedio
&#60;img width="1920" height="1080" width_o="1920" height_o="1080" data-src="https://freight.cargo.site/t/original/i/5a29d89e0fb04e15df56c10a738fb75633e4547903e3be5d619b0201ed8cc947/untitled6.png" data-mid="250616650" border="0"  src="https://freight.cargo.site/w/1000/i/5a29d89e0fb04e15df56c10a738fb75633e4547903e3be5d619b0201ed8cc947/untitled6.png" /&#62;

        
          TouchDesigner Intermedio
          Ver Info ↗
        
      
      
        IA Realtime
&#60;img width="1024" height="1024" width_o="1024" height_o="1024" data-src="https://freight.cargo.site/t/original/i/b3ff693e014dd6281bfb7956bb04da251a419cfc556de24cc9e69b92128274d1/IMG_20191012_005014_049.jpg" data-mid="250411196" border="0"  src="https://freight.cargo.site/w/1000/i/b3ff693e014dd6281bfb7956bb04da251a419cfc556de24cc9e69b92128274d1/IMG_20191012_005014_049.jpg" /&#62;

        
          IA en Tiempo Real (ComfyUI)
          Ver Info ↗
        
      
      
        IA Física&#60;img width="479" height="224" width_o="479" height_o="224" data-src="https://freight.cargo.site/t/original/i/61e6eada96b86949e7eec14a333a356163f728d65ebefc7233f881ddcf676946/ultrasonico-2.jpg" data-mid="250411201" border="0"  src="https://freight.cargo.site/w/479/i/61e6eada96b86949e7eec14a333a356163f728d65ebefc7233f881ddcf676946/ultrasonico-2.jpg" /&#62;
        
          IA Física — Arduino &#38;amp; ESP32
          Ver Info ↗
        
      
    

    
    No hay cursos en esta categoría todavía.

    
    

  




(function () {
  var filterButtons = document.querySelectorAll('.ak-filter');
  var cards = document.querySelectorAll('.ak-card');
  var countEl = document.getElementById('ak-count-num');
  var emptyEl = document.getElementById('ak-empty');

  if (!filterButtons.length &#124;&#124; !cards.length) return;

  if (countEl) countEl.textContent = cards.length;

  filterButtons.forEach(function (btn) {
    btn.addEventListener('click', function () {
      filterButtons.forEach(function (b) { b.classList.remove('active'); });
      btn.classList.add('active');

      var filter = btn.getAttribute('data-filter');
      var visibleCount = 0;

      cards.forEach(function (card) {
        var cats = (card.getAttribute('data-categories') &#124;&#124; '').split(',');
        if (filter === 'all' &#124;&#124; cats.indexOf(filter) !== -1) {
          card.classList.remove('is-hidden');
          visibleCount++;
        } else {
          card.classList.add('is-hidden');
        }
      });

      if (countEl) countEl.textContent = visibleCount;
      if (emptyEl) emptyEl.classList.toggle('visible', visibleCount === 0);
    });
  });
})();
</description>
		
	</item>
		
	</channel>
</rss>