<?xml version="1.0" encoding="UTF-8"?>
<!--
  [D-180 · F-021] Este sitemap declaraba cuatro URLs y **ninguna de las cuatro
  llevaba a donde decía**:

    /#/learn  /#/products  /#/trust  /#/faq

  1. El prefijo `#/` es un fósil. La app enruta por PATH desde `main.dart:178`
     (`usePathUrlStrategy`), así que el fragmento no lo lee nadie: las cuatro
     resolvían a la portada. Es la misma anatomía que `F-019`, donde once specs
     e2e "navegaban" por hash y medían siempre la misma pantalla.
  2. `/products` y `/trust` **no son rutas**. El `switch` de `main.dart` no las
     declara: el listado se llama `/catalog`, y `trust_center_screen.dart` existe
     pero no está ruteado —se abre desde el Learning Hub—, así que no tiene URL
     que indexar. Se retira en vez de inventarle una.

  Se mantienen sólo rutas verificadas contra el `switch` de `main.dart`.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <url>
    <loc>https://nutratech-web.onrender.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
    <xhtml:link rel="alternate" hreflang="es" href="https://nutratech-web.onrender.com/?lang=es"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://nutratech-web.onrender.com/?lang=en"/>
  </url>
  <url>
    <loc>https://nutratech-web.onrender.com/learn</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://nutratech-web.onrender.com/catalog</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://nutratech-web.onrender.com/faq</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>
