.quem-somos {
  display: flex;
  flex-direction: column;
  padding: 64px;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.container-sobre {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  max-width: 1280px;
  width: 100%;
}

.container-sobre-evento {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  width: 100%;
}


/* TEXTO */
.content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}

.content-section h2 span {
  text-align: start;
}

.quemsomos-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* IMAGENS */
.images-section {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 400px;
  gap: 32px;
}

.image-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 1280px) {

  .quem-somos {
    gap: 48px;
    padding: 24px;
  }

  .quemsomos-content{
    gap: 8px;
    align-items: center;
  }

  .container-sobre {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .content-section {
    align-items: center;
    gap: 24px;
  }

  .images-section {
    height: 300px;
    width: 100%;
    gap: 24px;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .container-sobre {
    gap: 16px;
  }

  .images-section {
    gap: 16px;
    flex-direction: column;
  }

  .quem-somos {
    gap: 32px;
    padding: 16px;
  }


  .solucoes-grid {
    gap: 16px;
  }

  .content-section {
    gap: 16px;
  }
}