def detect_layout(images):

    """
    Versión simplificada:
    cada página = un bloque completo
    (más adelante aquí irá LayoutParser / Detectron2)
    """

    blocks = []

    for img in images:

        blocks.append({
            "image": img,
            "type": "full_page",
            "regions": []
        })

    return blocks