{"id":1463,"date":"2025-08-04T18:04:05","date_gmt":"2025-08-04T18:04:05","guid":{"rendered":"https:\/\/displayav.com\/?page_id=1463"},"modified":"2025-08-19T13:33:46","modified_gmt":"2025-08-19T13:33:46","slug":"pasillo","status":"publish","type":"page","link":"https:\/\/displayav.com\/en\/estudios\/pasillo\/","title":{"rendered":"Hall"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1463\" class=\"elementor elementor-1463\" 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: 93vh; \/* 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\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg\" alt=\"Slide 1\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-VIOLETA.jpg\" alt=\"Slide 2\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-VERDE.jpg\" alt=\"Slide 3\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-RECEPCION1.jpg\" alt=\"Slide 4\">\r\n      <img decoding=\"async\" class=\"carousel-image\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-HALL.jpg\" alt=\"Slide 5\">\r\n    <\/div>\r\n    <div>\r\n      <div class=\"carousel-titles\">\r\n        <button data-index=\"0\" class=\"active\">AZUL<\/button>\r\n        <button data-index=\"1\">VIOLETA<\/button>\r\n        <button data-index=\"2\">VERDE<\/button>\r\n        <button data-index=\"3\">RECEPCI\u00d3N<\/button>\r\n        <button data-index=\"4\">HALL<\/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-grid 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-b05a26e elementor-hidden-mobile elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"b05a26e\" 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\">pasillo <\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-db606a3 elementor-widget elementor-widget-eael-creative-button\" data-id=\"db606a3\" 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\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_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\">PASILLO<\/div><div class=\"elementor-slide-description\">AZUL<\/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\">VIOLETA<\/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\">VERDE<\/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\">RECEPCI\u00d3N<\/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\">HALL<\/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-93aba12 e-flex e-con-boxed e-con e-parent\" data-id=\"93aba12\" 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-c48d4b8 elementor-widget elementor-widget-heading\" data-id=\"c48d4b8\" 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\">CARACTER\u00cdSTICAS<\/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-7c965cf e-flex e-con-boxed e-con e-parent\" data-id=\"7c965cf\" 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-10b5377 e-con-full e-flex e-con e-child\" data-id=\"10b5377\" 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-cf44457 elementor-position-inline-start elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"cf44457\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\"><path d=\"M22.4199 16.3228V22.1353C22.4199 26.979 20.4824 28.9165 15.6387 28.9165H9.82617C4.98242 28.9165 3.04492 26.979 3.04492 22.1353V16.3228C3.04492 11.479 4.98242 9.5415 9.82617 9.5415H15.6387C20.4824 9.5415 22.4199 11.479 22.4199 16.3228Z\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M28.8783 8.05641V12.3189C28.8783 15.871 27.4574 17.2918 23.9053 17.2918H22.4199V16.3231C22.4199 11.4793 20.4824 9.54183 15.6387 9.54183H14.6699V8.05641C14.6699 4.50433 16.0908 3.0835 19.6428 3.0835H23.9053C27.4574 3.0835 28.8783 4.50433 28.8783 8.05641Z\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tMedidas\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t10m2 de largo<BR><BR>\n1.5 m2 de ancho\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-518c887 e-con-full e-flex e-con e-child\" data-id=\"518c887\" 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-3d3ca56 elementor-position-inline-start elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"3d3ca56\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\"><path d=\"M4.375 23.7241L7.66873 23.737C8.84415 23.737 9.94208 23.1558 10.5879 22.187L18.8417 9.81292C19.4875 8.84417 20.5854 8.24999 21.7608 8.2629L27.6379 8.28876\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M25.041 26.3075L27.6243 23.7241\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M11.9829 11.6344L10.5879 9.69689C9.92916 8.7798 8.86998 8.23731 7.74623 8.25023L4.375 8.26315\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M17.252 20.3657L18.8278 22.3936C19.4865 23.2461 20.5199 23.7499 21.6049 23.7499L27.637 23.724\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M27.6243 8.27572L25.041 5.69238\" stroke=\"#13FF01\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tdetalles\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tLuces LED RGB adaptables <br><br>\nAlfombra<br>\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\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<div class=\"elementor-element elementor-element-0528045 e-flex e-con-boxed e-con e-parent\" data-id=\"0528045\" 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-55e7c7f elementor-widget elementor-widget-heading\" data-id=\"55e7c7f\" 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\">incluye<\/p>\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-ec5eb66 e-flex e-con-boxed e-con e-parent\" data-id=\"ec5eb66\" 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<div class=\"elementor-element elementor-element-89a4fd7 e-con-full e-flex e-con e-child\" data-id=\"89a4fd7\" 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-3871b56 elementor-flip-box--effect-slide elementor-flip-box--direction-up elementor-widget elementor-widget-flip-box\" data-id=\"3871b56\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper elementor-view-default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-flip-box__layer__title\">\n\t\t\t\t\t\t\tCAMAR\u00cdN\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\t\u2022 Sala de maquillaje<br>\n\u2022 Cambiador<br>\n\u2022 Camar\u00edn privado<br>\n\u2022 Guardarropa\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\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-1c7eaaf e-con-full e-flex e-con e-child\" data-id=\"1c7eaaf\" 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-4130c7a elementor-flip-box--effect-slide elementor-flip-box--direction-up elementor-widget elementor-widget-flip-box\" data-id=\"4130c7a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper elementor-view-default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-flip-box__layer__title\">\n\t\t\t\t\t\t\tSALA DE ESTAR\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\t\u2022 Espacio de recepci\u00f3n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\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-ffd482d e-con-full e-flex e-con e-child\" data-id=\"ffd482d\" 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-c1a2243 elementor-flip-box--effect-slide elementor-flip-box--direction-up elementor-widget elementor-widget-flip-box\" data-id=\"c1a2243\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper elementor-view-default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-flip-box__layer__title\">\n\t\t\t\t\t\t\tCocina\/comedor\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\t\u2022 Heladera\/Microondas\/Pava el\u00e9ctrica.\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t\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-d3b0f66 e-con-full e-flex e-con e-child\" data-id=\"d3b0f66\" 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-0195e2e elementor-flip-box--effect-slide elementor-flip-box--direction-up elementor-widget elementor-widget-flip-box\" data-id=\"0195e2e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"flip-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-flip-box\" tabindex=\"0\">\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__front\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper elementor-view-default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"elementor-flip-box__layer elementor-flip-box__back\">\n\t\t\t<div class=\"elementor-flip-box__layer__overlay\">\n\t\t\t\t<div class=\"elementor-flip-box__layer__inner\">\n\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-flip-box__layer__title\">\n\t\t\t\t\t\t\tSala de reuniones\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-flip-box__layer__description\">\n\t\t\t\t\t\t\t\u2022 TV<BR>\n\u2022 6 sillas\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\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<div class=\"elementor-element elementor-element-cc0becd e-flex e-con-boxed e-con e-parent\" data-id=\"cc0becd\" 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-06627f6 elementor-widget elementor-widget-heading\" data-id=\"06627f6\" 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\">OTROS ESTUDIOS<\/p>\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-4f55b6b e-flex e-con-boxed e-con e-parent\" data-id=\"4f55b6b\" 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<div class=\"elementor-element elementor-element-a278d71 e-con-full e-flex e-con e-child\" data-id=\"a278d71\" 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-6fc7427 elementor-widget elementor-widget-image\" data-id=\"6fc7427\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/displayav.com\/estudios\/sotano\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"563\" height=\"694\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-sotano-1.png\" class=\"elementor-animation-shrink attachment-large size-large wp-image-1424\" alt=\"\" srcset=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-sotano-1.png 563w, https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-sotano-1-243x300.png 243w\" sizes=\"(max-width: 563px) 100vw, 563px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\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-0878b7c e-con-full e-flex e-con e-child\" data-id=\"0878b7c\" 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-3cf8df9 elementor-widget elementor-widget-image\" data-id=\"3cf8df9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/displayav.com\/estudios\/grabacion-fotografia\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"563\" height=\"694\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-grabacion.png\" class=\"elementor-animation-shrink attachment-large size-large wp-image-1441\" alt=\"\" srcset=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-grabacion.png 563w, https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-grabacion-243x300.png 243w\" sizes=\"(max-width: 563px) 100vw, 563px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\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-22f1191 e-con-full e-flex e-con e-child\" data-id=\"22f1191\" 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-4e1c6a1 elementor-widget elementor-widget-image\" data-id=\"4e1c6a1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/displayav.com\/estudios\/podcast\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"563\" height=\"694\" src=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-podcast.png\" class=\"elementor-animation-shrink attachment-large size-large wp-image-1425\" alt=\"\" srcset=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-podcast.png 563w, https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/otros-estudios-podcast-243x300.png 243w\" sizes=\"(max-width: 563px) 100vw, 563px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\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<div class=\"elementor-element elementor-element-b9543e6 e-flex e-con-boxed e-con e-parent\" data-id=\"b9543e6\" 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-109e395 elementor-widget elementor-widget-html\" data-id=\"109e395\" 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\": \"LocalBusiness\",\r\n  \"name\": \"Pasillo RGB \u2013 Display AV\",\r\n  \"url\": \"https:\/\/displayav.com\/estudios\/pasillo\/\",\r\n  \"description\": \"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual profesional.\",\r\n  \"logo\": \"https:\/\/displayav.com\/wp-content\/uploads\/2024\/11\/display-logo.png\",\r\n  \"contactPoint\": {\r\n    \"@type\": \"ContactPoint\",\r\n    \"telephone\": \"+54 9 11 6374\u20119938\",\r\n    \"email\": \"studios@displayav.com\",\r\n    \"contactType\": \"customer service\",\r\n    \"areaServed\": \"AR\"\r\n  },\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  \"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.studios\/\",\r\n    \"https:\/\/linktr.ee\/display.av\",\r\n    \"https:\/\/www.linkedin.com\/company\/display-av\"\r\n  ]\r\n}\r\n<\/script>\r\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","protected":false},"excerpt":{"rendered":"<p>Carrusel Full Width AZUL VIOLETA VERDE RECEPCI\u00d3N HALL pasillo CONTACTANOS PASILLOAZULVIOLETAVERDERECEPCI\u00d3NHALL CARACTER\u00cdSTICAS Medidas 10m2 de largo 1.5 m2 de ancho detalles Luces LED RGB adaptables Alfombra incluye CAMAR\u00cdN \u2022 Sala de maquillaje \u2022 Cambiador \u2022 Camar\u00edn privado \u2022 Guardarropa SALA DE ESTAR \u2022 Espacio de recepci\u00f3n Cocina\/comedor \u2022 Heladera\/Microondas\/Pava el\u00e9ctrica. Sala de reuniones \u2022 TV [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":293,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-1463","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>Pasillo - Display<\/title>\n<meta name=\"description\" content=\"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual 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\/estudios\/pasillo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pasillo - Display\" \/>\n<meta property=\"og:description\" content=\"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual profesional.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/displayav.com\/en\/estudios\/pasillo\/\" \/>\n<meta property=\"og:site_name\" content=\"Display\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-19T13:33:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/\",\"url\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/\",\"name\":\"Pasillo - Display\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg\",\"datePublished\":\"2025-08-04T18:04:05+00:00\",\"dateModified\":\"2025-08-19T13:33:46+00:00\",\"description\":\"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual profesional.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/#primaryimage\",\"url\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg\",\"contentUrl\":\"https:\\\/\\\/displayav.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/pasillo\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/displayav.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Estudios\",\"item\":\"https:\\\/\\\/displayav.com\\\/estudios\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Pasillo\"}]},{\"@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":"Pasillo - Display","description":"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual 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\/estudios\/pasillo\/","og_locale":"en_US","og_type":"article","og_title":"Pasillo - Display","og_description":"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual profesional.","og_url":"https:\/\/displayav.com\/en\/estudios\/pasillo\/","og_site_name":"Display","article_modified_time":"2025-08-19T13:33:46+00:00","og_image":[{"url":"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/displayav.com\/estudios\/pasillo\/","url":"https:\/\/displayav.com\/estudios\/pasillo\/","name":"Pasillo - Display","isPartOf":{"@id":"https:\/\/displayav.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/displayav.com\/estudios\/pasillo\/#primaryimage"},"image":{"@id":"https:\/\/displayav.com\/estudios\/pasillo\/#primaryimage"},"thumbnailUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg","datePublished":"2025-08-04T18:04:05+00:00","dateModified":"2025-08-19T13:33:46+00:00","description":"Pasillo RGB en Buenos Aires: pasillo creativo con luces LED RGB, alfombra y camar\u00edn privado dentro de un espacio audiovisual profesional.","breadcrumb":{"@id":"https:\/\/displayav.com\/estudios\/pasillo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/displayav.com\/estudios\/pasillo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/displayav.com\/estudios\/pasillo\/#primaryimage","url":"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg","contentUrl":"https:\/\/displayav.com\/wp-content\/uploads\/2025\/08\/PORTADA-ESTUDIO-PASILLO-AZUL.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/displayav.com\/estudios\/pasillo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/displayav.com\/"},{"@type":"ListItem","position":2,"name":"Estudios","item":"https:\/\/displayav.com\/estudios\/"},{"@type":"ListItem","position":3,"name":"Pasillo"}]},{"@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\/1463","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=1463"}],"version-history":[{"count":0,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/1463\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/pages\/293"}],"wp:attachment":[{"href":"https:\/\/displayav.com\/en\/wp-json\/wp\/v2\/media?parent=1463"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}