/* ==========================================================================
   FAQ STYLE — Bosque Alphagran
   Arquivo: /css/bq-faq.css
   Paleta: verde #444b3b | dourado #a75d4f | texto claro sobre fundo escuro
   ========================================================================== */

/* 🎨 Paleta Bosque Alphagran — fundo claro (página branca) */
:root {
  --ta-faq-bg:            #fbf8f2;
  --ta-faq-card:          #fbf8f2;
  --ta-faq-border:        rgba(167,93,79,.15);
  --ta-faq-shadow:        0 12px 36px rgba(0,0,0,.08);
  --ta-faq-blur:          14px;

  --ta-faq-title:         #1a1a1a;
  --ta-faq-section-title: #1a1a1a;
  --ta-faq-text:          #1a1a1a;
  --ta-faq-muted:         rgba(26,26,26,.72);
  --ta-faq-icon:          #a75d4f;
  --ta-faq-link:          #a75d4f;
  --ta-faq-accent:        #a75d4f;
}

/* Zerar background do wrapper WebAcappella que envolve o FAQ */
.comp_186.wa-box,
.comp_186 .innerBox,
.comp_186 .wa-wrap_video-bg {
  background: #fbf8f2 !important;
  background-color: #fbf8f2 !important;
}

/* Seção container */
.bq-faq-wrap {
  background: #fbf8f2 !important;
  padding: 64px 20px 80px;
}

.ta-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: #fbf8f2;
  font-family: 'Montserrat', Arial, sans-serif;
}

.ta-faq-title {
  font-size: clamp(24px, 2.64vw, 37px); /* +10% de clamp(22px, 2.4vw, 34px) */
  font-weight: 700;
  text-align: left;
  margin: 0 0 8px;
  color: var(--ta-faq-title);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Linha dourada sob o título */
.ta-faq-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #a75d4f;
  margin: 12px 0 32px;
}

.ta-faq-cat { margin: 0 0 28px; }

.ta-faq-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(167,93,79,.15);
}

.ta-faq-cat-ico {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ta-faq-icon);
}

.ta-faq-cat-ico svg { width: 26px; height: 26px; }

.ta-faq-cat-title {
  font-size: clamp(12px, 1.32vw, 14px); /* +10% de clamp(11px, 1.2vw, 13px) */
  font-weight: 600;
  margin: 0;
  color: rgba(26,26,26,.55);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.ta-faq-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(167,93,79,.15);
  color: #a75d4f;
  border: 1px solid rgba(167,93,79,.30);
  letter-spacing: 1px;
}

/* Card glass */
/* Card sem fundo — integra ao fundo da página */
.ta-faq-list {
  background: #fbf8f2 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ta-faq-item + .ta-faq-item {
  border-top: 1px solid rgba(167,93,79,.12);
}

.ta-faq-q {
  width: 100%;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px;
  padding: 18px 20px;
  background: #fbf8f2 !important;
  border: 0 !important;
  cursor: pointer;
  text-align: left;
  color: var(--ta-faq-text);
  transition: background .18s ease;
}

.ta-faq-q:hover {
  background: #5f634f !important;
  color: #ffffff !important;
}

.ta-faq-q:hover .ta-faq-qtext {
  color: #ffffff !important;
}

.ta-faq-q:hover .ta-faq-chevron {
  color: #ffffff !important;
}

.ta-faq-q[aria-expanded="true"] {
  background: #5f634f !important;
  color: #ffffff !important;
}

.ta-faq-q[aria-expanded="true"] .ta-faq-qtext {
  color: #ffffff !important;
}

.ta-faq-qtext {
  font-size: clamp(15px, 1.54vw, 18px); /* +10% de clamp(14px, 1.4vw, 16px) */
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .18s ease;
}

.ta-faq-chevron {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  flex: 0 0 24px !important;
  color: #a75d4f;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), color .18s ease;
}

.ta-faq-chevron svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
}

.ta-faq-q[aria-expanded="true"] .ta-faq-chevron {
  transform: rotate(180deg);
  color: #ffffff !important;
}

/* Painel de resposta */
.ta-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s cubic-bezier(.2,.8,.2,1);
  background: #fbf8f2 !important;
}

.ta-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ta-faq-muted);
  background: #fbf8f2 !important;
}

/* Links e destaques dentro das respostas */
.ta-faq-link {
  color: var(--ta-faq-link);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(167,93,79,.45);
}
.ta-faq-link:hover { opacity: .85; }

.ta-faq-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(26,26,26,.45);
}

/* Mobile */
@media (max-width: 767px) {
  .bq-faq-wrap    { padding: 48px 16px 60px; }
  .ta-faq-q       { padding: 16px 14px; }
  .ta-faq-a-inner { padding: 0 14px 16px; }
}

/* Zerando background de todos os rows WebAcappella dentro do comp_186 do FAQ */
.comp_186 .innerBox,
.comp_186 .row,
.comp_186 .wa_inner_col,
.comp_186 .wa_inner_col2 {
  background: #fbf8f2 !important;
}