Agreggates and vlans

Good morning,
I am reconfiguring my network due to a house move. Previously I had my old rt-ac88u configured as Switch+AP only with vlans with the new DSA architecture and I managed to get everything working.
Due to the location of the equipment on this new floor, I will need to connect more devices, including a NAS with services for the internal network and internet, and I would like to configure two ports with LACP (trunk to the router, to which I want to configure the other two ports that you are left with another LAG for other devices in another location of the apartment).
Following the indications in this threat: Link-Aggregation in LAN with VLANs I have configured the LACP in two ports of my router as static (as active or passive I have not been able to make it work), and two ports in the rt-ac88u with OpenWRT in RR, with subnet 192.168.80.0/24. The router show LAG up and both devices can ping each other.
I have also created several vlans associated with the LAG following instructions, but I cannot correctly configure the vlans in the rest of the ports so that the traffic goes through the trunk.
I have tried adding both the LAG interface and the vlans on the LAN bridge (both show up at 2 Gigabytes) and tagging them but it doesn't work. I add new bridge for vlans, and add all rest of ports + lag interface but no function.
My current setup is as follows:
config interface 'loopback'

        option device 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option packet_steering '1'
        option ula_prefix 'fd60:5d00:1900::/48'

config device
        option name 'wlan0'
        option ipv6 '0'

config device
        option name 'wlan1'
        option ipv6 '0'

config interface 'LAG1'
        option proto 'bonding'
        option ipaddr '192.168.80.253'
        option netmask '255.255.255.0'
        list slaves 'lan1'
        list slaves 'lan2'
        option all_slaves_active '0'
        option link_monitoring 'mii'
        option miimon '100'
        option downdelay '0'
        option updelay '0'
        option use_carrier '1'
        list dns '192.168.80.1'
        option delegate '0'
        option bonding_policy 'balance-rr'
        option packets_per_slave '1'
        option force_link '1'

config device
        option type 'bridge'
        option name 'br-lan'
        option bridge_empty '1'
        option ipv6 '0'
        option stp '1'
        option igmp_snooping '1'
        list ports 'extsw'
        list ports 'lan3'

config interface 'LAN'
        option proto 'static'
        option ipaddr '192.168.72.253'
        option netmask '255.255.255.0'
        option gateway '192.168.72.1'
        list dns '192.168.72.1'
        option delegate '0'
        option device 'br-lan'

config device
        option name 'bond-LAG1'
        option ipv6 '0'
        option acceptlocal '1'

config device
        option type '8021q'
        option ifname 'bond-LAG1'
        option vid '86'
        option name 'bond-LAG1.86'
        option acceptlocal '1'
        option ipv6 '0'
        option multicast '1'

config device
        option type '8021q'
        option ifname 'bond-LAG1'
        option vid '85'
        option name 'bond-LAG1.85'
        option ipv6 '0'
        option acceptlocal '1'
        option multicast '1'

config device
        option type '8021q'
        option ifname 'bond-LAG1'
        option vid '82'
        option name 'bond-LAG1.82'
        option multicast '1'
        option acceptlocal '1'

I've tried it in every way and I'm lost. Can someone help me with the next steps?

Thank you very much in advance.

someone can help me please?

I would like to get to this configuration:


Can anyone give me directions?