templates/automatizaciones/index.html.twig line 1

Open in your IDE?
  1. {% extends 'new-base.html.twig' %}
  2. {% block contentCenter %}
  3. <style>
  4.     .page-title {
  5.         font-size: 3rem;
  6.         font-weight: 700;
  7.         background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  8.         -webkit-background-clip: text;
  9.         -webkit-text-fill-color: transparent;
  10.         background-clip: text;
  11.         position: relative;
  12.         display: inline-block;
  13.         letter-spacing: -1px;
  14.         margin-bottom: 20px;
  15.     }
  16.     
  17.     .page-title::after {
  18.         content: '';
  19.         position: absolute;
  20.         bottom: -15px;
  21.         left: 50%;
  22.         transform: translateX(-50%);
  23.         width: 120px;
  24.         height: 4px;
  25.         background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
  26.         border-radius: 2px;
  27.     }
  28.     
  29.     .title-wrapper {
  30.         position: relative;
  31.         display: inline-block;
  32.     }
  33.     
  34.     [data-bs-theme="dark"] .page-title {
  35.         background: linear-gradient(135deg, #8b9ef6 0%, #9d7ac4 100%);
  36.         -webkit-background-clip: text;
  37.         -webkit-text-fill-color: transparent;
  38.         background-clip: text;
  39.     }
  40.     
  41.     [data-bs-theme="dark"] .page-title::after {
  42.         background: linear-gradient(90deg, transparent, #8b9ef6, #9d7ac4, transparent);
  43.     }
  44.     .services-section {
  45.         padding: 100px 0 80px;
  46.         min-height: 100vh;
  47.     }
  48.     
  49.     .section-header {
  50.         text-align: center;
  51.         max-width: 900px;
  52.         margin: 0 auto 60px;
  53.     }
  54.     
  55.     .section-subtitle {
  56.         font-size: 1.25rem;
  57.         color: #666;
  58.         line-height: 1.6;
  59.         margin-bottom: 0;
  60.     }
  61.     
  62.     [data-bs-theme="dark"] .section-subtitle {
  63.         color: #b0b5c3;
  64.     }
  65.     
  66.     .cards {
  67.         display: grid;
  68.         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  69.         gap: 30px;
  70.         margin-bottom: 50px;
  71.     }
  72.     
  73.     .card {
  74.         background: #ffffff;
  75.         border-radius: 16px;
  76.         padding: 40px 30px;
  77.         box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  78.         transition: all 0.3s ease;
  79.         border: 1px solid #e8ecf4;
  80.     }
  81.     
  82.     [data-bs-theme="dark"] .card {
  83.         background: #1a1f2e;
  84.         border-color: #2d3748;
  85.         box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  86.     }
  87.     
  88.     .card:hover {
  89.         transform: translateY(-5px);
  90.         box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  91.     }
  92.     
  93.     [data-bs-theme="dark"] .card:hover {
  94.         box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
  95.     }
  96.     
  97.     .card-title {
  98.         font-size: 1.5rem;
  99.         font-weight: 600;
  100.         color: #1a1f2e;
  101.         margin-bottom: 15px;
  102.         display: flex;
  103.         align-items: center;
  104.         gap: 10px;
  105.     }
  106.     
  107.     [data-bs-theme="dark"] .card-title {
  108.         color: #ffffff;
  109.     }
  110.     
  111.     .card-title::before {
  112.         content: "✓";
  113.         display: inline-flex;
  114.         align-items: center;
  115.         justify-content: center;
  116.         width: 32px;
  117.         height: 32px;
  118.         background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  119.         color: white;
  120.         border-radius: 8px;
  121.         font-weight: bold;
  122.         flex-shrink: 0;
  123.     }
  124.     
  125.     .card-text {
  126.         font-size: 1rem;
  127.         color: #666;
  128.         line-height: 1.7;
  129.         margin: 0;
  130.     }
  131.     
  132.     [data-bs-theme="dark"] .card-text {
  133.         color: #b0b5c3;
  134.     }
  135.     
  136.     .section-cta {
  137.         text-align: center;
  138.         margin: 50px 0 30px;
  139.     }
  140.     
  141.     .btn-primary {
  142.         background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  143.         border: none;
  144.         padding: 16px 40px;
  145.         font-size: 1.125rem;
  146.         font-weight: 600;
  147.         border-radius: 12px;
  148.         transition: all 0.3s ease;
  149.         box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  150.     }
  151.     
  152.     .btn-primary:hover {
  153.         transform: translateY(-2px);
  154.         box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
  155.     }
  156.     
  157.     .seo-footnote {
  158.         text-align: center;
  159.         font-size: 0.875rem;
  160.         color: #999;
  161.         max-width: 800px;
  162.         margin: 40px auto 0;
  163.         padding: 20px;
  164.         background: #f8f9fa;
  165.         border-radius: 8px;
  166.         line-height: 1.6;
  167.     }
  168.     
  169.     [data-bs-theme="dark"] .seo-footnote {
  170.         background: #0f1419;
  171.         color: #7f8a9c;
  172.     }
  173.     
  174.     .seo-footnote strong {
  175.         color: #667eea;
  176.     }
  177.     
  178.     @media (max-width: 768px) {
  179.         .page-title {
  180.             font-size: 2.2rem;
  181.         }
  182.         
  183.         .services-section {
  184.             padding: 60px 0 40px;
  185.         }
  186.         
  187.         .section-header h2 {
  188.             font-size: 2rem;
  189.         }
  190.         
  191.         .section-subtitle {
  192.             font-size: 1.125rem;
  193.         }
  194.         
  195.         .cards {
  196.             grid-template-columns: 1fr;
  197.             gap: 20px;
  198.         }
  199.         
  200.         .card {
  201.             padding: 30px 20px;
  202.         }
  203.     }
  204. </style>
  205. <div class="container-fluid">
  206.     {# templates/partials/servicios_automatizaciones_agencia_ia.html.twig #}
  207.     <section id="automatizaciones-legales" class="services-section" aria-labelledby="automatizaciones-title" itemscope itemtype="https://schema.org/Service">
  208.         <div class="container">
  209.             <header class="section-header">
  210.                 <div class="text-center mb-4">
  211.                     <div class="title-wrapper">
  212.                         <h2 id="automatizaciones-title" class="page-title" itemprop="name">Automatizaciones legales a medida</h2>
  213.                     </div>
  214.                 </div>
  215.                 <p class="section-subtitle" itemprop="description">
  216.                     Automatizamos procesos legales para despachos y departamentos jurídicos: menos tareas repetitivas, más control de plazos y documentación.
  217.                 </p>
  218.             </header>
  219.             <div class="cards" role="list">
  220.                 <article class="card" role="listitem">
  221.                     <h3 class="card-title">Automatización de procesos jurídicos</h3>
  222.                     <p class="card-text">
  223.                         Digitalizamos y automatizamos flujos de trabajo legales: gestión de expedientes, documentación y tareas administrativas.
  224.                     </p>
  225.                 </article>
  226.                 <article class="card" role="listitem">
  227.                     <h3 class="card-title">Contratos y escritos en minutos</h3>
  228.                     <p class="card-text">
  229.                         Generación automática de contratos y escritos con plantillas inteligentes, consistencia documental y reducción de errores.
  230.                     </p>
  231.                 </article>
  232.                 <article class="card" role="listitem">
  233.                     <h3 class="card-title">Plazos, alertas e integraciones</h3>
  234.                     <p class="card-text">
  235.                         Control de plazos legales, recordatorios y automatizaciones conectadas con CRM/ERP y herramientas del despacho.
  236.                     </p>
  237.                 </article>
  238.             </div>
  239.             <p class="section-cta">
  240.                 <a href="{{ path('contacto') }}" class="btn btn-primary" title="Contactar para automatizaciones legales">
  241.                     Solicitar diagnóstico de procesos
  242.                 </a>
  243.             </p>
  244.             {# SEO/Legal: texto breve adicional para reforzar keywords sin “keyword stuffing” #}
  245.             <p class="seo-footnote">
  246.                 Soluciones de <strong>automatización legal</strong> para <strong>despachos de abogados</strong>, asesorías y equipos jurídicos:
  247.                 optimización operativa, trazabilidad y estandarización documental.
  248.             </p>
  249.             {# Schema.org extras #}
  250.             <meta itemprop="serviceType" content="Automatización de procesos legales" />
  251.             <meta itemprop="areaServed" content="España" />
  252.             <meta itemprop="provider" content="ProLegalTech" />
  253.         </div>
  254.     </section>
  255. </div>
  256. {% endblock %}