/**
 * FAQ HiKapto — /saas-auditoria/
 */

.hikapto-faq-section {
	background: #ffffff;
	padding: 5rem 5%;
}

.hikapto-faq-section__inner {
	max-width: 800px;
	margin: 0 auto;
}

.hikapto-faq-section__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.hikapto-faq-section__title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3.5vw, 2.125rem);
	font-weight: 800;
	line-height: 1.25;
	color: #111827;
}

.hikapto-faq-section__subtitle {
	margin: 0 auto;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #4b5563;
}

.hikapto-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hikapto-faq-details {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 0.75rem;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hikapto-faq-details:last-child {
	margin-bottom: 0;
}

.hikapto-faq-details[open] {
	border-color: rgba(0, 139, 255, 0.3);
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
}

.hikapto-faq-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

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

.hikapto-faq-summary::marker {
	display: none;
	content: '';
}

.hikapto-faq-summary__text {
	flex: 1;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
	color: #111827;
	text-align: left;
}

.hikapto-faq-summary__chevron {
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	margin-top: 0.45rem;
	border-right: 2px solid #008bff;
	border-bottom: 2px solid #008bff;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.hikapto-faq-details[open] .hikapto-faq-summary__chevron {
	transform: rotate(-135deg);
	margin-top: 0.65rem;
}

.hikapto-faq-panel {
	padding: 0 1.5rem 1.25rem;
	border-top: 1px solid #f3f4f6;
}

.hikapto-faq-answer {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #4b5563;
}

@media (max-width: 768px) {
	.hikapto-faq-section {
		padding: 3rem 1.25rem;
	}

	.hikapto-faq-summary {
		padding: 1rem 1.125rem;
	}

	.hikapto-faq-summary__text {
		font-size: 0.9375rem;
	}

	.hikapto-faq-panel {
		padding: 0 1.125rem 1rem;
	}
}
