.journey-section {
  background: url("../assets/bg-moedinhas.png");
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
}

.card-info {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 2rem;

  border-radius: 2rem 2rem 0rem 2rem;
  border: 1px solid rgba(165, 135, 44, 0.3);
  background: rgba(165, 135, 44, 0.429);
  backdrop-filter: blur(10px);

  max-width: 64rem;

  padding: 2rem;
  margin: 2rem;
}

.card-info button {
  box-shadow: 0px 1px 3px 0px rgba(10, 10, 10, 0.3);
}

.card-info p {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}

.journey {
  display: flex;
  flex-direction: column;

  margin: 10rem 0;
}

.journey-title {
  color: var(--text, #0a0a0a);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.0675rem;
  text-transform: uppercase;

  margin-bottom: 4rem;
}

.module-journey {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  width: 18rem;
  padding-bottom: 3rem;
}

.text h1 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
}

.text p {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 500;
}

.shapes {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ellipse {
  position: absolute;
  width: 16px;
  height: 16px;

  border-radius: 100%;
  background: var(--color2);
}

.line {
  position: absolute;
  top: 8px;
  width: 8px;
  height: 100%;

  opacity: 0.5;
  background: var(--color2);
}

.finaly-line {
  opacity: 0.5;
  background: linear-gradient(180deg, #007d5c 0%, rgba(0, 125, 92, 0) 92.2%);
}

@media (max-width: 720px) {
  .card-info {
    margin: 0;
  }
}
