 section.comoTrabalhamos{
  padding: 1% 8%;
  padding-top: 3.8%; 
 }

.textsOverRocket{
  min-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding: 0;

}
 /* foguete */

.rocketDiv {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

svg {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

text {
  fill: #fff;
  font-size: 12px;
  font-family: sans-serif;
}

#rocket-icon {
  transition: transform 0.5s ease;
}

.comoTrabalhamos h2 {
  color: #fff;
}

.titulo {
  color: white;
  margin-top: 30px;
  font-size: 28px;
}

/* fim foguete */




/*process List*/
.processList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.processBox {
  background-color: #1e1e1e;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 40px); 
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s ease;
}

.processBox:hover {
  background-color: #333;
}

.processBox h2 {
  margin-bottom: 15px;
}

.processBox p {
  font-size: 1em;
  line-height: 1.4;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .processBox {
    flex: 1 1 calc(50% - 20px); /* 2 por linha no tablet */
  }

  body.via-instagram #comoTrabalhamos {
    padding-top: 2em !important;
    padding-bottom: .5em;
  }

  .rocketDiv{
    display: none;
  }
}

@media (max-width: 480px) {
  .processBox {
    flex: 1 1 100%; /* 1 por linha no celular */
  }
}




  /* fim process List */