.staggered {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 90vw;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

/* Configuração dos steps */
.step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: clamp(700px, 80vw, 1100px); /* Ajuste flexível */
  position: relative;
  transition: all 0.3s ease;
}

/* Alternar a posição de imagem e texto para o efeito "Z" */
.step:nth-child(odd) {
  flex-direction: row;
  transform: translateX(-6%);
}

.step:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(8%);
}

/* Ajuste do conteúdo */
.step-content {
  flex: 1;
}

.step-content__main--text {
  font-family: Montserrat;
  font-size: clamp(12px, 1.2vw, 16px); /* Tamanho flexível */
}

/* Ajuste da imagem */
.step-img {
  flex: 1.3;
  border-radius: 8px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.conciencia {
  display: flex;
  flex-direction: row;
  background-color: #f2f2f2;
  width: 100%;
  min-height: 500px;
  margin-bottom: 20px;
  padding: 1.5rem;
  gap: 2rem;
}
.conciencia-content {
  flex: 1;
}

.conciencia-body__text {
  font-family: Montserrat;
  font-size: 14px;
  line-height: 1.6;
}
.img-responsive {
  height: 500px;
  object-fit: cover;
  width: 500px;
  border-radius: 10px;
}

/* Ajustes para telas menores */
@media (max-width: 1024px) {
  .step {
    max-width: 95vw;
  }

  .step:nth-child(odd),
  .step:nth-child(even) {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .step {
    flex-direction: column !important;
    transform: translateX(0) !important;
    max-width: 90vw;
  }

  .step-img {
    width: 100%;
  }

  .conciencia {
    flex-direction: column;
    align-items: center;
  }

  .skill-image img {
    width: 100%;
    height: auto;
  }

  .conciencia-content {
    width: 100%;
    text-align: center;
  }

  .conciencia-body__text {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 1rem;
  }
}
