2 PPPoE and One Fixed problem :S

Hi to every soul in this forum, I really need some help.
I have now in my work 3 WAN: 2 PPPoE and other fixed.
I want to do the next. The fixed (WAN3) only have to work whit the server :192.168.1.2
WAN1 only for the ip 192.168.1.3-192.168.1.55
WAN2 only for the ip 192.168.1.56-192.168.1.254
That´s all
I try PCC and ECMP but not work well whith secure page and others problems

I export my actually configuration. This sometime work, other non.
Actually i only config the fixed ip and disable all other config. But here the fixed ip speed is of 30/10mbps, and the ppoe are of 120/50mbps each one

[admin@MikroTik] > export
# mar/12/2020 22:18:11 by RouterOS 6.44.3
# software id = 5R4A-BBIF
#
# model = RB951G-2HnD
# serial number = 

/interface ethernet
set [ find default-name=ether1 ] name=ether1_PPPOE1
set [ find default-name=ether2 ] name=ether2_PPPOP2
set [ find default-name=ether3 ] name=ether3_FIJO
set [ find default-name=ether5 ] name=ether5_LAN
/interface pppoe-client
add interface=ether1_PPPOE1 name=pppoe-out1 password=user user=user@adsl
add interface=ether2_PPPOP2 name=pppoe-out2 password=user user=user@adsl
/interface list
add name=LAN

/ip pool add name=dhcp_pool1 ranges=192.168.1.56-192.168.1.180
/ip dhcp-server add address-pool=dhcp_pool1 disabled=no interface=ether5_LAN name=dhcp1
/ip settings set allow-fast-path=no
/interface list member add interface=ether5_LAN list=LAN
/ip address 
add address=192.168.1.1/24 interface=ether5_LAN network=192.168.1.0
add address=200.4.4.30/30 interface=ether3_FIJO network=200.4.4.28
/ip dhcp-server network
add address=192.168.1.0/24 dns-server=192.168.1.1 gateway=192.168.1.1
/ip dns
set allow-remote-requests=yes servers=1.1.1.1,1.1.2.2
/ip firewall filter
add action=drop chain=input protocol=gre
add action=drop chain=forward protocol=gre
add action=accept chain=input connection-state=established,related
add action=accept chain=forward connection-state=established,related
add action=drop chain=forward connection-state=invalid
add action=drop chain=input connection-state=invalid
/ip firewall mangle
add action=mark-packet chain=prerouting comment=WAN1 disabled=no new-packet-mark=wan1_pkg passthrough=yes src-address=192.168.1.3-192.168.1.55
add action=mark-routing chain=prerouting disabled=no new-routing-mark=para_la_WAN1 packet-mark=wan1_pkg passthrough=yes
add action=mark-packet chain=prerouting comment=WAN2 disabled=no new-packet-mark=wan2_pkg passthrough=yes src-address=192.168.1.56-192.168.1.254
add action=mark-routing chain=prerouting disabled=no new-routing-mark=para_la_WAN2 packet-mark=wan2_pkg passthrough=yes
add action=mark-packet chain=prerouting comment=FIJA disabled=no new-packet-mark=wan3_pkg passthrough=yes src-address=192.168.1.2
add action=mark-routing chain=prerouting disabled=no new-routing-mark=para_la_WAN3 packet-mark=wan3_pkg passthrough=yes
/ip firewall nat
add action=masquerade chain=srcnat comment="Mask WAN1" out-interface=pppoe-out1
add action=masquerade chain=srcnat comment="Mask WAN2" out-interface=pppoe-out2
add action=masquerade chain=srcnat comment="Mask WAN3" out-interface=ether3_FIJO

/ip route
add distance=1 gateway=pppoe-out1 routing-mark=para_la_WAN1 scope=10
add distance=1 gateway=pppoe-out2 routing-mark=para_la_WAN2 scope=10
add distance=1 gateway=200.4.4.29 scope=10
/ip service

Thank for the help!!!