.faq-card {
  display: grid;
  gap: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0.9rem 1rem;
  background: transparent;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question:hover {
  background: #eef2ff;
}

.faq-question:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: -2px;
}

.faq-question-icon {
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-weight: 700;
  line-height: 1;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: #334155;
  line-height: 1.45;
}

.faq-answer p {
  margin: 0;
}

.faq-answer-link {
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}

.faq-answer-link:hover {
  text-decoration: underline;
}

.faq-cta {
  margin-top: 0.6rem;
  border: 1px solid #c7f9cc;
  border-radius: 12px;
  background: #f0fdf4;
  padding: 0.9rem;
  text-align: center;
}

.faq-cta-title {
  margin: 0;
  color: #166534;
}

.faq-cta-text {
  margin: 0.4rem 0 0.7rem;
  color: #334155;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

@media (max-width: 560px) {
  .faq-question {
    font-size: 0.92rem;
    padding: 0.82rem 0.85rem;
  }

  .faq-answer {
    padding: 0 0.85rem 0.9rem;
  }

  .faq-cta {
    padding: 0.8rem;
  }
}
