/* Estilos para otimização de imagens da equipe e parceiros */

/* Ajustes para imagens da equipe */
.member-img {
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background-color: #f5f5f5;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Ajustes para logos dos parceiros */
.partner-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Ajustes para a logomarca principal */
.logo img {
  height: 60px;
  width: auto;
  margin-right: 15px;
  object-fit: contain;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .member-img {
    height: 200px;
  }
  
  .partner-logo {
    height: 100px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .footer-logo img {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .member-img {
    height: 180px;
  }
  
  .partner-logo {
    height: 80px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .footer-logo img {
    height: 30px;
  }
}
