.contenedor-desarrolladores {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  color: #fff;
}

.contenedor-desarrolladores h1 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #e63946;
}

.grid-desarrolladores {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.card-desarrollador {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-desarrollador:hover {
  background: #272727;
  transform: translateY(-5px);
}

.card-desarrollador a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.logo-wrapper {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.logo-wrapper img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0.95);
}

.placeholder-logo {
  font-size: 2rem;
  opacity: 0.5;
}

.card-desarrollador h2 {
  font-size: 1rem;
  margin: 5px 0;
  color: #fff;
}

.card-desarrollador .ubicacion {
  font-size: 0.85rem;
  color: #aaa;
}
