.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.logos-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.logos-label {
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center; /* centra horizontalmente */
  flex: 1;
}

.logo-img {
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .logos-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logos-label {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .logos-row {
    justify-content: center;
  }
}