<!doctype html>
<html lang="pt-PT">
<head>
  <meta charset="utf-8">
  <title>BarberPro</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      display: grid;
      place-items: center;
      min-height: 100vh;
      margin: 0;
      background: #0f172a;
      color: #f8fafc;
      text-align: center;
    }
    main {
      max-width: 640px;
      padding: 32px;
    }
    h1 {
      font-size: 42px;
      margin-bottom: 12px;
    }
    p {
      font-size: 18px;
      color: #cbd5e1;
    }
  </style>
</head>
<body>
  <main>
    <h1>BarberPro</h1>
    <p>A nova plataforma para gestão de barbearias em Portugal está quase pronta.</p>
  </main>
</body>
</html>