/* Página FAQ — acordeón */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(61, 35, 29, 0.12);
  border-radius: 14px;
  background: #fdf5e6;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(26, 43, 72, 0.22);
  box-shadow: 0 6px 20px rgba(26, 43, 72, 0.08);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.35rem);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a2b48;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 43, 72, 0.08);
  color: #1a2b48;
  font-family: var(--font-body, "Open Sauce One", sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
  background: #1a2b48;
  color: #fdf5e6;
}

.faq-item__answer {
  padding: 0 clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.1rem, 2.5vw, 1.35rem);
  border-top: 1px solid rgba(61, 35, 29, 0.08);
}

.faq-item__answer p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  color: #3d231d;
}

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