/* =======================
   CONECTOR - MOBILE (vertical)
   ======================= */
.connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80px;
  width: 20px;
  margin: auto;
}

/* Linha começa com height 0 para animar crescendo */
.connector .line {
  width: 4px;
  height: 0;
  background-color: #000;
  border-radius: 2px;
  transition: height 0.4s ease-out;
}

/* Seta inicialmente invisível */
.connector .arrow {
  opacity: 0;
  transition: opacity 0.3s ease-in 0.5s;
}

/* Ícone da seta para baixo (chevron-down) */
.connector .arrow::before {
  content: "\f078"; /* ícone fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  font-size: 18px;
  margin-top: 6px;
}


/* =======================
   CONECTOR - TABLET/DESKTOP (horizontal)
   ======================= */
.connector_horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: auto;
  height: 20px;
  margin: 0 auto;
}

/* Linha horizontal começa com width 0 */
.connector_horizontal .line {
  height: 4px;
  width: 0;
  background-color: #000;
  border-radius: 2px;
  transition: width 0.4s ease-out;
}

/* Seta inicialmente invisível */
.connector_horizontal .arrow {
  opacity: 0;
  transition: opacity 0.3s ease-in 0.5s;
}

/* Ícone da seta para direita (chevron-right) */
.connector_horizontal .arrow::before {
  content: "\f054"; /* ícone fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  font-size: 18px;
  margin-left: 6px;
}
