/* ================= Seção Sobre Nós =================  */

#sobre-nos {
  background-color: #141d2f;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

#sobre-nos h2 {
  font-size: 45px;
  margin-bottom: 40px;  
  color: #ffffff;
}

#sobre-nos .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#sobre-nos .logo img {
  width: 160px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

#sobre-nos .text {
  max-width: 500px;
  text-align: left;
}

#sobre-nos .text h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #00c8ff;
}

#sobre-nos .text p {
  font-size: 1.05em;
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.saiba-mais {
  padding: 12px 28px;
  background-color: #00c8ff;
  border: none;
  border-radius: 25px;
  color: #141d2f;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.saiba-mais:hover {
  background-color: #ffffff;
  color: #141d2f;
}

#sobre-nos .images {
  display: flex;
  flex-direction: column;
  /* imagens lado a lado */
  gap: 20px;
  justify-content: center;
  /* centraliza as imagens */
  flex-wrap: wrap;
  /* permite quebra em telas menores */
}

#sobre-nos .images img {
  width: 100px;
  /* largura base para desktop */
  max-width: 100%;
  /* nunca ultrapassa o container */
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.3));
}

#sobre-nos .images img:hover {
  transform: scale(1.05);
}

/* Animações de entrada via scroll */

.scroll-fade-up,
.scroll-fade-right,
.scroll-fade-left {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-fade-up {
  transform: translateY(40px);
}

.scroll-fade-right {
  transform: translateX(40px);
}

.scroll-fade-left {
  transform: translateX(-40px);
}

.scroll-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Responsivo */

@media (max-width: 768px) {
  #sobre-nos .content {
    flex-direction: column;
    text-align: center;
  }

  #sobre-nos .text {
    text-align: center;
  }

  #sobre-nos .images img {
    display: none;
    width: 120px;
    /* menor em tablets */
  }
}

@media (max-width: 480px) {
  #sobre-nos .images {
    justify-content: center;
  }

  #sobre-nos .images img {
    display: none;
    width: 90px;
    /* ainda menor em celulares */
    margin: 0 auto;
  }
}

