.faq-section {
  margin-top: 2rem;
  padding: 1rem 150px;
  background-color: #F9F7F2;
  font-family: 'Montserrat', sans-serif;
}

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0dcd5;
  max-width: 100%;
}

.faq-question {
  background-color: #204B57;
  color: #fff;
  font-size: 1rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 1rem;
}

.faq-question:hover,
.faq-question:focus {
  background-color: #16343e;
  outline: none;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: auto;
}

.faq-answer {
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer strong {
  font-weight: 600;
  color: #333;
}

/* Tablet */
@media (max-width: 1024px) {
  .faq-section {
    padding: 1rem 60px;
  }

  .faq-question {
    white-space: normal;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* Celular */
@media (max-width: 480px) {
  .faq-section {
    padding: 1rem 20px;
  }

  .faq-question {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
    flex-wrap: wrap;
    width: 100%;
  }

  .faq-answer {
    padding: 0.75rem 1rem;
  }
}
