<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>VALHPAC — En mantenimiento</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: #111827;
    }
    .card {
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 48px 40px;
      text-align: center;
      max-width: 420px;
      width: 90%;
    }
    .logo {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 24px;
    }
    .logo .val { color: #2D1B8B; }
    .logo .h   { color: #639922; }
    .logo .pac { color: #2D1B8B; }
    h1 {
      font-size: 18px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 10px;
    }
    p {
      font-size: 14px;
      color: #6b7280;
      line-height: 1.6;
    }
    .dot {
      width: 8px; height: 8px;
      background: #639922;
      border-radius: 50%;
      display: inline-block;
      margin-right: 6px;
    }
    .status {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 28px;
      font-size: 12px;
      color: #9ca3af;
    }
  </style>
</head>
<body>
  <div class="card">
    <div class="logo">
      <span class="val">VAL</span><span class="h">H</span><span class="pac">PAC</span>
    </div>
    <h1>Sitio en mantenimiento</h1>
    <p>Estamos realizando mejoras en el sistema. Estaremos de vuelta muy pronto.</p>
    <div class="status">
      <span class="dot"></span> Trabajando en ello
    </div>
  </div>
</body>
</html>