/*
 * Estilos para la página de Preguntas Frecuentes.
 * Implementa un acordeón simple para mostrar preguntas y respuestas.
 */

.rr-faq {
  background: #f9fafb;
  padding: 40px 0;
}

.rr-faq__wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}
.rr-faq__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}
.rr-faq__intro {
  color: #6b7280;
  margin-bottom: 32px;
}
.rr-faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.rr-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  cursor: pointer;
  color: #111827;
}
.rr-faq-item__question:hover,
.rr-faq-item__question:focus {
  background: #f3f4f6;
}
.rr-faq-item__icon {
  transition: transform 0.2s ease;
}
.rr-faq-item.is-open .rr-faq-item__icon {
  transform: rotate(180deg);
}
.rr-faq-item__answer {
  display: none;
  padding: 0 24px 16px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}
.rr-faq-item.is-open .rr-faq-item__answer {
  display: block;
}
.rr-faq__cta {
  background: #eff6ff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.rr-faq__cta h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}
.rr-faq__cta p {
  color: #6b7280;
  margin-bottom: 16px;
}
.rr-faq__cta .rr-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.rr-faq__cta .rr-btns a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}
.rr-faq__cta .rr-btns a:first-child {
  background: #2563eb;
  color: #ffffff;
}
.rr-faq__cta .rr-btns a:first-child:hover {
  background: #1e40af;
}
.rr-faq__cta .rr-btns a:last-child {
  border: 2px solid #2563eb;
  color: #2563eb;
}
.rr-faq__cta .rr-btns a:last-child:hover {
  background: #e0e7ff;
}