<?php
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>';

$base_url = 'https://quantumkey.com.br';
$current_date = date('Y-m-d');
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
        
    <!-- Página Principal (PT-BR) -->
    <url>
        <loc><?= $base_url ?>/</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
        <xhtml:link rel="alternate" hreflang="en" href="<?= $base_url ?>/index_en.php"/>
        <xhtml:link rel="alternate" hreflang="pt-br" href="<?= $base_url ?>/"/>
    </url>
    
    <!-- Página Principal (EN) -->
    <url>
        <loc><?= $base_url ?>/index_en.php</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
        <xhtml:link rel="alternate" hreflang="pt-br" href="<?= $base_url ?>/"/>
        <xhtml:link rel="alternate" hreflang="en" href="<?= $base_url ?>/index_en.php"/>
    </url>
    
    <!-- Seções da Página Principal -->
    <url>
        <loc><?= $base_url ?>/#servicos</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc><?= $base_url ?>/#como-funciona</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <url>
        <loc><?= $base_url ?>/#contato</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <!-- Frontend alternativo -->
    <url>
        <loc><?= $base_url ?>/frontend/</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    
    <!-- Default page -->
    <url>
        <loc><?= $base_url ?>/default/</loc>
        <lastmod><?= $current_date ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    
</urlset>
