/* ── FAQ Hero ── */
.faq-hero {
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  background: var(--white);
}
.faq-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(238, 221, 209, 0.4);
  color: var(--brand-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
  margin-bottom: 1.5rem;
}
.faq-badge i { font-size: 0.875rem; }
.faq-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.faq-hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75rem;
}

/* ── FAQ Items ── */
.faq-section {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.faq-section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  overflow: hidden;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-summary-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(238, 221, 209, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-icon i {
  color: var(--brand-brown);
  font-size: 1.25rem;
}
.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}
.faq-caret {
  color: var(--gray-400);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.faq-item[open] .faq-caret {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 2rem 1.5rem;
  padding-left: 72px;
  padding-top: 0.5rem;
  color: var(--gray-600);
  line-height: 1.625;
}

/* ── Contact CTA Banner ── */
.faq-cta {
  margin-top: 4rem;
  background: #22363e;
  border-radius: 32px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}
.faq-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.faq-cta-subtitle {
  color: var(--gray-400);
}
.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--brand-darkText);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-whatsapp:hover { background: var(--gray-100); }
.btn-whatsapp i { font-size: 1.25rem; }
.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-email:hover { background: var(--brand-blue-hover); }
