{"id":457,"date":"2024-12-05T18:35:14","date_gmt":"2024-12-05T18:35:14","guid":{"rendered":"https:\/\/displayav.com\/?page_id=457"},"modified":"2025-12-22T21:54:53","modified_gmt":"2025-12-22T21:54:53","slug":"produccion-tecnica-y-creativa","status":"publish","type":"page","link":"https:\/\/displayav.com\/en\/produccion-tecnica-y-creativa\/","title":{"rendered":"Producci\u00f3n T\u00e9cnica y Creativa"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"457\" class=\"elementor elementor-457\" 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: 500%; \/* Ancho ajustado din\u00e1micamente seg\u00fan la cantidad de slides *\/\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      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.jpg\" alt=\"Slide 1\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-ESPORTS-1.jpg\" alt=\"Slide 2\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-CCTV.jpg\" alt=\"Slide 3\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-CORPORATIVO.jpg\" alt=\"Slide 4\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-produccion.jpg\" alt=\"Slide 5\">\r\n    <\/div>\r\n    <div>\r\n      <div class=\"carousel-titles\">\r\n        <button data-index=\"0\" class=\"active\">STREAMING<\/button>\r\n        <button data-index=\"1\">E-SPORTS<\/button>\r\n        <button data-index=\"2\">CCTV<\/button>\r\n        <button data-index=\"3\">CORPORATIVO<\/button>\r\n        <button data-index=\"4\">PRODUCCION<\/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\r\n      carouselInner.css('width', `${20 * 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<h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"font-size:7.2vw\">producci\u00f3n<\/span> <BR> t\u00e9cnica y creativa<\/h2>\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-a01a577 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"a01a577\" 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-2ffe916 elementor--h-position-left elementor--v-position-bottom elementor-pagination-position-inside elementor-widget elementor-widget-slides\" data-id=\"2ffe916\" 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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">producci\u00f3n <span style=\"font-size:34px\"> t\u00e9cnica y creativa<\/span><\/div><div class=\"elementor-slide-description\">STREAMING<\/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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">E-SPORTS<\/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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">CCTV<\/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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">CORPORATIVO<\/div><\/div><\/div><\/div><div class=\"elementor-repeater-item-2e2912a swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-description\">PRODUCCI\u00d3N<\/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\">Somos el socio clave para que tu idea cobre sentido <\/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\">producci\u00f3n de eventos<\/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 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\">Acompa\u00f1amos proyectos desde el brainstorming y desarrollo de ideas creativas en base a objetivos hasta la producci\u00f3n y ejecuci\u00f3n completa del mismo para garantizar una experiencia \u00fanica alineada al equipo de trabajo y valores que el evento quiere transmitir. \n<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c7fafc e-grid e-con-full e-con e-child\" data-id=\"9c7fafc\" 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-5615b58 elementor-widget elementor-widget-heading\" data-id=\"5615b58\" 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\">Hagamos de tu evento una experiencia innolvidable<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c2600ea elementor-widget elementor-widget-eael-creative-button\" data-id=\"c2600ea\" 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\/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\">CONTACTANOS<\/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<\/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\">Somos el socio clave para que tu idea cobre sentido \u200b\n<\/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<h3 class=\"elementor-heading-title elementor-size-default\">PRODUCCION DE EVENTOS\n<\/h3>\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\">Acompa\u00f1amos proyectos desde el brainstorming y desarrollo de ideas creativas en base a objetivos hasta la producci\u00f3n y ejecuci\u00f3n completa del mismo para garantizar una experiencia \u00fanica alineada al equipo de trabajo y valores que el evento quiere transmitir. <\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4af3aab elementor-widget elementor-widget-heading\" data-id=\"4af3aab\" 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\">Hagamos de tu evento una experiencia innolvidable<\/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\/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\">CONTACTANOS<\/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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">STREAMING & CCTV<\/div><div class=\"elementor-slide-description\">Somos especialistas en transmisiones en vivo y circuito de c\u00e1maras, adapt\u00e1ndonos a distintos \u00e1mbitos, contextos y escenarios.<\/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=\"Somos una productora audiovisual que trabaja de forma integral y flexible ofreciendo un servicio completo y de calidad priorizando cada uno de los deseos de nuestros clientes. Desde contenido para redes hasta transmisiones de shows en vivo, te garantizamos seguridad y confianza sobre un producto innovador, atrapante y profesional.\"><\/div><div class=\"swiper-slide-inner\" ><div class=\"swiper-slide-contents\"><div class=\"elementor-slide-heading\">PRODUCCI\u00d3N DE EVENTOS<\/div><div class=\"elementor-slide-description\">Brindamos servicios de producci\u00f3n integral para eventos corporativos, activaciones de marcas y soluciones a medida para la comunicaci\u00f3n de tu empresa.\n<\/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<a 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}\" href=\"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/streaming-cctv\/\">\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-473 .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-473 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-473 .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-STREAMING-CCTV.jpg\");background-position:center center;background-size:cover;}.elementor-473 .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-473 .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-473 .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-473 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-473 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-473 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"473\" class=\"elementor elementor-473\" 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\">STREAMING &amp; CCTV<\/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-478 .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-478 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-478 .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-STREAMING-CCTV-01.jpg\");background-position:center center;background-size:cover;}.elementor-478 .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-478 .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-478 .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-478 .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, 57% );max-width:57%;--container-widget-width:57%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-478 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-478 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-478 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"478\" class=\"elementor elementor-478\" 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\">STREAMING &amp; CCTV<\/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>Somos especialistas en transmisiones en vivo y circuito de c\u00e1maras, adapt\u00e1ndonos a distintos \u00e1mbitos, contextos y escenarios.<\/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<\/a>\n\t\t<a class=\"elementor-element elementor-element-e74216a e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"e74216a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\" href=\"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/eventos\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ba5343 elementor-widget__width-inherit elementor-widget elementor-widget-eael-flip-box\" data-id=\"7ba5343\" 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-484 .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-484 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-484 .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-PRODUCCION-EVENTOS.jpg\");background-position:center center;background-size:cover;}.elementor-484 .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-484 .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-484 .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-484 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-484 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-484 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"484\" class=\"elementor elementor-484\" 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\">PRODUCCI\u00d3N DE EVENTOS<\/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-488 .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-488 .elementor-element.elementor-element-57a6005:not(.elementor-motion-effects-element-type-background), .elementor-488 .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-PRODUCCION-EVENTOS-01.jpg\");background-position:center center;background-size:cover;}.elementor-488 .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-488 .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-488 .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-488 .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, 57% );max-width:57%;--container-widget-width:57%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-488 .elementor-element.elementor-element-57a6005{--content-width:1900px;}.elementor-488 .elementor-element.elementor-element-94066e0{--width:50%;}.elementor-488 .elementor-element.elementor-element-c4d9e60{--width:50%;}}<\/style>\t\t<div data-elementor-type=\"section\" data-elementor-id=\"488\" class=\"elementor elementor-488\" 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\">PRODUCCI\u00d3N DE EVENTOS<\/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>Brindamos servicios de producci\u00f3n integral para eventos corporativos, activaciones de marcas y soluciones a medida para la comunicaci\u00f3n de tu empresa.<\/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<\/a>\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<div class=\"elementor-element elementor-element-72be818 e-flex e-con-boxed e-con e-parent\" data-id=\"72be818\" 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-af7535f elementor-widget elementor-widget-html\" data-id=\"af7535f\" 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<script type=\"application\/ld+json\">\r\n{\r\n  \"@context\": \"https:\/\/schema.org\",\r\n  \"@type\": \"Service\",\r\n  \"name\": \"Producci\u00f3n t\u00e9cnica y creativa \u2013 Display\",\r\n  \"description\": \"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.\",\r\n  \"url\": \"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/\",\r\n  \"serviceType\": \"Producci\u00f3n t\u00e9cnica y creativa\",\r\n  \"areaServed\": [\r\n    {\r\n      \"@type\": \"City\",\r\n      \"name\": \"Buenos Aires\"\r\n    },\r\n    \"Argentina\"\r\n  ],\r\n  \"provider\": {\r\n    \"@type\": \"LocalBusiness\",\r\n    \"name\": \"Display Productora Audiovisual\",\r\n    \"url\": \"https:\/\/displayav.com\/\",\r\n    \"logo\": \"https:\/\/displayav.com\/wp-content\/uploads\/2024\/11\/display-logo.png\",\r\n    \"address\": {\r\n      \"@type\": \"PostalAddress\",\r\n      \"streetAddress\": \"Humberto Primo 545\",\r\n      \"addressLocality\": \"San Telmo, Ciudad Aut\u00f3noma de Buenos Aires\",\r\n      \"addressCountry\": \"AR\"\r\n    },\r\n    \"geo\": {\r\n      \"@type\": \"GeoCoordinates\",\r\n      \"latitude\": -34.6206759,\r\n      \"longitude\": -58.3736634\r\n    },\r\n    \"contactPoint\": {\r\n      \"@type\": \"ContactPoint\",\r\n      \"telephone\": \"+54 9 11 6374\u20119938\",\r\n      \"email\": \"contacto@displayav.com\",\r\n      \"contactType\": \"customer service\",\r\n      \"areaServed\": \"AR\"\r\n    },\r\n    \"openingHours\": \"Mo\u2013Su 00:00\u201124:00\",\r\n    \"aggregateRating\": {\r\n      \"@type\": \"AggregateRating\",\r\n      \"ratingValue\": \"4.7\",\r\n      \"reviewCount\": \"35\"\r\n    },\r\n    \"sameAs\": [\r\n      \"https:\/\/www.instagram.com\/display.av\/\",\r\n      \"https:\/\/linktr.ee\/display.av\",\r\n      \"https:\/\/www.linkedin.com\/company\/display-av\"\r\n    ]\r\n  },\r\n  \"hasOfferCatalog\": {\r\n    \"@type\": \"OfferCatalog\",\r\n    \"name\": \"Subservicios de producci\u00f3n t\u00e9cnica y creativa\",\r\n    \"itemListElement\": [\r\n      {\r\n        \"@type\": \"Offer\",\r\n        \"itemOffered\": {\r\n          \"@type\": \"Service\",\r\n          \"name\": \"Streaming & CCTV\",\r\n          \"description\": \"Cobertura en vivo y clipificaci\u00f3n profesional para shows, corporativo, gaming y streaming.\",\r\n          \"url\": \"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/streaming-cctv\/\"\r\n        }\r\n      },\r\n      {\r\n        \"@type\": \"Offer\",\r\n        \"itemOffered\": {\r\n          \"@type\": \"Service\",\r\n          \"name\": \"Producci\u00f3n de eventos\",\r\n          \"description\": \"Coordinaci\u00f3n t\u00e9cnica y creativa integral para eventos corporativos, shows y activaciones.\",\r\n          \"url\": \"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/eventos\"\r\n        }\r\n      }\r\n    ]\r\n  }\r\n}\r\n<\/script>\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","protected":false},"excerpt":{"rendered":"<p>Carrusel Full Width STREAMING E-SPORTS CCTV CORPORATIVO PRODUCCION producci\u00f3n t\u00e9cnica y creativa producci\u00f3n t\u00e9cnica y creativaSTREAMINGE-SPORTSCCTVCORPORATIVOPRODUCCI\u00d3N Somos el socio clave para que tu idea cobre sentido &gt; &gt; &gt; &gt; producci\u00f3n de eventos Acompa\u00f1amos proyectos desde el brainstorming y desarrollo de ideas creativas en base a objetivos hasta la producci\u00f3n y ejecuci\u00f3n completa del mismo [&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-457","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>Producci\u00f3n T\u00e9cnica y Creativa - Display<\/title>\n<meta name=\"description\" content=\"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.\" \/>\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\/produccion-tecnica-y-creativa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Producci\u00f3n T\u00e9cnica y Creativa - Display\" \/>\n<meta property=\"og:description\" content=\"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/displayav.com\/en\/produccion-tecnica-y-creativa\/\" \/>\n<meta property=\"og:site_name\" content=\"Display\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-22T21:54:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/\",\"url\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/\",\"name\":\"Producci\u00f3n T\u00e9cnica y Creativa - Display\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCCION-STREAMING-2.jpg\",\"datePublished\":\"2024-12-05T18:35:14+00:00\",\"dateModified\":\"2025-12-22T21:54:53+00:00\",\"description\":\"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/#primaryimage\",\"url\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCCION-STREAMING-2.jpg\",\"contentUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/PORTADA-PRODUCCION-STREAMING-2.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/displayav.com\\\/produccion-tecnica-y-creativa\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/displayav.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Producci\u00f3n T\u00e9cnica y Creativa\"}]},{\"@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":"Producci\u00f3n T\u00e9cnica y Creativa - Display","description":"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.","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\/produccion-tecnica-y-creativa\/","og_locale":"en_US","og_type":"article","og_title":"Producci\u00f3n T\u00e9cnica y Creativa - Display","og_description":"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.","og_url":"https:\/\/displayav.com\/en\/produccion-tecnica-y-creativa\/","og_site_name":"Display","article_modified_time":"2025-12-22T21:54:53+00:00","og_image":[{"url":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/","url":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/","name":"Producci\u00f3n T\u00e9cnica y Creativa - Display","isPartOf":{"@id":"https:\/\/displayav.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/#primaryimage"},"image":{"@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/#primaryimage"},"thumbnailUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.jpg","datePublished":"2024-12-05T18:35:14+00:00","dateModified":"2025-12-22T21:54:53+00:00","description":"Producci\u00f3n t\u00e9cnica y creativa en Buenos Aires: sonido, iluminaci\u00f3n, animaci\u00f3n, eventos y streaming profesional.","breadcrumb":{"@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/displayav.com\/produccion-tecnica-y-creativa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/#primaryimage","url":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.jpg","contentUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2024\/12\/PORTADA-PRODUCCION-STREAMING-2.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/displayav.com\/produccion-tecnica-y-creativa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/displayav.com\/"},{"@type":"ListItem","position":2,"name":"Producci\u00f3n T\u00e9cnica y Creativa"}]},{"@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\/457","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=457"}],"version-history":[{"count":5,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/457\/revisions"}],"predecessor-version":[{"id":2592,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/457\/revisions\/2592"}],"wp:attachment":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/media?parent=457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}