
        <!DOCTYPE html>
        <html lang="pt">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Site em Construção</title>
            <style>
                body {
                    font-family: Arial, sans-serif;
                    background-color: #f4f7f6;
                    color: #333;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                    text-align: center;
                }
                .container {
                    background: white;
                    padding: 40px;
                    border-radius: 10px;
                    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
                    max-width: 500px;
                }
                h1 {
                    color: #2c3e50;
                    margin-bottom: 10px;
                }
  p {
                    font-size: 18px;
                    color: #7f8c8d;
                    margin-bottom: 30px;
                }
                .btn {
                    display: inline-block;
                    background-color: #3498db;
                    color: white;
                    padding: 12px 24px;
                    text-decoration: none;
                    font-weight: bold;
                    border-radius: 5px;
                    transition: background 0.2s;
                }
                .btn:hover {
                    background-color: #2980b9;
                }
            </style>
        </head>
        <body>
            <div class="container">
                <h1>Site em Construção</h1>
                <p>O nosso website está em contrução. Entretanto, as  marcações de consultas já estão abertas!</p>
                <a href="https://agendar.medlopes.ao" class="btn">Marcar Consultas Aqui</a>
            </div>
        </body>
        </html>
        