/* Estilo refinado para seções de processo */
.processo-detalhado {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  color: #e0e0e0;
  padding: 60px 30px;
  scroll-snap-align: start;
}

.processo-bloco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  flex-wrap: wrap;
}

.processo-bloco.reverso {
  flex-direction: row-reverse;
}

.processo-img {
  flex: 1;
}

.processo-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.processo-img img:hover {
  transform: scale(1.02);
}

.processo-texto {
  flex: 1;
  padding: 20px;
}

.processo-texto h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #f3f3f3;
  letter-spacing: 0.5px;
  position: relative;
}

.processo-texto h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #888;
  margin-top: 10px;
}

.processo-texto p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #bbb;
  max-width: 600px;
}

/* Mobile */
@media (max-width: 900px) {
  .processo-bloco {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .processo-bloco.reverso {
    flex-direction: column;
  }

  .processo-img img {
    max-height: 300px;
  }

  .processo-texto h2 {
    font-size: 2rem;
  }

  .processo-texto p {
    font-size: 1rem;
  }
}
