.title {
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 { text-align: center; line-height: 3.6rem; }

     h2 {
        padding: 0 3.2rem;
        text-align: center;

        border-radius: 3.2rem;
        border: 0.1rem solid rgb(0, 0, 85);
    }
}


.sobre, .consultar-diplomas {
    padding: 10.4rem 3.2rem 8dvh 3.2rem;

    display: flex; 
    flex-direction: column; 
    gap: 3.2rem; 

    background: rgb(240, 240, 240);

    p { text-align: center; }
}

.container-depoimentos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.2rem;
}

.card-depoimento {
    position: relative;
    width: 40rem;
    padding: 3.2rem;

    text-align: center;

    border-radius: 1.6rem;
    border: 0.2rem solid rgb(0, 0, 85);
    box-shadow: 0 0.4rem 0.8rem rgba(0,0,0,0.1);
}

.profile-pic {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 0 0 2px #0e0e7c;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-depoimento { 
  margin-top: 3.2rem; 
  
  display: flex;
  flex-direction: column;
  gap: 1.6rem;

  .title { line-height: 1.6rem; }
}
.content-depoimento h3 { font-size: var(--font-medium); }
.content-depoimento .subtitle { font-size: var(--font-small); color: #555; }
.content-depoimento .text { font-size: var(--font-small); }

.sobre .container-depoimentos {
    margin-top: 4.8rem;

    .profile-pic {
      width: 8rem;
      height: 8rem;
    }
      
    .card-depoimento {
      width: 28rem;
      padding: 0.8rem 3.2rem 1.6rem 3.2rem;
    }
}

.coordinator-card {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.coordinator-name { line-height: 1.2rem; }
.coordinator-name strong { font-size: var(--font-medium); }
.coordinator-name span { font-size: var(--font-small); }

.atribuicoes {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;

    padding: 8dvh 3.2rem;

    background-color: rgb(0, 0, 85);

    .title h2 {
        border-color: rgb(215, 215, 0);
        color: rgb(240, 240, 240);
    }
}

.atribuicoes .container-atribuicoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.2rem;

    .atribuicao {
        max-width: 32rem;
        aspect-ratio: 1 / 0.6;

        display: flex;
        align-items: center;
        text-align: center;

        padding: 3.2rem;
        
        border-radius: 1.6rem;
        background-color: rgba(240, 240, 240, 0.100);

        p { color: rgb(240, 240, 240); }
    }
}

.faq-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 8dvh 3.2rem;

  background-color: rgb(240, 240, 240);
}

.faq-item {
  width: 80%;
  border-bottom: 0.05rem solid rgb(200, 200, 200);

  button { font-weight: bold; }
}

.faq-question {
  background: none;
  border: none;

  width: 100%;

  text-align: left;
  padding: 1.6rem;
  font-size: var(--font-medium);

  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: var(--font-medium);
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.6rem;

  p {
    padding-bottom: 1.6rem;
  }
}

@media ( max-width: 1100px ) {
  .faq-item { width: 100%; }
}

.consultar-diplomas #assinamos_iframe {
    border: none;
}