
<!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.button {
        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;
        margin: 4px;
    }

    a.button:hover {
        background: #1d4ed8;
    }

    footer {
        margin-top: 40px;
        font-size: 12px;
        color: #6b7280;
    }

    .modal {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        padding: 20px;
    }

    .modal:target {
        visibility: visible;
        opacity: 1;
    }

    .modal-content {
        background: #1f2937;
        border: 1px solid #374151;
        border-radius: 8px;
        padding: 28px;
        max-width: 360px;
        width: 100%;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .modal-content h2 {
        margin: 0 0 12px;
        font-size: 20px;
        font-weight: 600;
        color: #f9fafb;
    }

    .modal-content p {
        margin-bottom: 20px;
        font-size: 14px;
        color: #9ca3af;
    }

    .modal-actions a {
        display: block;
        margin: 8px 0;
    }

    .close {
        display: inline-block;
        margin-top: 16px;
        color: #9ca3af;
        font-size: 13px;
        text-decoration: none;
    }

    .close:hover {
        color: #f3f4f6;
    }
</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 class="button" href="https://suporte.titaniotecnologia.com.br/otrs/customer.pl">
            Acessar suporte
        </a>

        <a class="button" href="#contato">
            Entrar em contato
        </a>

        <footer>
            © 2026 Titânio Tecnologia da Informação
        </footer>
    </div>

    <div id="contato" class="modal">
        <div class="modal-content">
            <h2>Entrar em contato</h2>

            <p>
                Escolha uma das opções abaixo para falar com a Titânio Tecnologia da Informação.
            </p>

            <div class="modal-actions">
                <a class="button" href="mailto:contato@titaniotecnologia.com.br">
                    Enviar e-mail
                </a>

                <a class="button" href="http://api.whatsapp.com/send/?phone=554431101260">
                    Chamar no WhatsApp
                </a>
            </div>

            <a class="close" href="#">
                Fechar
            </a>
        </div>
    </div>
</body>
</html>