.about {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background-color: var(--cor-cinza-claro);
  padding: 4rem 0;
  height: 100%;
}

.about-bloco {
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  background-color: var(--cor-complementar-clara);
}

.about-bloco li {
  margin-bottom: 0.75rem;
}

.about__container {
  display: flex;
  justify-content: center;
  max-width: 60rem;
  flex-wrap: nowrap;
  gap: 2rem;
}
.about__container h2 {
  width: 15rem;
  text-align: right;
}
.about-cta {
  width: 15rem;
  text-align: left;
}

.about__container a strong {
  background-color: var(--cor-complementar);
  display: inline; /* Garante que o fundo se aplique somente ao texto */
  line-height: 1.5; /* Ajuste o espaçamento entre as linhas */
}
.about__container a strong:hover {
  background-color: var(--cor-primaria);
  color: var(--cor-complementar);
}

.about-textos {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-1col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.about-1col h3 {
  text-transform: uppercase;
  margin-top: 1rem;
}
.about-1col ul {
  margin-left: 0px;
}

.about-2col {
  display: flex;
  gap: 2rem;
}

.about__container h2 {
  font-size: var(--fonte-tamanho-grande);
}

@media (max-width: 960px) {
  .about__container {
    flex-wrap: wrap;
    padding: 0rem 2rem;
  }

  .about__container h2 {
    width: 100%;
    text-wrap: wrap;
    text-align: center;
  }

  .about-cta {
    width: 100%;
    text-align: left;
  }

  .about__container a strong {
    background-color: var(--cor-complementar);
    display: inline; /* Garante que o fundo se aplique somente ao texto */
    line-height: 1.5; /* Ajuste o espaçamento entre as linhas */
  }

  .about__container a strong:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-complementar);
  }

  .about-textos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-1col {
    width: 100%;
    gap: 2rem;
  }

  .about-2col {
    flex-direction: column;
  }
}
@media (max-height: 320px) {
  .about {
    height: fit-content;
  }
}
