/* FAQ do produto — details/summary nativo, no estilo editorial do site. */
.product-faq {
	max-width: 900px;
	margin: 48px auto;
	padding: 0 20px;
}
.product-faq h2 {
	font-family: var(--font-display, 'Bebas Neue', Impact, sans-serif);
	font-size: clamp(28px, 4vw, 40px);
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-align: center;
}
.product-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.product-faq-item {
	border: 4px solid #000;
	background: #fff;
	padding: 0;
}
.product-faq-item summary {
	cursor: pointer;
	padding: 16px 20px;
	font-weight: 700;
	font-size: 16px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-faq-item summary::-webkit-details-marker {
	display: none;
}
.product-faq-item summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 900;
	margin-left: 12px;
	transition: transform 0.2s ease;
}
.product-faq-item[open] summary::after {
	transform: rotate(45deg);
}
.product-faq-item summary:hover {
	background: #FFFDE7;
}
.product-faq-item p {
	margin: 0;
	padding: 0 20px 18px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}
