/* FAQ Exames Laboratoriais */
.faq-exames-laboratoriais {
  width: 100%;
}

.faq-exames-title {
  color: #4C4C4C;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 24px;
}

.faq-exames-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-exames-item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 80px;
}

.faq-exames-header {
  width: 100%;
}

.faq-exames-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-exames-question {
  flex: 1;
  font-family: "Lab Grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.faq-exames-icon {
  width: 32px;
  height: 32px;
  background-color: #EEEDE7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.faq-exames-icon svg {
  transition: transform 0.3s ease;
  transform: scaleY(1);
}

.faq-exames-item.active .faq-exames-icon {
  background-color: #EEEDE7;
}

.faq-exames-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-exames-answer {
  padding: 0 24px 24px 24px;
  font-family: "Lab Grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #171717;
}

.faq-exames-answer p {
  margin: 0 0 16px 0;
  font-family: "Lab Grotesque", sans-serif;
}

.faq-exames-answer p:last-child {
  margin-bottom: 0;
}

.faq-exames-answer a {
  color: #E51518;
  text-decoration: underline;
}

.faq-exames-answer ul,
.faq-exames-answer ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.faq-exames-answer li {
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .faq-exames-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .faq-exames-item {
    min-height: 65px;
  }

  .faq-exames-toggle {
    padding: 16px;
  }

  .faq-exames-question {
    font-size: 16px;
    line-height: 20px;
  }

  .faq-exames-answer {
    padding: 0 16px 16px 16px;
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .faq-exames-icon {
    width: 28px;
    height: 28px;
  }

  .faq-exames-icon svg {
    width: 9px;
    height: 5px;
  }
}

@media only screen and (min-width: 768px) {
  .faq-exames-toggle {
    padding: 29px 24px 16px 24px;
  }
  
  .faq-exames-answer {
    padding: 0 24px 24px 48px;
  }
  
  .faq-exames-title {
    font-size: 32px;
  }
}

