Pago-Facil

Soporte y Consultas

¿Cómo podemos ayudarte?

¿Tienes preguntas sobre la configuración de tu cuenta, la integración de pagos o el cumplimiento normativo? Ponte en contacto con nuestro equipo de soporte.

mail

Soporte por Correo

Para consultas generales, asistencia con la cuenta o colaboraciones comerciales, envíanos un correo electrónico.

[email protected] arrow_forward
  <div class="bg-white rounded-3xl border border-slate-100 shadow-xl p-8 hover:shadow-2xl transition-all duration-300">
    <div class="w-12 h-12 bg-blue-50 text-primary rounded-2xl flex items-center justify-center mb-6">
      <span class="material-symbols-outlined !text-2xl">corporate_fare</span>
    </div>
    <h3 class="text-xl font-bold text-slate-900 mb-2">Entidad Registrada</h3>
    <p class="text-slate-500 text-sm leading-relaxed mb-4">Pago-Facil es operado por Stratford Solutions, S.L., registrada y supervisada por el Banco de España (Licencia D950).</p>
    <div class="text-xs text-slate-400 space-y-1">
      <p><strong>Entidad:</strong> Stratford Solutions, S.L.</p>
      <p><strong>CIF:</strong> B70711668</p>
      <p><strong>Dirección:</strong> Doctor Benapres, número 36, 08870, Sitges, Barcelona, España</p>
    </div>
  </div>

  <div class="bg-white rounded-3xl border border-slate-100 shadow-xl p-8 hover:shadow-2xl transition-all duration-300">
    <div class="w-12 h-12 bg-blue-50 text-primary rounded-2xl flex items-center justify-center mb-6">
      <span class="material-symbols-outlined !text-2xl">schedule</span>
    </div>
    <h3 class="text-xl font-bold text-slate-900 mb-2">Horario de Atención</h3>
    <p class="text-slate-500 text-sm leading-relaxed">Nuestros equipos de cumplimiento y onboarding de clientes revisan las solicitudes durante el horario comercial europeo:</p>
    <p class="text-sm font-bold text-slate-800 mt-2">Lunes – Viernes: 9:00 AM – 6:00 PM CET</p>
  </div>
</div>

<!-- Contact Form Card -->
<div class="lg:col-span-7">
  <div class="bg-white rounded-[2rem] border border-slate-100 shadow-2xl p-8 md:p-10 relative overflow-hidden">
    <!-- Success State Overlay -->
    <div id="contact-success" class="absolute inset-0 bg-white z-10 flex flex-col items-center justify-center p-8 text-center opacity-0 pointer-events-none transition-all duration-500 transform translate-y-4">
      <div class="w-20 h-20 bg-green-50 text-green-500 rounded-full flex items-center justify-center mb-6 shadow-lg shadow-green-500/10">
        <span class="material-symbols-outlined !text-4xl">check_circle</span>
      </div>
      <h3 class="text-2xl font-black text-slate-900 mb-2">¡Mensaje Enviado!</h3>
      <p class="text-slate-500 max-w-md mx-auto mb-8">Gracias por ponerte en contacto. Nuestro equipo de soporte ha recibido tu consulta y te responderá en un plazo de 24 horas.</p>
      <button onclick="resetContactForm()" class="px-6 py-3 bg-slate-900 hover:bg-black text-white font-bold text-sm rounded-xl shadow-lg transition-all">Enviar otro mensaje</button>
    </div>

    <!-- Form content -->
    <form id="contact-form" onsubmit="handleContactSubmit(event)" class="space-y-6">
      <h2 class="text-2xl font-bold text-slate-900 mb-4 tracking-tight">Envíanos un mensaje</h2>
      
      <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
        <div>
          <label for="name" class="block text-xs font-bold text-slate-500 uppercase tracking-wider mb-2">Nombre Completo</label>
          <input type="text" id="name" required class="w-full px-4 py-3.5 bg-slate-50 border border-slate-200 rounded-xl text-slate-900 placeholder-slate-400 focus:outline-none focus:border-primary focus:bg-white transition-all text-sm" placeholder="Juan Pérez">
        </div>
        <div>
          <label for="email" class="block text-xs font-bold text-slate-500 uppercase tracking-wider mb-2">Correo Electrónico</label>
          <input type="email" id="email" required class="w-full px-4 py-3.5 bg-slate-50 border border-slate-200 rounded-xl text-slate-900 placeholder-slate-400 focus:outline-none focus:border-primary focus:bg-white transition-all text-sm" placeholder="[email protected]">
        </div>
      </div>

      <div>
        <label for="subject" class="block text-xs font-bold text-slate-500 uppercase tracking-wider mb-2">Asunto</label>
        <input type="text" id="subject" required class="w-full px-4 py-3.5 bg-slate-50 border border-slate-200 rounded-xl text-slate-900 placeholder-slate-400 focus:outline-none focus:border-primary focus:bg-white transition-all text-sm" placeholder="¿Cómo podemos ayudarte?">
      </div>

      <div>
        <label for="message" class="block text-xs font-bold text-slate-500 uppercase tracking-wider mb-2">Mensaje</label>
        <textarea id="message" rows="5" required class="w-full px-4 py-3.5 bg-slate-50 border border-slate-200 rounded-xl text-slate-900 placeholder-slate-400 focus:outline-none focus:border-primary focus:bg-white transition-all text-sm resize-none" placeholder="Escribe tu mensaje aquí..."></textarea>
      </div>

      <div class="flex items-start gap-3">
        <input type="checkbox" id="privacy-consent" required class="mt-1 rounded border-slate-300 text-primary focus:ring-primary">
        <label for="privacy-consent" class="text-xs text-slate-500 leading-normal">
          Doy mi consentimiento para que Pago-facil recopile y procese mis datos de acuerdo con la <a href="/es/privacy-policy/" class="text-primary hover:underline font-bold">Política de Privacidad</a>.
        </label>
      </div>

      <button type="submit" class="w-full py-4 bg-primary hover:bg-primary-dark text-white font-bold rounded-xl shadow-lg shadow-primary/20 transition-all flex items-center justify-center gap-2">
        <span>Enviar Mensaje</span>
        <span class="material-symbols-outlined !text-lg">send</span>
      </button>
    </form>
  </div>
</div>