So, I'm building a flowchart based operation manual for the SEM at the lab that I work, and I'm having a trouble aligning a node with respect to two others.
I've seen already a few pages[1][2][3][4] here that present the same problem and tried their solutions, but with no success what soever, so if someone can help me I would appreciate very much.
This is my MWE:
%%% DOCUMENT SETTINGS %%%
\documentclass[12pt, a3paper]{article} %page type
\usepackage[margin=2cm]{geometry} %margins
\usepackage{setspace}
\usepackage{indentfirst} %indenting package
\setstretch{1.5} %between lines spacement
\setlength{\parindent}{1.5cm} %first line indentation
%page settings
\usepackage{fancyhdr}
\pagestyle{fancy} % seting to use the customizable head and footers
\fancyhf{} % cleaning standard head and footers to use the new one
\rfoot{Autores: Eduardo de Almeida Isoppo;\Luiz Felipe Pompermaier.} % page number on the footer's right side
\renewcommand{\headrulewidth}{0pt} %remove the line on the headers
\usepackage{float} % tables and figures in multicols.
%font and language configs
\usepackage[brazil]{babel} %letter type
\usepackage[utf8]{inputenc} %normal acentuation
%\usepackage{arial}
% using pseudoarial font Helvetica.
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[T1]{fontenc}
%Reference configs
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=red,
citecolor=black,
filecolor=magenta,
urlcolor=blue,
breaklinks=false,
pdfauthor={Luiz Felipe Pompermaier}
}
%image config
\usepackage{graphicx} % Image using package
%\graphicspath{{Imagens/}} % Image path
\usepackage{caption} % Image, tables, and others captions.
\usepackage{subcaption} % SubImage package. More then one per line.
%math config
\usepackage{amssymb}
\usepackage{amsmath}
% text packages
\usepackage{blindtext} % lorem ipsum
%\usepackage{lipsum}
%\usepackage{titling} % used to make title higger in page
\usepackage{sectsty} % section title
\sectionfont{\fontsize{12}{15}\selectfont} %changing section fontsize
\usepackage{multicol} % multiple columns
\usepackage{xcolor} % coloring text
\usepackage[none]{hyphenat} % no hyphenation
\usepackage{microtype} % better justification
\usepackage{tcolorbox} % text in coloured boxes
% tikz package for flowchart drawings
\usepackage{tikz}
\usepackage{tikz-layers}
\usetikzlibrary{shapes.geometric, arrows}
\usetikzlibrary{positioning}
\usetikzlibrary{fit}
\usetikzlibrary{calc}
\usetikzlibrary{intersections}
% Flowchart configs
\tikzstyle{startstop} = [ellipse, minimum width=3cm, minimum height=2cm,text centered, text width=3cm, draw=black, fill=red!30]
\tikzstyle{io} = [trapezium, trapezium left angle=70, trapezium right angle=110, minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=blue!30]
\tikzstyle{process} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black, fill=orange!30]
\tikzstyle{decision} = [diamond, aspect=2, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black, fill=green!30]
\tikzstyle{arrow} = [thick,->,>=stealth, line width=2pt]
\newlength{\AL}
\setlength{\AL}{2cm}
\begin{document}
\begin{center}
\Huge \textbf{Fluxograma de Operação do MEV}
\end{center}
\begin{figure}[!htb]
\centering
\begin{tikzpicture}
% Nodes and texts
\node (SftWrk) [decision, below=\AL of ScrnON] {Software está funcionando?};
\node (SftErr) [process, left=\AL of SftWrk] {Chame um Técnico};
\node (VentCb) [process, below=\AL of SftWrk] {Ventilar câmara segurando \textbf{VENT}.};
\node (SmplHd) [process, left=\AL of VentCb, dashed] {Montar Porta-amostras desejado.};
\begin{scope}[on behind layer]
\node (Sample) [io][fit=(SmplHd)]{};
\end{scope}
% Arrows
\begin{scope}[on background layer]
\draw[arrow] (SftWrk) -- node[anchor=south] {\textbf{NÃO}} (SftErr);
\draw[arrow] (SftWrk) -- node[anchor=east] {\textbf{SIM}} (VentCb);
\draw[arrow] (Sample) |- ($(EvacCb)!.5!(VentCb)$);
\draw[arrow] (VentCb) -- +(0,-\AL);
\end{tikzpicture}
\end{figure}
\end{document}
This is the result it produces (focusing on the area of interest):

And what I want is to align the (SmplHd) box below of (SftErr) and left of (VentCb), if this makes sense to everyone reading this.
And to be more explicit about it, no the at (SftErr|-VentCb) command does not work.
For the complete compilation please check https://www.overleaf.com/read/nfyvphkggdny

\node (SmplHd) [process, left=1.5\AL of VentCb, dashed] {Montar Porta-amostras desejado.};– Simon Dispa Apr 13 '22 at 21:53