<!DOCTYPE html>

<html lang="pt">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Site Indisponível</title>

    <style>

        body {

            font-family: Arial, sans-serif, system-ui;

            background-color: #f4f4f9;

            color: #333;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

        }

        .container {

            text-align: center;

            padding: 40px;

            background: #fff;

            border-radius: 8px;

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

            max-width: 400px;

            width: 100%;

        }

        h1 {

            color: #d9534f;

            font-size: 24px;

            margin-bottom: 15px;

        }

        p {

            font-size: 16px;

            line-height: 1.5;

            color: #666;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Site Temporariamente Desativado</h1>

        <p>Pedimos desculpa pelo incómodo. Este site encontra-se temporariamente indisponível para manutenção ou encerramento. Voltaremos em breve.</p>

    </div>

</body>

</htm