{"id":984,"date":"2024-12-12T19:37:59","date_gmt":"2024-12-12T19:37:59","guid":{"rendered":"https:\/\/displayav.com\/?page_id=984"},"modified":"2025-08-19T15:08:54","modified_gmt":"2025-08-19T15:08:54","slug":"nuestros-productos","status":"publish","type":"page","link":"https:\/\/displayav.com\/en\/nuestros-productos\/","title":{"rendered":"Nuestros Productos"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"984\" class=\"elementor elementor-984\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cbde8f1 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"cbde8f1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0fd3455 elementor-widget elementor-widget-html\" data-id=\"0fd3455\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <title>Carrusel Full Width<\/title>\r\n  <style>\r\n    .carousel-container {\r\n      position: relative;\r\n      width: 100%;\r\n      height: 100vh; \/* Contenedor adaptado al alto de la pantalla *\/\r\n      overflow: hidden; \/* Evitar desbordamiento *\/\r\n    }\r\n\r\n    .carousel-inner {\r\n      display: flex;\r\n      position: relative;\r\n      width: 400%; \/* Ancho ajustado din\u00e1micamente seg\u00fan la cantidad de slides (4 * 100%) *\/\r\n      height: 100%; \/* Asegurar que el contenedor ocupe toda la altura *\/\r\n      transition: transform 0.5s ease-in-out; \/* Transici\u00f3n para el efecto slide *\/\r\n    }\r\n\r\n    .carousel-image {\r\n      width: 100%;\r\n      height: 100%; \/* Altura completa del contenedor *\/\r\n      object-fit: cover; \/* Asegura que la imagen cubra todo sin distorsi\u00f3n *\/\r\n      object-position: center bottom; \/* Centra la imagen y enfoca en la parte inferior *\/\r\n      flex-shrink: 0; \/* Asegura que cada imagen ocupe un slide completo *\/\r\n    }\r\n\r\n    .carousel-titles {\r\n      position: absolute;\r\n      bottom: 2vw;\r\n      right: 4.5%;\r\n      display: flex;\r\n      gap: 2vw;\r\n      z-index: 1;\r\n      border-radius: 8px;\r\n    }\r\n\r\n    .carousel-titles button {\r\n      border: none;\r\n      background: transparent;\r\n      font-size: 18px;\r\n      font-weight: 500;\r\n      color: white;\r\n      cursor: pointer;\r\n      padding: 10px 15px;\r\n      transition: border-color 0.3s ease, color 0.3s ease;\r\n      font-family: \"Jura\", Sans-serif;\r\n    }\r\n\r\n    .carousel-titles button.active {\r\n      border-color: #007bff;\r\n      color: #13FF01;\r\n    }\r\n\r\n    .carousel-titles button:hover {\r\n      color: #13FF01;\r\n    }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n  <div class=\"carousel-container\">\r\n    <div class=\"carousel-inner\" id=\"carousel-inner\">\r\n      <!-- 4 im\u00e1genes -->\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg\" alt=\"Slide 1\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-BAZOOKA.jpg\" alt=\"Slide 2\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-DYNA-FEST.jpg\" alt=\"Slide 3\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-BESTIA.jpg\" alt=\"Slide 4\">\r\n    <\/div>\r\n    <div>\r\n      <!-- 4 botones correspondientes a las 4 im\u00e1genes -->\r\n      <div class=\"carousel-titles\">\r\n        <button data-index=\"0\" class=\"active\">STREAM JAM<\/button>\r\n        <button data-index=\"1\">LIGA BAZOOKA<\/button>\r\n        <button data-index=\"2\">DYNA FEST<\/button>\r\n        <button data-index=\"3\">BESTIA CORP<\/button>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <script>\r\n    jQuery(document).ready(function ($) {\r\n      \/\/ Variables\r\n      const carouselInner = $('#carousel-inner');\r\n      const titleButtons = $('.carousel-titles button');\r\n      const slides = $('.carousel-image');\r\n      const totalSlides = slides.length;\r\n\r\n      \/\/ Ajustar el ancho din\u00e1mico del contenedor a 4 slides (100 * 4 = 400%)\r\n      carouselInner.css('width', `${25 * totalSlides}%`);\r\n\r\n      \/\/ Evento de click en los botones\r\n      titleButtons.on('click', function () {\r\n        \/\/ Obtener el \u00edndice del bot\u00f3n clicado\r\n        const index = $(this).data('index');\r\n\r\n        \/\/ Mover el contenedor al \u00edndice correspondiente\r\n        const offset = -index * 100; \/\/ Calcular la posici\u00f3n en %\r\n        carouselInner.css('transform', `translateX(${offset}%)`);\r\n\r\n        \/\/ Actualizar la clase activa\r\n        titleButtons.removeClass('active');\r\n        $(this).addClass('active');\r\n      });\r\n    });\r\n  <\/script>\r\n<\/body>\r\n<\/html>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ba16cf4 elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"ba16cf4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e60dee elementor-hidden-mobile elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"0e60dee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">nuestros<br>\nproductos<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f21eb00 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"f21eb00\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-266162b elementor--h-position-left elementor--v-position-bottom elementor-pagination-position-inside elementor-widget elementor-widget-slides\" data-id=\"266162b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;navigation&quot;:&quot;dots&quot;,&quot;autoplay_speed&quot;:3000,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;transition&quot;:&quot;slide&quot;,&quot;transition_speed&quot;:500}\" data-widget_type=\"slides.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper\">\n\t\t\t\t\t<div class=\"elementor-slides-wrapper elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Slides\" dir=\"ltr\" data-animation=\"fadeInUp\">\n\t\t\t\t<div class=\"swiper-wrapper elementor-slides\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-65eeacf swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">nuestros productos<\/div><div class=\"elementor-slide-description\">STREAM JAM<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-9e1cc46 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">LIGA BAZOOKA<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-3ba8a4e swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">DYNA FEST<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-0209ee0 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">BESTIA CORP<\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1bd755a elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"1bd755a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1bc59bf e-con-full elementor-hidden-mobile e-flex elementor-invisible e-con e-child\" data-id=\"1bc59bf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;slideInUp&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t<div class=\"elementor-element elementor-element-9dd2d13 e-grid e-con-full e-con e-child\" data-id=\"9dd2d13\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6971d7d elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"6971d7d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u00bfCu\u00e1l es nuestro prop\u00f3sito?<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a6762ca elementor-widget elementor-widget-heading\" data-id=\"a6762ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">&gt; &gt; &gt; &gt;<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-56aea33 elementor-widget elementor-widget-heading\" data-id=\"56aea33\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Transformar la manera de alcanzar audiencias<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0ad0ad9 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"0ad0ad9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Impulsar el crecimiento de nuestros clientes y marcas asociadas mediante una red de productos y servicios estrat\u00e9gicamente integrados con el objetivo de transformar su comunicaci\u00f3n, posicionamiento y presencia en el mundo actual.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d6dfbdc elementor-widget elementor-widget-eael-creative-button\" data-id=\"d6dfbdc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--default\" href=\"https:\/\/displayav.com\/en\/contacto\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                                            <span class=\"eael-creative-button-icon-left\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\"><path d=\"M7 12C3 12 3 13.79 3 16V17C3 19.76 3 22 8 22H16C20 22 21 19.76 21 17V16C21 13.79 21 12 17 12C16 12 15.72 12.21 15.2 12.6L14.18 13.68C13 14.94 11 14.94 9.81 13.68L8.8 12.6C8.28 12.21 8 12 7 12Z\" stroke=\"#13FF01\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M19 12V6C19 3.79 19 2 15 2H9C5 2 5 3.79 5 6V12\" stroke=\"#13FF01\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>                    \n                    <span class=\"cretive-button-text\">CONTACT US<\/span>\n\n                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b321c5f elementor-hidden-desktop elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"b321c5f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-abc6a1f e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"abc6a1f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b5c7e15 elementor-widget elementor-widget-heading\" data-id=\"b5c7e15\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u00bfCu\u00e1l es nuestro prop\u00f3sito?\u200b<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8d00772 elementor-widget elementor-widget-heading\" data-id=\"8d00772\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">&gt; &gt; &gt; &gt;<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-19e9ba4 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"19e9ba4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Transformar la manera de alcanzar audiencias<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b1d7d3 elementor-widget elementor-widget-heading\" data-id=\"0b1d7d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Impulsar el crecimiento de nuestros clientes y marcas asociadas mediante una red de productos y servicios estrat\u00e9gicamente integrados con el objetivo de transformar su comunicaci\u00f3n, posicionamiento y presencia en el mundo actual.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f206255 elementor-widget elementor-widget-eael-creative-button\" data-id=\"f206255\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--default\" href=\"https:\/\/displayav.com\/en\/contacto\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                                            <span class=\"eael-creative-button-icon-left\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\"><path d=\"M7 12C3 12 3 13.79 3 16V17C3 19.76 3 22 8 22H16C20 22 21 19.76 21 17V16C21 13.79 21 12 17 12C16 12 15.72 12.21 15.2 12.6L14.18 13.68C13 14.94 11 14.94 9.81 13.68L8.8 12.6C8.28 12.21 8 12 7 12Z\" stroke=\"#13FF01\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M19 12V6C19 3.79 19 2 15 2H9C5 2 5 3.79 5 6V12\" stroke=\"#13FF01\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg><\/span>                    \n                    <span class=\"cretive-button-text\">CONTACT US<\/span>\n\n                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3229466 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"3229466\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3bbce57 elementor--h-position-left elementor--v-position-bottom elementor-pagination-position-inside elementor-widget elementor-widget-slides\" data-id=\"3bbce57\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;navigation&quot;:&quot;dots&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;transition&quot;:&quot;slide&quot;,&quot;transition_speed&quot;:500}\" data-widget_type=\"slides.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper\">\n\t\t\t\t\t<div class=\"elementor-slides-wrapper elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Slides\" dir=\"ltr\" data-animation=\"fadeInUp\">\n\t\t\t\t<div class=\"swiper-wrapper elementor-slides\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-65eeacf swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">STREAM JAM<\/div><div class=\"elementor-slide-description\">LIGA DE BASQUET 3X3 DE CREADORES DE CONTENIDO. El mayor evento de sportainment por streaming en Argentina, con la participaci\u00f3n de marcas globales como Adidas, Coca-Cola, Hisense, y m\u00e1s. Impacto a nivel nacional e internacional, con cobertura masiva y generaci\u00f3n de valor para las marcas participantes.<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-9e1cc46 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">liga bazooka<\/div><div class=\"elementor-slide-description\">LIGA DE BATALLAS ESCRITAS. Un evento de cultura urbana que llen\u00f3 el Movistar Arena. Esto demuestra nuestra capacidad para generar engagement en audiencias masivas a trav\u00e9s de experiencias \u00fanicas.<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-7ab4d0e swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">dyna fest<\/div><div class=\"elementor-slide-description\">CONVENCI\u00d3N DE TECNOLOG\u00cdA Y ARTE DIGITAL. Un evento presencial de arte digital y tecnolog\u00eda, que recibi\u00f3 el respaldo de empresas multinacionales como SideShow, mostrando nuestra capacidad para asociarnos con grandes actores del sector.<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-12779a2 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"We are an audiovisual production company that works in an integral and flexible way, offering a complete and high-quality service that prioritizes each of our clients\u2019 needs. From social media content to live show broadcasts, we guarantee reliability and confidence in an innovative, engaging, and professional product.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">bestia corp<\/div><div class=\"elementor-slide-description\">EQUIPO DE E-SPORTS. Un equipo de Esports Tier 1 en Argentina, TOP 30 MUNDIAL que tiene presencia internacional. Este caso demuestra la capacidad para crear proyectos escalables en mercados emergentes.<\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-ha-element-link=\"{&quot;url&quot;:&quot;https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/stream-jam\\\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;}\" style=\"cursor: pointer\" class=\"elementor-element elementor-element-4d007c1 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"4d007c1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a92b527 elementor-widget__width-inherit elementor-widget elementor-widget-eael-flip-box\" data-id=\"a92b527\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-elements-flip-box-container eael-animate-flip eael-animate-fade-in eael-template eael-flip-box-hover eael-flipbox-fixed-height eael-flipbox-dynamic\">\n\n            <div class=\"eael-elements-flip-box-flip-card\">\n                <div class=\"eael-elements-flip-box-front-container\">\n                    \n                    <style>.elementor-1011 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1011 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1011 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-STREAM-JAM.jpg\");background-position:center center;background-size:cover;}.elementor-1011 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1011 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1011 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}@media(min-width:768px){.elementor-1011 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1011 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1011 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1011\" class=\"elementor elementor-1011\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">stream jam<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n\n                <div class=\"eael-elements-flip-box-rear-container\">\n                                        <style>.elementor-1015 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1015 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1015 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-STREAM-JAM-02.jpg\");background-position:center center;background-size:cover;}.elementor-1015 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1015 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1015 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:flex-end;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1015 .elementor-element.elementor-element-c4c00b6{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:400;line-height:21px;color:#FFFFFF;width:var( --container-widget-width, 60% );max-width:60%;--container-widget-width:60%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-1015 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1015 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1015 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1015\" class=\"elementor elementor-1015\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Stream jam<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4c00b6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c4c00b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>LIGA DE BASQUET 3X3 DE CREADORES DE CONTENIDO. El mayor evento de sportainment por streaming en Argentina, con la participaci\u00f3n de marcas globales como\u00a0Adidas,\u00a0Coca-Cola,\u00a0Hisense, y m\u00e1s. Impacto a nivel nacional e internacional, con cobertura masiva y generaci\u00f3n de valor para las marcas participantes.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n            <\/div>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-ha-element-link=\"{&quot;url&quot;:&quot;https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/liga-bazooka\\\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;}\" style=\"cursor: pointer\" class=\"elementor-element elementor-element-9b4cfd1 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"9b4cfd1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c5a57f9 elementor-widget__width-inherit elementor-widget elementor-widget-eael-flip-box\" data-id=\"c5a57f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-elements-flip-box-container eael-animate-flip eael-animate-fade-in eael-template eael-flip-box-hover eael-flipbox-fixed-height eael-flipbox-dynamic\">\n\n            <div class=\"eael-elements-flip-box-flip-card\">\n                <div class=\"eael-elements-flip-box-front-container\">\n                    \n                    <style>.elementor-1024 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1024 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1024 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-BAZOOKA.jpg\");background-position:center center;background-size:cover;}.elementor-1024 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1024 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1024 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}@media(min-width:768px){.elementor-1024 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1024 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1024 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1024\" class=\"elementor elementor-1024\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">liga bazooka<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n\n                <div class=\"eael-elements-flip-box-rear-container\">\n                                        <style>.elementor-1028 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1028 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1028 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-BAZOOKA-01.jpg\");background-position:center center;background-size:cover;}.elementor-1028 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1028 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1028 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:flex-end;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1028 .elementor-element.elementor-element-c4c00b6{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:400;line-height:21px;color:#FFFFFF;width:var( --container-widget-width, 56% );max-width:56%;--container-widget-width:56%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-1028 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1028 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1028 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1028\" class=\"elementor elementor-1028\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">liga bazooka<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4c00b6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c4c00b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>LIGA DE BATALLAS ESCRITAS. Un evento de cultura urbana que llen\u00f3 el Movistar Arena. Esto demuestra nuestra capacidad para generar engagement en audiencias masivas a trav\u00e9s de experiencias \u00fanicas.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n            <\/div>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-ha-element-link=\"{&quot;url&quot;:&quot;https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/dyna-fest\\\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;}\" style=\"cursor: pointer\" class=\"elementor-element elementor-element-fa2f0e8 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"fa2f0e8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d752dcb elementor-widget__width-inherit elementor-widget elementor-widget-eael-flip-box\" data-id=\"d752dcb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-elements-flip-box-container eael-animate-flip eael-animate-fade-in eael-template eael-flip-box-hover eael-flipbox-fixed-height eael-flipbox-dynamic\">\n\n            <div class=\"eael-elements-flip-box-flip-card\">\n                <div class=\"eael-elements-flip-box-front-container\">\n                    \n                    <style>.elementor-1057 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1057 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1057 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-DYNA-FEST.jpg\");background-position:center center;background-size:cover;}.elementor-1057 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1057 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1057 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}@media(min-width:768px){.elementor-1057 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1057 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1057 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1057\" class=\"elementor elementor-1057\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">dyna fest<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n\n                <div class=\"eael-elements-flip-box-rear-container\">\n                                        <style>.elementor-1061 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1061 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1061 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-DYNA-FEST-01.jpg\");background-position:center center;background-size:cover;}.elementor-1061 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1061 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1061 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:flex-end;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1061 .elementor-element.elementor-element-c4c00b6{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:400;line-height:21px;color:#FFFFFF;width:var( --container-widget-width, 56% );max-width:56%;--container-widget-width:56%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-1061 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1061 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1061 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1061\" class=\"elementor elementor-1061\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">dyna fest<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4c00b6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c4c00b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>CONVENCI\u00d3N DE TECNOLOG\u00cdA Y ARTE DIGITAL. Un evento presencial de arte digital y tecnolog\u00eda, que recibi\u00f3 el respaldo de empresas multinacionales como\u00a0SideShow, mostrando nuestra capacidad para asociarnos con grandes actores del sector.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n            <\/div>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-ha-element-link=\"{&quot;url&quot;:&quot;https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/bestia-corp\\\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;}\" style=\"cursor: pointer\" class=\"elementor-element elementor-element-2082ac8 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"2082ac8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79ea500 elementor-widget__width-inherit elementor-widget elementor-widget-eael-flip-box\" data-id=\"79ea500\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"eael-elements-flip-box-container eael-animate-flip eael-animate-fade-in eael-template eael-flip-box-hover eael-flipbox-fixed-height eael-flipbox-dynamic\">\n\n            <div class=\"eael-elements-flip-box-flip-card\">\n                <div class=\"eael-elements-flip-box-front-container\">\n                    \n                    <style>.elementor-1068 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1068 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1068 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-BESTIA.jpg\");background-position:center center;background-size:cover;}.elementor-1068 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1068 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1068 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}@media(min-width:768px){.elementor-1068 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1068 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1068 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1068\" class=\"elementor elementor-1068\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">bestia corp<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n\n                <div class=\"eael-elements-flip-box-rear-container\">\n                                        <style>.elementor-1072 .elementor-element.elementor-element-57a6005{--display:flex;--min-height:869px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-1072 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-1072 .elementor-element.elementor-element-57a6005 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTO-BESTIA-01.jpg\");background-position:center center;background-size:cover;}.elementor-1072 .elementor-element.elementor-element-94066e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1072 .elementor-element.elementor-element-3c8c2f6 .elementor-heading-title{font-family:\"Big Shoulders Display\", Sans-serif;font-size:50px;font-weight:900;text-transform:uppercase;color:#FFFFFF;}.elementor-1072 .elementor-element.elementor-element-c4d9e60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:flex-end;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1072 .elementor-element.elementor-element-c4c00b6{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:400;line-height:21px;color:#FFFFFF;width:var( --container-widget-width, 56% );max-width:56%;--container-widget-width:56%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-1072 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-1072 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-1072 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"1072\" class=\"elementor elementor-1072\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-57a6005 e-flex e-con-boxed e-con e-parent\" data-id=\"57a6005\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-94066e0 e-con-full e-flex e-con e-child\" data-id=\"94066e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c8c2f6 elementor-widget elementor-widget-heading\" data-id=\"3c8c2f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">bestia corp<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4d9e60 e-con-full e-flex e-con e-child\" data-id=\"c4d9e60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4c00b6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c4c00b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>EQUIPO DE E-SPORTS. Un equipo de Esports Tier 1 en Argentina, TOP 30 MUNDIAL que tiene presencia internacional. Este caso demuestra la capacidad para crear proyectos escalables en mercados emergentes.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t                <\/div>\n            <\/div>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8445c72 e-flex e-con-boxed e-con e-parent\" data-id=\"8445c72\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-303e64c elementor-widget elementor-widget-spacer\" data-id=\"303e64c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Carrusel Full Width STREAM JAM LIGA BAZOOKA DYNA FEST BESTIA CORP nuestros productos nuestros productosSTREAM JAMLIGA BAZOOKADYNA FESTBESTIA CORP \u00bfCu\u00e1l es nuestro prop\u00f3sito? &gt; &gt; &gt; &gt; Transformar la manera de alcanzar audiencias Impulsar el crecimiento de nuestros clientes y marcas asociadas mediante una red de productos y servicios estrat\u00e9gicamente integrados con el objetivo de [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-984","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Nuestros Productos - Display<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/displayav.com\/en\/nuestros-productos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nuestros Productos - Display\" \/>\n<meta property=\"og:description\" content=\"Carrusel Full Width STREAM JAM LIGA BAZOOKA DYNA FEST BESTIA CORP nuestros productos nuestros productosSTREAM JAMLIGA BAZOOKADYNA FESTBESTIA CORP \u00bfCu\u00e1l es nuestro prop\u00f3sito? &gt; &gt; &gt; &gt; Transformar la manera de alcanzar audiencias Impulsar el crecimiento de nuestros clientes y marcas asociadas mediante una red de productos y servicios estrat\u00e9gicamente integrados con el objetivo de [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/displayav.com\/en\/nuestros-productos\/\" \/>\n<meta property=\"og:site_name\" content=\"Display\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-19T15:08:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/\",\"url\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/\",\"name\":\"Nuestros Productos - Display\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCTOS-STREAM-JAM.jpg\",\"datePublished\":\"2024-12-12T19:37:59+00:00\",\"dateModified\":\"2025-08-19T15:08:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/#primaryimage\",\"url\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCTOS-STREAM-JAM.jpg\",\"contentUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCTOS-STREAM-JAM.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/displayav.com\\\/nuestros-productos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/displayav.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nuestros Productos\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/displayav.com\\\/#website\",\"url\":\"https:\\\/\\\/displayav.com\\\/\",\"name\":\"Display\",\"description\":\"Productora Audivisual\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/displayav.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Nuestros Productos - Display","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/displayav.com\/en\/nuestros-productos\/","og_locale":"en_US","og_type":"article","og_title":"Nuestros Productos - Display","og_description":"Carrusel Full Width STREAM JAM LIGA BAZOOKA DYNA FEST BESTIA CORP nuestros productos nuestros productosSTREAM JAMLIGA BAZOOKADYNA FESTBESTIA CORP \u00bfCu\u00e1l es nuestro prop\u00f3sito? &gt; &gt; &gt; &gt; Transformar la manera de alcanzar audiencias Impulsar el crecimiento de nuestros clientes y marcas asociadas mediante una red de productos y servicios estrat\u00e9gicamente integrados con el objetivo de [&hellip;]","og_url":"https:\/\/displayav.com\/en\/nuestros-productos\/","og_site_name":"Display","article_modified_time":"2025-08-19T15:08:54+00:00","og_image":[{"url":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/displayav.com\/nuestros-productos\/","url":"https:\/\/displayav.com\/nuestros-productos\/","name":"Nuestros Productos - Display","isPartOf":{"@id":"https:\/\/displayav.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/displayav.com\/nuestros-productos\/#primaryimage"},"image":{"@id":"https:\/\/displayav.com\/nuestros-productos\/#primaryimage"},"thumbnailUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg","datePublished":"2024-12-12T19:37:59+00:00","dateModified":"2025-08-19T15:08:54+00:00","breadcrumb":{"@id":"https:\/\/displayav.com\/nuestros-productos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/displayav.com\/nuestros-productos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/displayav.com\/nuestros-productos\/#primaryimage","url":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg","contentUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCTOS-STREAM-JAM.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/displayav.com\/nuestros-productos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/displayav.com\/"},{"@type":"ListItem","position":2,"name":"Nuestros Productos"}]},{"@type":"WebSite","@id":"https:\/\/displayav.com\/#website","url":"https:\/\/displayav.com\/","name":"Display","description":"Productora Audivisual","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/displayav.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/comments?post=984"}],"version-history":[{"count":0,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/984\/revisions"}],"wp:attachment":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/media?parent=984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}