/* =====================================================
   SOBRE.CSS
   Carregado SOMENTE no sobre.html.
   Contém: tagline da página, e a seção de fundadoras
   (nome, cargo, foto circular e biografia).
   ===================================================== */

.page-tagline {
  text-align: center;
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 1.3rem;
  color: var(--text-dim);
  margin-top: -24px;
  margin-bottom: 56px;
  
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 100px;
}

/* O alargamento além da coluna de texto só é seguro em telas bem largas;
   em telas menores, ficaria maior que a própria tela e geraria scroll
   horizontal indesejado. */
@media (min-width: 1400px) {
  .founders {
    margin-left: -200px;
    margin-right: -200px;
  }
}

.founder-card__header {
  text-align: center;
  margin-bottom: 32px;
}

.founder-card__header h3 {
  font-family: "IM Fell English", serif;
  font-style: normal !important;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.founder-card__role {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.founder-card__photo {
  display: block;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  margin: 24px auto 32px;
}

.founder-card__bio p {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word; /* Distribui o espaço entre as palavras */
 
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .founders {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .founder-card__photo {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-tagline {
    font-size: 1.1rem;
    margin-top: -16px;
    margin-bottom: 40px;
  }

  .founder-card__header h3 {
    font-size: 1.35rem;
  }

  .founder-card__photo {
    width: 168px;
    height: 168px;
  }

  .founder-card__bio p {
    font-size: 1rem;
    text-align: left;

  }
}
