/* Team Section - Versión Final */
.team-section {
  padding: 5rem 0;
  
}

.team-card {
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  background: #fff;
  height: 100%;
}

/* Wrapper para controlar imagen sin recortes */
.team-img-wrapper {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* Imagen sin recorte */
.team-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Efecto hover */
.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-card .card-body {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.team-card .text-muted {
  color: #6c757d !important;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.team-card .social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-card .social-links a {
  color: var(--primary-color, #0d6efd);
  background: rgba(13, 110, 253, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-card .social-links a:hover {
  color: #fff;
  background: var(--primary-color, #0d6efd);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive */
@media (max-width: 767.98px) {
  .team-section {
    padding: 3rem 0;
  }

  .team-card {
    margin-bottom: 1.5rem;
  }

  .team-img-wrapper {
    height: 200px;
  }
}
/* Estilos para la sección de clientes */
.client-logos {
  gap: 3rem;
}

.client-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.client-logo-img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-logo:hover .client-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.no-image {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .client-logos {
      gap: 1.5rem;
  }
  
  .client-logo {
      padding: 1rem;
  }
}
