<?php
// sitemap.php - Sitemap dinámico para Google
header('Content-Type: application/xml; charset=utf-8');

$urls = [
    ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'weekly'],
    ['loc' => '/productos', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => '/contacto', 'priority' => '0.6', 'changefreq' => 'monthly'],
    ['loc' => '/suscripcion', 'priority' => '0.8', 'changefreq' => 'monthly'],
];

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
foreach ($urls as $url) {
    echo '<url>';
    echo '<loc>' . SITE_URL . $url['loc'] . '</loc>';
    echo '<priority>' . $url['priority'] . '</priority>';
    echo '<changefreq>' . $url['changefreq'] . '</changefreq>';
    echo '</url>';
}
echo '</urlset>';
?>