/* STANDARDS BLOCK */
.standards {
  background-color: #399b6a;
  padding: 3rem 1rem;
}

.standards__container {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.standards__title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .standards__title {
    font-size: 1.875rem;
  }
}

.standards__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  filter: grayscale(100%) brightness(200%) opacity(0.8);
}

@media (min-width: 768px) {
  .standards__logos {
    gap: 6rem;
  }
}

/* STANDARD-CARD BLOCK (hijo de standards) */
.standard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.standard-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  border: 2px solid white;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  background-color: transparent;
}

.standard-card__icon--text {
  /* Para íconos con texto como "ACES" */
  font-weight: 700;
}

.standard-card__icon--icon {
  /* Para íconos de Material Icons */
}

.standard-card__label {
  color: white;
  font-weight: 700;
  letter-spacing: 0.1em;
}