<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Oops</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
  <style>
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    .container {
      text-align: center;
    }

    .title {
      font-family: 'Inter', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: #2c2c2c;
      margin-bottom: 0.5rem;
    }

    .subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 300;
      color: #6b6b6b;
      letter-spacing: 0.02em;
    }
  </style>
</head>
<body>
  <div class="container">
    <p class="title">Conteúdo não disponível</p>
    <p class="subtitle">Volte em breve!</p>
  </div>
</body>
</html>