<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Erro 404 - Página Não Encontrada</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background-color: #f0f0f0;
      color: #333;
    }
    .container {
      text-align: center;
      padding: 20px;
    }
    h1 {
      font-size: 100px;
      margin: 0;
      color: #ff4d4d;
    }
    h2 {
      font-size: 24px;
      margin: 10px 0;
    }
    p {
      font-size: 16px;
      margin: 10px 0 20px;
    }
    a {
      text-decoration: none;
      color: #fff;
      background-color: #007bff;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background-color 0.3s;
    }
    a:hover {
      background-color: #0056b3;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>404</h1>
    <h2>Página Não Encontrada</h2>
    <p>Desculpe, mas a página que você está procurando não existe ou foi movida.</p>
    <a href="/">Voltar para a Página Inicial</a>
  </div>
</body>
</html>