.ecossistema {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
  width: 100%;
  background: radial-gradient(
    55% 65% at 50% 20%,
    #57594c 0%,
    #45493f 15%,
    #30352f 45%,
    #232925 75%,
    #1f2522 100%
  );
}

.ecossistema__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 50rem;
  gap: 1rem;
}

.ecossistema__header img {
  width: 14rem;
}

.ecossistema__header h2 {
  color: var(--cor-complementar);
  text-transform: uppercase;
  font-size: var(--fonte-tamanho-grande);
  margin-bottom: 2rem;
}

.ecossistema__header p {
  color: var(--cor-branco);
}

.ecossistema__header strong {
  color: var(--cor-complementar);
}

.ecossistema__cards-triade {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 50rem;
}

.triade-cards {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 16rem;
  height: 100%;
  min-height: 21rem;
  border-radius: 1rem;
  padding: 1rem;
  gap: 1rem;
  background-color: var(--cor-branco);
}
.triade-cards img {
  width: 6rem;
}

.escopo {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  max-width: 48rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.escopo-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 10rem;
  gap: 1rem;
}
.escopo-card img {
  width: 8rem;
}
.escopo-card p {
  color: var(--cor-complementar);
  text-transform: uppercase;
  font-size: calc(var(--fonte-tamanho-normal) * 0.8);
}

@media (max-width: 920px) {
  .triade-cards {
    flex-direction: row;
    width: 100%;
    height: fit-content;
    min-height: fit-content;
  }
}
@media (max-width: 740px) {
  .triade-cards {
    flex-direction: column;
    width: 100%;
    min-height: fit-content;
    height: fit-content;
  }
  .ecossistema__header h2 {
    font-size: calc(var(--fonte-tamanho-grande) * 0.8);
    margin-bottom: 2rem;
  }

  .escopo-card {
    width: 8rem;
    gap: 0.5rem;
  }
}
