{"id":5973,"date":"2026-03-30T22:22:51","date_gmt":"2026-03-31T03:22:51","guid":{"rendered":"https:\/\/wiseagents.com\/?page_id=5973"},"modified":"2026-04-01T23:44:53","modified_gmt":"2026-04-02T04:44:53","slug":"industries-es","status":"publish","type":"page","link":"https:\/\/wiseagents.com\/es\/industries-es\/","title":{"rendered":"Industries \u2013 Espa\u00f1ol"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"5973\" class=\"elementor elementor-5973\" 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-8d08173 e-flex e-con-boxed jltma-glass-effect-no wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"8d08173\" 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-016682e jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"016682e\" 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  <title>Voiceflow with CAPTCHA Click Trap<\/title>\r\n  <script src=\"https:\/\/www.google.com\/recaptcha\/api.js?render=explicit\" async defer><\/script>\r\n  <style>\r\n    \/* CAPTCHA Modal *\/\r\n    #captcha-modal {\r\n      display: none;\r\n      position: fixed;\r\n      top: 0; left: 0;\r\n      width: 100vw; height: 100vh;\r\n      background: rgba(0, 0, 0, 0.5);\r\n      justify-content: center;\r\n      align-items: center;\r\n      z-index: 9999;\r\n    }\r\n\r\n    #captcha-content {\r\n      background: white;\r\n      padding: 30px;\r\n      border-radius: 10px;\r\n      text-align: center;\r\n      max-width: 400px;\r\n      width: 90%;\r\n    }\r\n\r\n    #captcha-content h3 {\r\n      margin-bottom: 20px;\r\n      font-family: sans-serif;\r\n    }\r\n\r\n    \/* Bottom-right invisible overlay to intercept chat bubble clicks *\/\r\n    #chat-captcha-overlay {\r\n      position: fixed;\r\n      bottom: 0;\r\n      right: 0;\r\n      width: 100px;\r\n      height: 100px;\r\n  z-index: 9999999999; \/* Super high to sit over Voiceflow chat bubble *\/\r\n      cursor: pointer;\r\n      background: transparent;\r\n    }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n\r\n<!-- CAPTCHA Modal -->\r\n<div id=\"captcha-modal\">\r\n  <div id=\"captcha-content\">\r\n    <h3>Please verify you're human<\/h3>\r\n    <div id=\"captcha-container\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n\r\n<!-- Invisible overlay in bottom-right corner -->\r\n<div id=\"chat-captcha-overlay\" onclick=\"handleChatClick()\"><\/div>\r\n\r\n<script>\r\n  let captchaVerified = false;\r\n  let voiceflowLoaded = false;\r\n  let chatAlreadyOpened = false;\r\n\r\n  function onCaptchaVerified(token) {\r\n    document.getElementById('captcha-modal').style.display = 'none';\r\n    captchaVerified = true;\r\n\r\n    \/\/ Load Voiceflow & open chat\r\n    loadVoiceflow(() => {\r\n      if (!chatAlreadyOpened) {\r\n        window.voiceflow.chat.open();\r\n        chatAlreadyOpened = true;\r\n      }\r\n\r\n      \/\/ Remove overlay so future clicks go directly to the bubble\r\n      const overlay = document.getElementById('chat-captcha-overlay');\r\n      if (overlay) overlay.remove();\r\n    });\r\n  }\r\n\r\n  function showCaptcha() {\r\n    const modal = document.getElementById('captcha-modal');\r\n    modal.style.display = 'flex';\r\n\r\n    if (!window.captchaRendered) {\r\n      grecaptcha.render('captcha-container', {\r\n        'sitekey': '6LfFK2IrAAAAAMgNHbwOqwJXrYVtvJtq1QpI7hcZ', \/\/ your site key\r\n        'callback': onCaptchaVerified\r\n      });\r\n      window.captchaRendered = true;\r\n    }\r\n  }\r\n\r\n  function handleChatClick() {\r\n    if (captchaVerified) {\r\n      if (!chatAlreadyOpened && window.voiceflow?.chat?.open) {\r\n        window.voiceflow.chat.open();\r\n        chatAlreadyOpened = true;\r\n      }\r\n      document.getElementById('chat-captcha-overlay').remove();\r\n    } else {\r\n      showCaptcha();\r\n    }\r\n  }\r\n\r\n  function loadVoiceflow(callback) {\r\n    if (voiceflowLoaded) return callback();\r\n\r\n    const script = document.createElement('script');\r\n    script.type = 'text\/javascript';\r\n    script.src = 'https:\/\/cdn.voiceflow.com\/widget-next\/bundle.mjs';\r\n    script.onload = () => {\r\n      window.voiceflow.chat.load({\r\n        verify: { projectID: '682287ae7a67b7ee533b715a' },\r\n        url: 'https:\/\/general-runtime.voiceflow.com',\r\n        versionID: 'production',\r\n        voice: { url: 'https:\/\/runtime-api.voiceflow.com' }\r\n      });\r\n      voiceflowLoaded = true;\r\n      callback();\r\n    };\r\n    document.head.appendChild(script);\r\n  }\r\n\r\n  \/\/ Load Voiceflow script right away, but don\u2019t open chat\r\n  window.addEventListener('DOMContentLoaded', () => {\r\n    loadVoiceflow(() => {});\r\n  });\r\n<\/script>\r\n\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 class=\"elementor-element elementor-element-d7169ae jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"d7169ae\" 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<!-- Industries Section -->\r\n<div class=\"industries-section\">\r\n  <h2 class=\"industries-title\">\r\n    Las <span class=\"gradient-text\">Industrias<\/span><br>\r\n  <\/h2>\r\n  <h3 class='industries-subtitle'>Que Ayudamos a Transformar M\u00e1s<\/h3>\r\n  <p class=\"industries-subtext\">\r\n    Creamos soluciones personalizadas de IA y automatizaci\u00f3n para empresas din\u00e1micas\u2014donde haya complejidad que simplificar o ingresos que desbloquear. As\u00ed es como apoyamos a diferentes industrias con agentes de IA personalizados.\r\n  <\/p>\r\n<\/div>\r\n\r\n<style>\r\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Francois+One&display=swap');\r\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Biryani:wght@300&display=swap');\r\n\r\n.industries-section {\r\n  max-width: 1320px;\r\n  margin: 50px auto;\r\n  padding: 0 2px;\r\n  text-align: center;\r\n}\r\n\r\n.industries-title {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 80px;\r\n  color: #0C2233;\r\n  line-height: 1.2;\r\n}\r\n\r\n.gradient-text {\r\n  background: linear-gradient(-83deg, #3BD679, #205B89);\r\n  -webkit-background-clip: text;\r\n  -webkit-text-fill-color: transparent;\r\n  display: inline-block;\r\n}\r\n\r\n.industries-subtext {\r\n  font-family: 'Biryani', sans-serif !important;\r\n  font-size: 20px;\r\n  font-weight: 400;\r\n  color: #0C2233;\r\n  margin-top: 24px;\r\n  margin-left: auto;\r\n  margin-right: auto;\r\n  line-height: 1.6;\r\n}\r\n\r\n.industries-subtitle {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 60px;\r\n  color: #0C2233;\r\n  line-height: 1.2;\r\n}\r\n\r\n@media (max-width: 768px) {\r\n\r\n.industries-section {\r\n  max-width: 1320px;\r\n  margin: 20px auto;\r\n  padding: 0 2px;\r\n  text-align: center;\r\n}\r\n\r\n.industries-title {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 50px;\r\n  color: #0C2233;\r\n  line-height: 1.2;\r\n}\r\n\r\n.industries-subtext {\r\n  font-family: 'Biryani', sans-serif !important;\r\n  font-size: 15px;\r\n  font-weight: 400;\r\n  color: #0C2233;\r\n  margin-top: 24px;\r\n  margin-left: auto;\r\n  margin-right: auto;\r\n  line-height: 1.6;\r\n}\r\n\r\n.industries-subtitle {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 25px;\r\n  color: #0C2233;\r\n  line-height: 1.2;\r\n}\r\n\r\n}\r\n<\/style>\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-0e02db5 e-con-full e-flex jltma-glass-effect-no wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"0e02db5\" 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-a927551 jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"a927551\" 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<!-- Industries Wrapper Section (Centers Entire Block) -->\r\n<div class=\"industries-outer-wrapper\">\r\n  <div class=\"industries-grid-section\">\r\n\r\n    <!-- Row 1: Manufacturing -->\r\n    <div class=\"industry-grid-row\">\r\n      <div class=\"industry-grid-image\">\r\n        <img decoding=\"async\" src=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png\" alt=\"Manufactura\" \/>\r\n      <\/div>\r\n      <div class=\"industry-grid-text\">\r\n        <h2 class=\"industry-title gradient-text\">Manufactura<\/h2>\r\n        <p class=\"industry-subheading\">Procesos complejos y manuales pueden ralentizarte<\/p>\r\n        <div class=\"industry-description\">\r\n          <p><strong>Nuestros agentes de IA pueden automatizar procesos clave de manufactura como:<\/strong><\/p>\r\n          <ul>\r\n            <li>Gesti\u00f3n de inventario<\/li>\r\n            <li>Programaci\u00f3n de producci\u00f3n<\/li>\r\n            <li>Procesamiento de pedidos<\/li>\r\n            <li>Control de calidad<\/li>\r\n          <\/ul>\r\n          <p><strong>Tambi\u00e9n podemos apoyar mantenimiento predictivo, gesti\u00f3n de la cadena de suministro y seguimiento del rendimiento en tiempo real.<\/strong><\/p>\r\n          <p>Con automatizaci\u00f3n adaptada a tus operaciones, ayudamos a lograr flujos de trabajo m\u00e1s fluidos y ciclos de producci\u00f3n m\u00e1s r\u00e1pidos.<\/p>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n\r\n    <!-- Row 2: B2B Commerce -->\r\n    <div class=\"industry-grid-row reverse\">\r\n      <div class=\"industry-grid-image\">\r\n        <img decoding=\"async\" src=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/b2b-commerce.png\" alt=\"Comercio B2B\" \/>\r\n      <\/div>\r\n      <div class=\"industry-grid-text\">\r\n        <h2 class=\"industry-title gradient-text\">Comercio B2B<\/h2>\r\n        <p class=\"industry-subheading\">Las transacciones B2B requieren velocidad, precisi\u00f3n y escalabilidad.<\/p>\r\n        <div class=\"industry-description\">\r\n          <p><strong>Podemos dise\u00f1ar soluciones de IA personalizadas para automatizar procesos clave como:<\/strong><\/p>\r\n          <ul>\r\n            <li>Gesti\u00f3n de inventario<\/li>\r\n            <li>Adquisiciones<\/li>\r\n            <li>Procesamiento de pedidos<\/li>\r\n            <li>Facturaci\u00f3n<\/li>\r\n          <\/ul>\r\n          <p><strong>Tambi\u00e9n podemos apoyar confirmaci\u00f3n de entrega, selecci\u00f3n de pedidos en almac\u00e9n y gesti\u00f3n de devoluciones.<\/strong><\/p>\r\n          <p>Estamos aqu\u00ed para ayudarte a moverte m\u00e1s r\u00e1pido, reducir errores y ofrecer una experiencia m\u00e1s fluida en todo el ciclo de ventas B2B.<\/p>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Francois+One&family=Biryani:wght@400;700&display=swap');\r\n\r\n.industries-outer-wrapper {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  padding: 50px 20px;\r\n  box-sizing: border-box;\r\n}\r\n\r\n.industries-grid-section {\r\n  max-width: 1320px;\r\n  margin: auto;\r\n  padding: 0 10px;\r\n}\r\n\r\n.industry-grid-row {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  gap: 0px;\r\n  margin-bottom: 40px;\r\n  flex-wrap: wrap;\r\n}\r\n\r\n.industry-grid-row.reverse {\r\n  flex-direction: row-reverse;\r\n}\r\n\r\n.industry-grid-image img {\r\n  width: 100%;\r\n  max-width: 530px;\r\n  border-radius: 12px;\r\n  margin-top: -60px;\r\n}\r\n\r\n.industry-grid-text {\r\n  flex: 1 1 400px;\r\n  max-width: 530px;\r\n  display: flex;\r\n  flex-direction: column;\r\n  justify-content: flex-end;\r\n  text-align: left;\r\n}\r\n\r\n\/* --- Updated Professional & Bold Text Styling --- *\/\r\n.industry-title {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 80px;\r\n  margin-bottom: 12px;\r\n  font-weight: 900; \/* stronger emphasis *\/\r\n  letter-spacing: 1px; \/* slight spacing for clarity *\/\r\n}\r\n\r\n.gradient-text {\r\n  background: linear-gradient(-83deg, #3BD679, #205B89);\r\n  -webkit-background-clip: text;\r\n  -webkit-text-fill-color: transparent;\r\n  display: inline-block;\r\n}\r\n\r\n.industry-subheading {\r\n  font-family: 'Francois One', sans-serif;\r\n  font-size: 30px;\r\n  color: #0C2233;\r\n  margin-bottom: 20px;\r\n  font-weight: 700; \/* bolder subheading for stronger impact *\/\r\n}\r\n\r\n.industry-description {\r\n  font-family: 'Biryani', sans-serif !important;\r\n  font-weight: 500; \/* slightly bolder for readability *\/\r\n  font-size: 18px;\r\n  line-height: 1.8; \/* more spacing for clarity *\/\r\n  color: #0C2233;\r\n  text-align: left;\r\n}\r\n\r\n.industry-description p {\r\n  margin-bottom: 12px;\r\n}\r\n\r\n.industry-description p strong {\r\n  font-weight: 700;\r\n  color: #205B89; \/* accent color for emphasis *\/\r\n}\r\n\r\n.industry-description ul {\r\n  padding-left: 20px;\r\n  margin: 12px 0;\r\n}\r\n\r\n.industry-description ul li {\r\n  list-style-type: disc;\r\n  margin-bottom: 10px;\r\n  font-weight: 500; \/* makes list items stand out *\/\r\n  line-height: 1.6;\r\n  color: #0C2233;\r\n}\r\n\r\n\/* --- Responsive Styling --- *\/\r\n@media (max-width: 768px) {\r\n  .industry-grid-row {\r\n    flex-direction: column !important;\r\n    align-items: center;\r\n    text-align: left;\r\n  }\r\n\r\n  .industry-grid-image {\r\n    text-align: center;\r\n    margin-bottom: 20px;\r\n  }\r\n\r\n  .industry-grid-image img {\r\n    max-width: 100%;\r\n    height: auto;\r\n    margin-top: 0;\r\n  }\r\n\r\n  .industry-grid-text {\r\n    max-width: 100%;\r\n    padding: 0 15px;\r\n    align-items: flex-start;\r\n    text-align: left;\r\n  }\r\n\r\n  .industry-title {\r\n    font-size: 36px;\r\n    font-weight: 900;\r\n    letter-spacing: 0.5px;\r\n  }\r\n\r\n  .industry-subheading {\r\n    font-size: 20px;\r\n    font-weight: 700;\r\n  }\r\n\r\n  .industry-description {\r\n    font-size: 16px;\r\n    font-weight: 500;\r\n    line-height: 1.7;\r\n  }\r\n\r\n  .industry-description ul li {\r\n    font-size: 16px;\r\n  }\r\n}\r\n<\/style>\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-a5b5e1f e-con-full e-flex jltma-glass-effect-no wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"a5b5e1f\" 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-5477300 jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"5477300\" 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<!-- Banner with Background Image and Text -->\r\n<div class=\"color-line-banner\">\r\n  <div class=\"banner-text\">\r\n    Sin conocimientos de programaci\u00f3n ni t\u00e9cnicos.<br \/>\r\n    Nosotros construimos todo para ti.\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Francois+One&display=swap');\r\n\r\n  .color-line-banner {\r\n    background-image: url('https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/color-line.png');\r\n    background-size: cover;\r\n    background-position: center;\r\n    background-repeat: no-repeat;\r\n    padding: 100px 20px;\r\n    text-align: center;\r\n    display: flex;\r\n    width:100%;\r\n    align-items: center;\r\n    justify-content: center;\r\n    box-shadow: none !important;\r\n    border: none;\r\n  }\r\n\r\n  .banner-text {\r\n    font-family: 'Francois One', sans-serif;\r\n    font-size: 48px;\r\n    color: white;\r\n    line-height: 1.4;\r\n    margin: 0;\r\n  }\r\n\r\n  @media (max-width: 768px) {\r\n    .banner-text {\r\n      font-size: 32px;\r\n    }\r\n  }\r\n<\/style>\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-0966338 e-con-full e-flex jltma-glass-effect-no wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"0966338\" 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-861b538 jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"861b538\" 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<!-- Industries Wrapper Section (Centers Entire Block) -->\r\n<div class=\"industries-outer-wrapper\">\r\n  <div class=\"industries-grid-section\">\r\n\r\n    <!-- Row 1: Distribution (Image Left) -->\r\n    <div class=\"industry-grid-row\">\r\n      <div class=\"industry-grid-image\">\r\n        <img decoding=\"async\" src=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/distribution-agent.png\" alt=\"Distribuci\u00f3n\" \/>\r\n      <\/div>\r\n      <div class=\"industry-grid-text\">\r\n        <h2 class=\"industry-title gradient-text\">Distribuci\u00f3n<\/h2>\r\n        <p class=\"industry-subheading\">Tus m\u00e1rgenes dependen de la rapidez y precisi\u00f3n.<\/p>\r\n        <div class=\"industry-description\">\r\n          <p>Tus compa\u00f1eros AI de Wise te ayudar\u00e1n a mantener la ventaja\u2014automatizando tareas como <strong>gesti\u00f3n de inventario, compras y procesamiento de pedidos.<\/strong><\/p>\r\n          <p><strong>Tambi\u00e9n podemos apoyar en:<\/strong><\/p>\r\n          <ul>\r\n            <li>Facturaci\u00f3n y cobros<\/li>\r\n            <li>Confirmaci\u00f3n de entregas<\/li>\r\n            <li>Notificaciones a clientes<\/li>\r\n            <li>Gesti\u00f3n de devoluciones<\/li>\r\n          <\/ul>\r\n          <p>Ya sea que gestiones ciclos de reposici\u00f3n complejos o optimices operaciones de almac\u00e9n, nuestros agentes est\u00e1n dise\u00f1ados para ayudarte a moverte m\u00e1s r\u00e1pido y operar de manera m\u00e1s eficiente.<\/p>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n\r\n    <!-- Row 2: Logistics (Image Right) -->\r\n    <div class=\"industry-grid-row reverse\">\r\n      <div class=\"industry-grid-image\">\r\n        <img decoding=\"async\" src=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Lostics-aget.png\" alt=\"Log\u00edstica\" \/>\r\n      <\/div>\r\n      <div class=\"industry-grid-text\">\r\n        <h2 class=\"industry-title gradient-text\">Log\u00edstica<\/h2>\r\n        <p class=\"industry-subheading\">En log\u00edstica, la visibilidad y coordinaci\u00f3n son cruciales.<\/p>\r\n        <div class=\"industry-description\">\r\n          <p>Ya sea <strong>seguimiento de env\u00edos, actualizaci\u00f3n a clientes o gesti\u00f3n de solicitudes de alto volumen,<\/strong> nuestros agentes AI pueden automatizar puntos clave en la cadena log\u00edstica\u2014reduciendo retrasos y mejorando la comunicaci\u00f3n a gran escala.<\/p>\r\n          <p><strong>Oportunidades adicionales incluyen automatizar:<\/strong><\/p>\r\n          <ul>\r\n            <li>Despacho de conductores<\/li>\r\n            <li>Documentaci\u00f3n aduanera<\/li>\r\n            <li>Resoluci\u00f3n de incidentes<\/li>\r\n            <li>Notificaciones de ETA<\/li>\r\n          <\/ul>\r\n          <p>Todo mientras se garantiza transparencia desde el muelle hasta la puerta del cliente.<\/p>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n\r\n    <!-- Row 3: Real Estate (Image Left) -->\r\n    <div class=\"industry-grid-row\">\r\n      <div class=\"industry-grid-image\">\r\n        <img decoding=\"async\" src=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Real-state-agent.png\" alt=\"Bienes Ra\u00edces\" \/>\r\n      <\/div>\r\n      <div class=\"industry-grid-text\">\r\n        <h2 class=\"industry-title gradient-text\">Bienes Ra\u00edces<\/h2>\r\n        <p class=\"industry-subheading\">Gestionar prospectos y papeleo de manera eficiente puede hacer la diferencia en un cierre.<\/p>\r\n        <div class=\"industry-description\">\r\n          <p>Convierte m\u00e1s prospectos, agenda m\u00e1s visitas y responde m\u00e1s r\u00e1pido. Nuestros agentes <strong>realizan seguimiento inmediato de intereses entrantes, califican prospectos e incluso gestionan la agenda.<\/strong><\/p>\r\n          <p><strong>Tambi\u00e9n podemos:<\/strong><\/p>\r\n          <ul>\r\n            <li>Automatizar el procesamiento de solicitudes de alquiler<\/li>\r\n            <li>Rutas de agentes<\/li>\r\n            <li>Seguimiento de leads fr\u00edos<\/li>\r\n            <li>Manejo de documentos<\/li>\r\n          <\/ul>\r\n          <p>Haciendo que tu back office sea tan \u00e1gil como tu equipo de primera l\u00ednea.<\/p>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n\/* Mantener todo el CSS original sin cambios *\/\r\n.industries-outer-wrapper {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  padding: 50px 20px;\r\n  box-sizing: border-box;\r\n}\r\n\r\n.industries-grid-section {\r\n  max-width: 1320px;\r\n  margin: auto;\r\n  padding: 0 10px;\r\n}\r\n\r\n.industry-grid-row {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  gap: 0px;\r\n  margin-bottom: 40px;\r\n  flex-wrap: wrap;\r\n}\r\n\r\n.industry-grid-row.reverse {\r\n  flex-direction: row-reverse;\r\n}\r\n\r\n.industry-grid-image img {\r\n  width: 100%;\r\n  max-width: 530px;\r\n  border-radius: 12px;\r\n  margin-top: -60px;\r\n}\r\n\r\n.industry-grid-text {\r\n  flex: 1 1 400px;\r\n  max-width: 530px;\r\n  display: flex;\r\n  flex-direction: column;\r\n  justify-content: flex-end; \r\n}\r\n\r\n\/* --- Updated Professional & Bold Text Styling --- *\/\r\n.industry-title {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 80px;\r\n  margin-bottom: 12px;\r\n  font-weight: 900;\r\n  letter-spacing: 1px;\r\n}\r\n\r\n.gradient-text {\r\n  background: linear-gradient(-83deg, #3BD679, #205B89);\r\n  -webkit-background-clip: text;\r\n  -webkit-text-fill-color: transparent;\r\n  display: inline-block;\r\n}\r\n\r\n.industry-subheading {\r\n  font-family: 'Francois One', sans-serif;\r\n  font-size: 30px;\r\n  color: #0C2233;\r\n  margin-bottom: 20px;\r\n  font-weight: 700;\r\n}\r\n\r\n.industry-description {\r\n  font-family: 'Biryani', sans-serif!important;\r\n  font-weight: 500;\r\n  font-size: 18px;\r\n  line-height: 1.8;\r\n  color: #0C2233;\r\n}\r\n\r\n.industry-description p {\r\n  margin-bottom: 12px;\r\n}\r\n\r\n.industry-description p strong {\r\n  font-weight: 700;\r\n  color: #205B89;\r\n}\r\n\r\n.industry-description ul {\r\n  padding-left: 20px;\r\n  margin: 12px 0;\r\n}\r\n\r\n.industry-description ul li {\r\n  list-style-type: disc;\r\n  margin-bottom: 10px;\r\n  font-weight: 500;\r\n  line-height: 1.6;\r\n  color: #0C2233;\r\n}\r\n\r\n\/* --- Responsive Styling --- *\/\r\n@media (max-width: 768px) {\r\n  .industry-grid-row,\r\n  .industry-grid-row.reverse {\r\n    flex-direction: column !important;\r\n    align-items: center;\r\n    text-align: left;\r\n  }\r\n\r\n  .industry-grid-text {\r\n    order: 1;\r\n    max-width: 100%;\r\n    padding: 0 15px;\r\n  }\r\n\r\n  .industry-grid-image {\r\n    order: 2;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: center;\r\n    margin-top: 30px;\r\n  }\r\n\r\n  .industry-grid-image img {\r\n    max-width: 100%;\r\n    height: auto;\r\n    display: block;\r\n  }\r\n\r\n  .industry-title {\r\n    font-size: 40px;\r\n    font-weight: 900;\r\n    letter-spacing: 0.5px;\r\n  }\r\n\r\n  .industry-subheading {\r\n    font-size: 20px;\r\n    font-weight: 700;\r\n  }\r\n\r\n  .industry-description {\r\n    font-size: 16px;\r\n    font-weight: 500;\r\n    line-height: 1.7;\r\n  }\r\n\r\n  .industry-description ul li {\r\n    font-size: 16px;\r\n  }\r\n}\r\n<\/style>\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-1345e51 e-con-full e-flex jltma-glass-effect-no wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"1345e51\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5e18c0 jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"a5e18c0\" 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<!-- Contact CTA Section -->\r\n<div class=\"cta-consulting-container\">\r\n  <h2 class=\"cta-title\">\u00bfPero Importa la Industria?<\/h2>\r\n\r\n  <p class=\"cta-subtext-industry\">\r\n    Si tu negocio depende de flujos de trabajo o tareas repetibles\u2014podemos ayudarte. Los Wise Agents no son bots est\u00e1ndar; son una fuerza laboral AI personalizada dise\u00f1ada seg\u00fan tus necesidades espec\u00edficas.\r\n  <\/p>\r\n\r\n  <p class=\"cta-extra-text-industry\">\r\n    Agenda una llamada de consultor\u00eda y hablemos de c\u00f3mo<br> podemos hacer tu vida m\u00e1s sencilla\r\n  <\/p>\r\n\r\n  <!-- MODERN CTA BUTTON -->\r\n  <a href=\"https:\/\/wiseagents.com\/es\/contact-us-es\/\" class=\"platform-login-button\">\r\n    <span class=\"platform-button-text\">Agendar Consulta Gratuita<\/span>\r\n    <span class=\"platform-icon-box\">\r\n      <svg class=\"platform-person-icon\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\">\r\n        <path d=\"M5 12h14M13 5l7 7-7 7\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\r\n      <\/svg>\r\n    <\/span>\r\n  <\/a>\r\n<\/div>\r\n\r\n<style>\r\n\/* Mantener todo el CSS original sin cambios *\/\r\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Francois+One&display=swap');\r\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Biryani:wght@300;600&display=swap');\r\n\r\n\/* SECTION *\/\r\n.cta-consulting-container {\r\n  text-align: center;\r\n  padding: 80px 20px;\r\n  color: white;\r\n}\r\n\r\n\/* TITLE *\/\r\n.cta-title {\r\n  font-family: 'Francois One', sans-serif !important;\r\n  font-size: 60px;\r\n  margin-bottom: 20px;\r\n}\r\n\r\n\/* SUBTEXT *\/\r\n.cta-subtext-industry {\r\n  font-family: 'Biryani', sans-serif !important;\r\n  font-size: 18px;\r\n  font-weight: 300;\r\n  margin-bottom: 20px;\r\n  max-width: 1000px;\r\n  margin-left: auto;\r\n  margin-right: auto;\r\n  color: white;\r\n}\r\n\r\n\/* EXTRA TEXT *\/\r\n.cta-extra-text-industry {\r\n  font-family: 'Francois One', sans-serif;\r\n  font-size: 30px;\r\n  margin-bottom: 40px;\r\n  color: white;\r\n}\r\n\r\n\/* ===== MODERN CTA BUTTON ===== *\/\r\n.platform-login-button {\r\n  display: inline-flex;\r\n  align-items: center;\r\n  gap: 12px;\r\n  background: linear-gradient(135deg, #3BD679, #0ACF83);\r\n  color: #0C2233;\r\n  font-family: 'Francois One', sans-serif;\r\n  font-size: 18px;\r\n  padding: 14px 28px;\r\n  border-radius: 10px;\r\n  text-decoration: none !important;\r\n  white-space: nowrap;\r\n  transition: all 0.25s ease;\r\n  cursor: pointer;\r\n  justify-content: center;\r\n  border: 1px solid transparent;\r\n  box-shadow: 0 10px 25px rgba(59, 214, 121, 0.35);\r\n}\r\n\r\n\/* TEXT *\/\r\n.platform-button-text {\r\n  text-decoration: none !important;\r\n}\r\n\r\n\/* ICON BOX *\/\r\n.platform-icon-box {\r\n  background-color: #0C2233;\r\n  padding: 6px;\r\n  border-radius: 6px;\r\n  display: inline-flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  transition: all 0.25s ease;\r\n}\r\n\r\n\/* ICON *\/\r\n.platform-person-icon {\r\n  width: 18px;\r\n  height: 18px;\r\n  fill: none;\r\n  stroke: #ffffff;\r\n  stroke-width: 2;\r\n  transition: all 0.25s ease;\r\n}\r\n\r\n\/* HOVER *\/\r\n.platform-login-button:hover {\r\n  background: #0C2233;\r\n  color: #ffffff;\r\n  transform: translateY(-3px);\r\n  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);\r\n  border: 1px solid #ffffff;\r\n}\r\n\r\n.platform-login-button:hover .platform-icon-box {\r\n  background-color: #3BD679;\r\n}\r\n\r\n.platform-login-button:hover .platform-person-icon {\r\n  stroke: #0C2233;\r\n}\r\n\r\n\/* MOBILE *\/\r\n@media (max-width: 768px) {\r\n\r\n  .cta-consulting-container {\r\n    padding: 60px 20px;\r\n  }\r\n\r\n  .cta-title {\r\n    font-size: 40px;\r\n  }\r\n\r\n  .cta-subtext-industry {\r\n    font-size: 15px;\r\n  }\r\n\r\n  .cta-extra-text-industry {\r\n    font-size: 20px;\r\n  }\r\n\r\n  .platform-login-button {\r\n    font-size: 15px;\r\n    padding: 12px 22px;\r\n  }\r\n}\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Voiceflow with CAPTCHA Click Trap Please verify you&#8217;re human Las Industrias Que Ayudamos a Transformar M\u00e1s Creamos soluciones personalizadas de IA y automatizaci\u00f3n para empresas din\u00e1micas\u2014donde haya complejidad que simplificar o ingresos que desbloquear. As\u00ed es como apoyamos a diferentes industrias con agentes de IA personalizados. Manufactura Procesos complejos y manuales pueden ralentizarte Nuestros agentes de IA pueden automatizar procesos clave de manufactura como: Gesti\u00f3n de inventario Programaci\u00f3n de producci\u00f3n Procesamiento de pedidos Control de calidad Tambi\u00e9n podemos apoyar mantenimiento predictivo, gesti\u00f3n de la cadena de suministro y seguimiento del rendimiento en tiempo real. Con automatizaci\u00f3n adaptada a tus operaciones, ayudamos a lograr flujos de trabajo m\u00e1s fluidos y ciclos de producci\u00f3n m\u00e1s r\u00e1pidos. Comercio B2B Las transacciones B2B requieren velocidad, precisi\u00f3n y escalabilidad. Podemos dise\u00f1ar soluciones de IA personalizadas para automatizar procesos clave como: Gesti\u00f3n de inventario Adquisiciones Procesamiento de pedidos Facturaci\u00f3n Tambi\u00e9n podemos apoyar confirmaci\u00f3n de entrega, selecci\u00f3n de pedidos en almac\u00e9n y gesti\u00f3n de devoluciones. Estamos aqu\u00ed para ayudarte a moverte m\u00e1s r\u00e1pido, reducir errores y ofrecer una experiencia m\u00e1s fluida en todo el ciclo de ventas B2B. Sin conocimientos de programaci\u00f3n ni t\u00e9cnicos. Nosotros construimos todo para ti. Distribuci\u00f3n Tus m\u00e1rgenes dependen de la rapidez y precisi\u00f3n. Tus compa\u00f1eros AI de Wise te ayudar\u00e1n a mantener la ventaja\u2014automatizando tareas como gesti\u00f3n de inventario, compras y procesamiento de pedidos. Tambi\u00e9n podemos apoyar en: Facturaci\u00f3n y cobros Confirmaci\u00f3n de entregas Notificaciones a clientes Gesti\u00f3n de devoluciones Ya sea que gestiones ciclos de reposici\u00f3n complejos o optimices operaciones de almac\u00e9n, nuestros agentes est\u00e1n dise\u00f1ados para ayudarte a moverte m\u00e1s r\u00e1pido y operar de manera m\u00e1s eficiente. Log\u00edstica En log\u00edstica, la visibilidad y coordinaci\u00f3n son cruciales. Ya sea seguimiento de env\u00edos, actualizaci\u00f3n a clientes o gesti\u00f3n de solicitudes de alto volumen, nuestros agentes AI pueden automatizar puntos clave en la cadena log\u00edstica\u2014reduciendo retrasos y mejorando la comunicaci\u00f3n a gran escala. Oportunidades adicionales incluyen automatizar: Despacho de conductores Documentaci\u00f3n aduanera Resoluci\u00f3n de incidentes Notificaciones de ETA Todo mientras se garantiza transparencia desde el muelle hasta la puerta del cliente. Bienes Ra\u00edces Gestionar prospectos y papeleo de manera eficiente puede hacer la diferencia en un cierre. Convierte m\u00e1s prospectos, agenda m\u00e1s visitas y responde m\u00e1s r\u00e1pido. Nuestros agentes realizan seguimiento inmediato de intereses entrantes, califican prospectos e incluso gestionan la agenda. Tambi\u00e9n podemos: Automatizar el procesamiento de solicitudes de alquiler Rutas de agentes Seguimiento de leads fr\u00edos Manejo de documentos Haciendo que tu back office sea tan \u00e1gil como tu equipo de primera l\u00ednea. \u00bfPero Importa la Industria? Si tu negocio depende de flujos de trabajo o tareas repetibles\u2014podemos ayudarte. Los Wise Agents no son bots est\u00e1ndar; son una fuerza laboral AI personalizada dise\u00f1ada seg\u00fan tus necesidades espec\u00edficas. Agenda una llamada de consultor\u00eda y hablemos de c\u00f3mo podemos hacer tu vida m\u00e1s sencilla Agendar Consulta Gratuita<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-5973","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Industries \u2013 Espa\u00f1ol - Wise Agents<\/title>\n<meta name=\"description\" content=\"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wiseagents.com\/es\/industries-es\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Industries \u2013 Espa\u00f1ol - Wise Agents\" \/>\n<meta property=\"og:description\" content=\"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wiseagents.com\/es\/industries-es\/\" \/>\n<meta property=\"og:site_name\" content=\"Wise Agents\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-02T04:44:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/\",\"url\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/\",\"name\":\"Industries \u2013 Espa\u00f1ol - Wise Agents\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wiseagents.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Manufacturing-agent.png\",\"datePublished\":\"2026-03-31T03:22:51+00:00\",\"dateModified\":\"2026-04-02T04:44:53+00:00\",\"description\":\"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wiseagents.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Manufacturing-agent.png\",\"contentUrl\":\"https:\\\/\\\/wiseagents.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Manufacturing-agent.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/industries-es\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Industries \u2013 Espa\u00f1ol\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/\",\"name\":\"Wise Agents\",\"description\":\"Wise Agents\",\"publisher\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#organization\",\"name\":\"Wise Agents\",\"url\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wiseagents.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/cropped-BluePNG.png\",\"contentUrl\":\"https:\\\/\\\/wiseagents.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/cropped-BluePNG.png\",\"width\":512,\"height\":512,\"caption\":\"Wise Agents\"},\"image\":{\"@id\":\"https:\\\/\\\/wiseagents.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wisesales\",\"https:\\\/\\\/www.instagram.com\\\/wisesalesinc\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Industries \u2013 Espa\u00f1ol - Wise Agents","description":"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.","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:\/\/wiseagents.com\/es\/industries-es\/","og_locale":"es_ES","og_type":"article","og_title":"Industries \u2013 Espa\u00f1ol - Wise Agents","og_description":"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.","og_url":"https:\/\/wiseagents.com\/es\/industries-es\/","og_site_name":"Wise Agents","article_modified_time":"2026-04-02T04:44:53+00:00","og_image":[{"url":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wiseagents.com\/es\/industries-es\/","url":"https:\/\/wiseagents.com\/es\/industries-es\/","name":"Industries \u2013 Espa\u00f1ol - Wise Agents","isPartOf":{"@id":"https:\/\/wiseagents.com\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wiseagents.com\/es\/industries-es\/#primaryimage"},"image":{"@id":"https:\/\/wiseagents.com\/es\/industries-es\/#primaryimage"},"thumbnailUrl":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png","datePublished":"2026-03-31T03:22:51+00:00","dateModified":"2026-04-02T04:44:53+00:00","description":"Revolutionize your sales experience with our innovative integration of automation and technology, enhancing operations and human interaction.","breadcrumb":{"@id":"https:\/\/wiseagents.com\/es\/industries-es\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wiseagents.com\/es\/industries-es\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wiseagents.com\/es\/industries-es\/#primaryimage","url":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png","contentUrl":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/Manufacturing-agent.png"},{"@type":"BreadcrumbList","@id":"https:\/\/wiseagents.com\/es\/industries-es\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wiseagents.com\/es\/"},{"@type":"ListItem","position":2,"name":"Industries \u2013 Espa\u00f1ol"}]},{"@type":"WebSite","@id":"https:\/\/wiseagents.com\/es\/#website","url":"https:\/\/wiseagents.com\/es\/","name":"Wise Agents","description":"Wise Agents","publisher":{"@id":"https:\/\/wiseagents.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wiseagents.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/wiseagents.com\/es\/#organization","name":"Wise Agents","url":"https:\/\/wiseagents.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wiseagents.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/cropped-BluePNG.png","contentUrl":"https:\/\/wiseagents.com\/wp-content\/uploads\/2025\/05\/cropped-BluePNG.png","width":512,"height":512,"caption":"Wise Agents"},"image":{"@id":"https:\/\/wiseagents.com\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/wisesales","https:\/\/www.instagram.com\/wisesalesinc\/"]}]}},"_links":{"self":[{"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/pages\/5973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/comments?post=5973"}],"version-history":[{"count":12,"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/pages\/5973\/revisions"}],"predecessor-version":[{"id":6192,"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/pages\/5973\/revisions\/6192"}],"wp:attachment":[{"href":"https:\/\/wiseagents.com\/es\/wp-json\/wp\/v2\/media?parent=5973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}