.navbar-header {
  background: #13233e;
}

.informacoes {
  margin-top: 64px;
}

.informacoes-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.informacoes-wave svg {
  width: 100%;
}

.breadcrumb-links {
  justify-content: flex-start;
}

.breadcrumb .container {
  width: 100%;
  max-width: 100%;
}

.informacoes-header {
  padding: 5rem 0;
  background: #13233e;
}

.informacoes-header__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.informacoes-header img {
  border-radius: 10px 50px;
  margin-bottom: 32px;
}

.informacoes-header__content h3 {
  color: #3565b1;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 8px;
}

.informacoes-header__content p {
  color: #181d27;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.informacoes-article {
  padding: 5rem 0;
  background-color: #f6f5f5;
}

.informacoes-article h2 {
  color: #181d27;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
  margin: 24px 0 16px 0;
}

.informacoes-article h3 {
  color: #181d27;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
  margin: 24px 0 16px 0;
}

.informacoes-article p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 16px 0 8px 0;
}

.informacoes-article ul,
.informacoes-article ol {
  margin: 8px 0 16px 0;
  list-style-type: disc;
  list-style-position: inside;
}

.informacoes-article li {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}

.faq {
  padding: 2.5rem 0 5rem;
  background-color: #f6f5f5;
}

.faq .section-title {
  margin-bottom: 5rem;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #f6f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #fefefe;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;

  color: #424242;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  background-color: #fefefe;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.5rem;
}

.faq-answer p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 1.25rem;
    padding: 1.25rem;
  }
}

.more-informacoes {
  padding: 5rem 0;
}

.informacoes-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 80px;
}

.informacoes-cards__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.informacoes-cards__card img {
  width: 100%;
  object-fit: cover;
}

.informacoes-cards__card-content {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

.informacoes-cards__card-content h3 {
  color: #3565b1;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 24px;
}

.informacoes-cards__card-content p {
  color: #5c5c5c;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .informacoes-article h2 {
    font-size: 1.75rem;
  }
  .informacoes-article h3 {
    font-size: 1.5rem;
  }
  .informacoes-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .informacoes {
    margin-top: 98px;
  }
  .informacoes-header__container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .informacoes-header img {
    border-radius: 10px 75px;
  }
  .informacoes-article h2 {
    font-size: 2rem;
  }
  .informacoes-article h3 {
    font-size: 1.75rem;
  }
  .informacoes-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .informacoes-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
