
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Titânio Tecnologia da Informação</title>
<style>
    body {
        margin: 0;
        padding: 0;
        background: #111827;
        color: #f3f4f6;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        text-align: center;
    }
    .container {
        max-width: 520px;
        padding: 40px;
    }
    h1 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    p {
        font-size: 16px;
        color: #9ca3af;
        margin-bottom: 28px;
        line-height: 1.5;
    }
    a {
        display: inline-block;
        padding: 12px 24px;
        background: #2563eb;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.2s ease;
    }
    a:hover {
        background: #1d4ed8;
    }
    footer {
        margin-top: 40px;
        font-size: 12px;
        color: #6b7280;
    }
</style>
</head>
<body>
    <div class="container">
        <h1>Titânio Tecnologia da Informação</h1>
        <p>
            Nosso site está temporariamente indisponível para atualização e melhorias.
            Em breve retornaremos com novidades.
        </p>
        <a href="https://suporte.titaniotecnologia.com.br/otrs/customer.pl">
            Acessar suporte
        </a>
        <footer>
            © 2026 Titânio Tecnologia da Informação
        </footer>
    </div>
</body>
</html>