```html Pathfinding Proximity
width: 100px; height: 100px; background-color: #D9E0F6; border-radius: 8px; transform-origin: center; position: relative; }
animation: box-move 5s linear infinite; }
animation: box-move 4s linear infinite; }
animation: box-move 3s linear infinite; }

transform: translate(0, 0) scale(1); } 20%{ transform: translate(150px, 0) scale(1.2); /* Ajusta tamanho para mover */ } 40%{ /* Redimensiona e move um pouco mais */ transform: translate(250px, -100px) scale(1); } 60%{ /* Redimensiona e move um pouco mais */ transform: translate(100px, -200px) scale(1.2); } 80%{ /* Redimensiona e move um pouco mais */ transform: translate(0, -150px) scale(1); } 100%{ transform: translate(0, 0) scale(1); } }
```