<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Service Hub AI</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet" />
  <style>
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #f9fafb;
      color: #1f2937;
    }

    header {
      background-color: #0f172a;
      color: white;
      padding: 2rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin: 0;
    }

    header p {
      margin-top: 1rem;
      font-size: 1.2rem;
      color: #cbd5e1;
    }

    .hero {
      padding: 4rem 2rem;
      text-align: center;
    }

    .hero h2 {
      font-size: 2rem;
      color: #0f172a;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 1rem auto;
      color: #4b5563;
    }

    .cta-button {
      background-color: #2563eb;
      color: white;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 1.5rem;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: #1d4ed8;
    }

    footer {
      text-align: center;
      padding: 2rem;
      background-color: #f3f4f6;
      color: #6b7280;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>

  <header>
    <h1>Service Hub AI</h1>
    <p>Atención al cliente inteligente con inteligencia artificial</p>
  </header>

  <section class="hero">
    <h2>Automatiza, Responde y Fideliza</h2>
    <p>
      Creamos asistentes virtuales personalizados que responden en WhatsApp como si fueran humanos.
      Tu empresa siempre disponible, tus clientes siempre atendidos.
    </p>
    <button class="cta-button">Solicita una demo</button>
  </section>

  <footer>
    © 2025 Service Hub AI · Todos los derechos reservados
  </footer>

</body>
</html>