
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Novo Endereço</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            max-width: 500px;
            text-align: center;
        }
        h1 {
            color: #333;
            margin-bottom: 20px;
        }
        p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .new-link {
            display: inline-block;
            background: #667eea;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }
        .new-link:hover {
            background: #5568d3;
        }
        .old-url {
            color: #999;
            font-size: 14px;
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🔗 Endereço Atualizado</h1>
        <p>
            O endereço deste aplicativo foi alterado.<br>
            Por favor, utilize o novo link abaixo:
        </p>
        <a href="https://pa.carmensteffens.com.br/auth/login" class="new-link">
            Acessar Novo Endereço
        </a>
        <p class="old-url">
            Antigo: pa-frontend.carmensteffens.com.br<br>
            Novo: pa.carmensteffens.com.br
        </p>
    </div>
</body>
</html>
        