.sobre {
    padding-top: 10.4rem !important;
}

.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 {
    background: rgb(240, 240, 240);

    padding: 8dvh 3.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}


.sobre { gap: 3.2rem; }

.sobre .content {
  display: flex;
  justify-content: space-evenly;

  .title-content {
    display: flex;
    gap: 0.8rem;

    .listra { 
      width: 0.3rem;
      height: 7.2rem;

      background-color: black;
    }

    h3 { font-size: var(--font-large); }
    h4 { font-size: var(--font-sec); font-weight: 300; }

    .text { line-height: 2.4rem; padding: 0.8rem 0; }
  }

  .text-content {
    max-width: 60%;

    display: flex;
    flex-direction: column;
    gap: 2.4rem;

    font-style: italic;
  }
}

@media ( max-width: 1100px ) {
  .sobre .content {
    flex-direction: column;
    align-items: left;
    gap: 3.2rem;

    .text-content { max-width: 100%; }
  }
}

.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.4;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.6rem;

        padding: 3.2rem;
        
        border-radius: 1.6rem;
        background-color: rgba(240, 240, 240, 0.100);

        p { color: rgb(240, 240, 240); }
    }
}

.atribuicoes button {
    padding: 0.8rem 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    color: #264AD6;
    font-weight: 500;
    background-color: white;

    border: none;
    border-radius: 3.2rem;

    transition: ease-in-out all 0.25s;

    a { color: #264AD6; }
}

.faq-container {
    background: rgb(240, 240, 240);

    padding: 8dvh 3.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}


.faq-container {
  width: 100%;
  margin: auto;
}

.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%; }
}

.video {
    display: flex;
    justify-content: space-evenly;
    gap: 3.2rem;

    padding: 12dvh 3.2rem;

    background-image: url(../images/background.png);
    background-size: cover;
    background-position: center;

    button {
      padding: 0.8rem 4.8rem;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;

      color: #264AD6;
      font-weight: 500;
      background-color: white;

      border: none;
      border-radius: 3.2rem;
  }

    img, video { 
        width: 30%; 
        aspect-ratio: 1 / 1.3; 

        border-radius: 3.2rem; 
        box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.200);
    }

    video {
        transform-origin: center center;
        object-fit: cover;
    }

    .text { 
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.6rem;

        width: 40%;

        color: white;
    }

    .fale-conosco { background-color: rgb(215, 215, 0); color: rgb(0, 0, 85) }
}


@media ( max-width: 1100px ) {
    .video { flex-direction: column; }
    .video { 
        align-items: center; 

        .text { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .text, img, video { width: 75%; }
    }
}

@media ( max-width: 760px ) {
    .video { .text, img, video { width: 100%; border-radius: 1.6rem; } }
}

.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); }

.container-depoimentos {
    margin-top: 4.8rem;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.2rem;

    .profile-pic {
      width: 8rem;
      height: 8rem;
    }
}

.depoimentos {
    padding: 8dvh 3.2rem; gap: 7.2rem;
    background: rgb(240, 240, 240);

    display: flex; 
    flex-direction: column; 
    gap: 3.2rem; 
}

.location {
  display: flex;
  justify-content: space-evenly;
  padding: 8dvh 3.2rem;
  background-color: rgb(240, 240, 240);
  align-items: stretch; 
}

.location iframe {
  width: 40%;
  height: 450px; 
  border-radius: 1.6rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}

.forms {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;

  h2 { border: none; text-align: left; padding: 0; }
}

.forms .title {
  align-items: flex-start;
  line-height: 1.6rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  height: 100%; 

  button {
      padding: 0.8rem 4.8rem;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;

      color: white;
      font-weight: bold;
      background-color: rgb(0, 0, 85);

      border: none;
      border-radius: 3.2rem;
  }
}

input, textarea {
  width: 100%;
  min-height: 3.2rem;

  padding-left: 1.6rem;

  border: none;
  border-radius: 1.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);

  outline: none;
}

textarea {
  height: 100%;
  padding-top: 0.8rem;
}

@media ( max-width: 1100px ) {
  .location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
  }

  .forms .title { 
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .location iframe, .forms {
    width: 75%;
  }
}

@media ( max-width: 760px ) {
  .location iframe, .forms {
    width: 100%;
  }
}
