
        <!DOCTYPE html>
        <html lang="es">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Nos hemos movido</title>
            <style>
                body {
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                    background-color: #f8f9fa;
                    color: #333;
                }
                .card {
                    background: #ffffff;
                    padding: 40px;
                    border-radius: 8px;
                    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
                    text-align: center;
                    max-width: 400px;
                }
                h1 {
                    font-size: 20px;
                    margin-bottom: 12px;
                    font-weight: 600;
                }
                p {
                    font-size: 14px;
                    color: #666;
                    margin-bottom: 24px;
                    line-height: 1.5;
                }
                a {
                    display: inline-block;
                    background-color: #0066ff;
                    color: #fff;
                    text-decoration: none;
                    padding: 10px 20px;
                    border-radius: 5px;
                    font-weight: 500;
                    font-size: 14px;
                }
                a:hover {
                    background-color: #0052cc;
                }
            </style>
        </head>
        <body>
            <div class="card">
                <h1>Nos hemos renovado</h1>
                <p>Nuestra plataforma ahora está disponible en nuestra nueva dirección.</p>
                <a href="https://apps.yuju.io">Ir a apps.yuju.io</a>
            </div>
        </body>
        </html>
        