.section-img-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  
}
.section-img-text__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  
}
.section-img-text__image img {
  max-width: 400px;
  width: 100%;
  
  
}
.section-img-text__content {
  color: #fff;
  max-width: 600px;
  margin-right: 100px;
  
}
.section-img-text__content h2 {
  font-size: 1.7rem;
  margin-bottom: 24px;
  font-weight: 700;
  
}
.section-img-text__content p {
  font-size: 0.90rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsividade */
@media (max-width: 900px) {
  .section-img-text__container {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .section-img-text__image img {
    max-width: 260px;
    margin: 0 auto;
  }
  .section-img-text__content h2 {
    font-size: 1.9rem;
  }
  .section-img-text__content p {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .section-img-text {
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-img-text__content {
    margin-top: 50px;
    margin-right: 0px;

  }
  .section-img-text__container {
    gap: 18px;
    width: 90vw;
  }
  .section-img-text__image img {
    max-width: 80vw;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-img-text__content h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .section-img-text__content p {
    font-size: 0.93rem;
  }
}

.img-efeito {
  animation: girar 20s linear infinite;
}

@keyframes girar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section-img-text__image {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

/* Orbita girando */
.orbitas-animadas {
  position: relative;
}

.orbitas-animadas img {
  animation: girar 20s linear infinite;
  width: 100%;
  height: auto;
}

/* Logo parada no centro */
.logo-central {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-central img {
  width: 350px; /* ajuste conforme quiser */
  height: auto;
}

/* Keyframes para rotação */
@keyframes girar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
