/* ==================================================
   Ouro Gourmet — FAQs
   Secção: Clareza antes do gesto
   ================================================== */

.og-faq {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: #fff;
}

.og-faq .og-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* Header */
.og-faq-header {
  margin-bottom: 3rem;
  text-align: left;
}

.og-faq .og-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a7c38; /* dourado discreto */
  margin-bottom: 0.75rem;
}

.og-faq .og-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

/* Lista */
.og-faq-list {
  border-top: 1px solid #e6e6e6;
}

/* Item */
.og-faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.25rem 0;
}

/* Summary */
.og-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove marker default */
.og-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Ícone */
.og-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #9a7c38;
  transition: transform 0.2s ease;
}

/* Aberto */
.og-faq-item[open] summary::after {
  content: "–";
}

/* Texto */
.og-faq-item p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
}

/* Destaques internos */
.og-faq-item strong {
  font-weight: 500;
  color: #111;
}

/* Espaçamento mobile */
@media (max-width: 768px) {
  .og-faq {
    padding: 3rem 1.25rem;
  }
}