/* Logos de partners — reemplaza .partner__iniciales con imagen real */
.partner__logo {
  flex: 0 0 96px;
  width: 96px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 8px;
  overflow: hidden;
}
.partner__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Teaser de partners en home — strip visual con logos */
.partner-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.partner-teaser__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  width: 100%;
  max-width: 720px;
}
.partner-teaser__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px;
  text-decoration: none;
  transition: all 200ms ease;
}
.partner-teaser__logo:hover {
  border-color: var(--mp-blue-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.1);
}
.partner-teaser__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 200ms ease;
}
.partner-teaser__logo:hover img {
  filter: grayscale(0%);
}
.partner-teaser__caption {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .partner-teaser__logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner__logo {
    flex: 0 0 72px;
    width: 72px;
    height: 56px;
  }
}
