.tqhc-wrapper,
.tqhc-section {
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #1B2440;
}

.tqhc-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.tqhc-categories-section {
	width: 100%;
	padding: 24px 0;
}

.tqhc-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tqhc-category-card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.72);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(27, 36, 64, 0.045);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.tqhc-category-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(27, 36, 64, 0.08);
	border-color: rgba(36, 189, 192, 0.52);
	background: #ffffff;
}

.tqhc-category-card-link {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	column-gap: 16px;
	align-items: center;
	height: 100%;
	min-height: 142px;
	padding: 20px 22px;
	color: #1B2440;
	text-decoration: none !important;
	box-sizing: border-box;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tqhc-category-card-link:hover,
.tqhc-category-card-link:focus {
	color: #1B2440;
	text-decoration: none !important;
}

.tqhc-category-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: center;
	justify-self: center;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: color-mix(in srgb, var(--tqhc-category-color) 10%, #ffffff);
	color: var(--tqhc-category-color);
	margin: 0;
}

.tqhc-category-icon .dashicons {
	width: auto;
	height: auto;
	font-size: 25px;
	line-height: 1;
}

.tqhc-category-content {
	grid-column: 2;
	min-width: 0;
	flex: initial;
}

.tqhc-category-title {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.28;
	font-weight: 850;
	color: #1B2440 !important;
	letter-spacing: -0.015em;
}

.tqhc-category-description {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.64) !important;
}

.tqhc-category-count {
	display: none;
}

.tqhc-category-footer {
	grid-column: 2;
	margin-top: 12px;
	padding-top: 0;
	border-top: 0;
	align-self: end;
}

.tqhc-category-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	color: #24BDC0 !important;
	font-size: 14px;
	line-height: 1;
	font-weight: 850;
	transition: color 0.2s ease;
}

.tqhc-category-button::after {
	content: "→";
	font-size: 15px;
	line-height: 1;
	transform: translateX(0);
	transition: transform 0.2s ease;
}

.tqhc-category-card:hover .tqhc-category-button {
	color: #8A2BE2 !important;
}

.tqhc-category-card:hover .tqhc-category-button::after {
	transform: translateX(4px);
}

.tqhc-empty-state {
	width: 100%;
	padding: 34px 26px;
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.85);
	border-radius: 22px;
	box-shadow: 0 12px 32px rgba(27, 36, 64, 0.06);
	text-align: center;
	box-sizing: border-box;
}

.tqhc-empty-state h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 800;
	color: #1B2440;
}

.tqhc-empty-state p {
	margin: 0;
	font-size: 15px;
	color: rgba(27, 36, 64, 0.68);
}

@media (max-width: 1024px) {
	.tqhc-categories-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.tqhc-container {
		padding: 0 16px;
	}

	.tqhc-categories-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tqhc-category-card-link {
    	grid-template-columns: 48px minmax(0, 1fr);
    	column-gap: 14px;
    	align-items: center;
    	min-height: 128px;
    	padding: 18px;
    }

	.tqhc-category-icon {
		width: 46px;
		height: 46px;
		border-radius: 13px;
	}

	.tqhc-category-icon .dashicons {
		font-size: 23px;
	}

	.tqhc-category-title {
		font-size: 15px;
	}

	.tqhc-category-description {
    	font-size: 12.5px;
    	line-height: 1.45;
    }

	.tqhc-category-button {
		font-size: 13px;
	}
}

@media (max-width: 680px) {
	.tqhc-single-article-section {
		padding: 34px 0 56px;
	}

	.tqhc-single-article {
		border-radius: 24px;
	}

	.tqhc-single-article-header {
		padding: 30px 24px 24px;
	}

	.tqhc-single-article-content {
		padding: 30px 24px 36px;
		font-size: 16px;
		line-height: 1.72;
	}

	.tqhc-single-article-content h2 {
		font-size: 25px;
	}

	.tqhc-single-article-content h3 {
		font-size: 21px;
	}

	.tqhc-related-heading h2 {
		font-size: 24px;
	}
}

.tqhc-search-section {
	width: 100%;
	padding: 24px 0;
}

.tqhc-search-box {
	position: relative;
	width: 100%;
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.85);
	border-radius: 24px;
	box-shadow: 0 14px 36px rgba(27, 36, 64, 0.08);
	padding: 24px;
	box-sizing: border-box;
}

.tqhc-search-heading {
	margin-bottom: 18px;
}

.tqhc-search-heading h2 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 850;
	letter-spacing: -0.03em;
	color: #1B2440;
}

.tqhc-search-heading p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(27, 36, 64, 0.68);
}

.tqhc-search-form {
	margin: 0;
}

.tqhc-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 8px;
	background: #F7F9FA;
	border: 1px solid rgba(179, 225, 226, 0.95);
	border-radius: 18px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tqhc-search-input-wrap:focus-within {
	background: #ffffff;
	border-color: rgba(36, 189, 192, 0.75);
	box-shadow: 0 0 0 4px rgba(36, 189, 192, 0.10);
}

.tqhc-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	width: 38px;
	height: 38px;
	color: #24BDC0;
	font-size: 22px;
	line-height: 1;
}

.tqhc-search-input {
	flex: 1;
	width: 100%;
	min-height: 44px;
	border: 0 !important;
	outline: none !important;
	background: transparent !important;
	box-shadow: none !important;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1B2440;
}

.tqhc-search-input::placeholder {
	color: rgba(27, 36, 64, 0.48);
}

.tqhc-search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	background: #24BDC0;
	color: #ffffff;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: 850;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.tqhc-search-submit:hover {
	background: #8A2BE2;
	transform: translateY(-1px);
}

.tqhc-search-feedback {
	min-height: 20px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 700;
	color: rgba(27, 36, 64, 0.58);
}

.tqhc-search-results {
	display: none;
	margin-top: 14px;
}

.tqhc-search-results.is-active {
	display: block;
}

.tqhc-search-results.is-loading {
	position: relative;
	opacity: 0.72;
}

.tqhc-search-results-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.tqhc-search-result-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.75);
	border-radius: 18px;
	text-decoration: none !important;
	color: #1B2440 !important;
	box-shadow: 0 10px 24px rgba(27, 36, 64, 0.05);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tqhc-search-result-item:hover {
	transform: translateY(-2px);
	border-color: rgba(36, 189, 192, 0.65);
	box-shadow: 0 14px 30px rgba(27, 36, 64, 0.09);
}

.tqhc-search-result-content {
	flex: 1;
	min-width: 0;
}

.tqhc-search-result-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 7px;
}

.tqhc-search-result-meta span {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
	font-size: 12px;
	line-height: 1;
	font-weight: 850;
}

.tqhc-search-result-meta span + span {
	background: #F7F9FA;
	color: rgba(27, 36, 64, 0.62);
}

.tqhc-search-result-item h3 {
	margin: 0 0 7px;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 850;
	color: #1B2440 !important;
	letter-spacing: -0.02em;
}

.tqhc-search-result-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(27, 36, 64, 0.68) !important;
}

.tqhc-search-result-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
	font-size: 18px;
	font-weight: 850;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tqhc-search-result-item:hover .tqhc-search-result-arrow {
	background: #24BDC0;
	color: #ffffff;
	transform: translateX(3px);
}

.tqhc-search-no-results {
	padding: 24px;
	background: #F7F9FA;
	border: 1px solid rgba(179, 225, 226, 0.85);
	border-radius: 18px;
	text-align: center;
}

.tqhc-search-no-results h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 850;
	color: #1B2440;
}

.tqhc-search-no-results p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(27, 36, 64, 0.68);
}

@media (max-width: 680px) {
	.tqhc-search-box {
		padding: 18px;
		border-radius: 22px;
	}

	.tqhc-search-input-wrap {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		padding: 12px;
	}

	.tqhc-search-icon {
		position: absolute;
		left: 18px;
		top: 17px;
		width: 28px;
		height: 28px;
		min-width: 28px;
	}

	.tqhc-search-input {
		min-height: 42px;
		padding-left: 38px !important;
		font-size: 15px;
	}

	.tqhc-search-submit {
		width: 100%;
	}

	.tqhc-search-result-item {
		align-items: flex-start;
		padding: 16px;
	}

	.tqhc-search-result-arrow {
		display: none;
	}
}

.tqhc-section-heading {
	margin-bottom: 22px;
}

.tqhc-section-heading h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.18;
	font-weight: 850;
	letter-spacing: -0.035em;
	color: #1B2440;
}

.tqhc-section-heading p {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(27, 36, 64, 0.68);
}

.tqhc-popular-tags-section {
	width: 100%;
	padding: 20px 0;
}

.tqhc-popular-tags-heading {
	margin-bottom: 16px;
}

.tqhc-popular-tags-heading h2 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 800;
	color: #1B2440;
}

.tqhc-popular-tags-heading p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(27, 36, 64, 0.68);
}

.tqhc-popular-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.tqhc-popular-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid rgba(179, 225, 226, 0.95);
	border-radius: 999px;
	background: #ffffff;
	color: #51607a !important;
	text-decoration: none !important;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(27, 36, 64, 0.04);
	transition: all 0.2s ease;
}

.tqhc-popular-tag:hover {
	color: #24BDC0 !important;
	border-color: rgba(36, 189, 192, 0.55);
	background: #F7F9FA;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(27, 36, 64, 0.08);
}

.tqhc-popular-tag-text {
	display: inline-block;
}

.tqhc-popular-tag-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
	font-size: 12px;
	line-height: 1;
	font-weight: 800;
	white-space: nowrap;
}

@media (max-width: 680px) {
	.tqhc-popular-tags-list {
		gap: 10px;
	}

	.tqhc-popular-tag {
		padding: 9px 14px;
		font-size: 13px;
	}
}

/* ==========================================================
   Página dinâmica de categoria
   URL: /ajuda/categoria/{slug}/
========================================================== */

.tqhc-template {
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #1B2440;
	background: #ffffff;
}

.tqhc-category-template {
	background:
		linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #F7F9FA 100%);
}

.tqhc-dynamic-category-section {
	width: 100%;
	padding: 48px 0 76px;
}

.tqhc-dynamic-category-section .tqhc-container {
	max-width: 1180px;
}

/* Breadcrumb */

.tqhc-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: rgba(27, 36, 64, 0.52);
}

.tqhc-breadcrumb a {
	color: #24BDC0 !important;
	text-decoration: none !important;
	font-weight: 800;
}

.tqhc-breadcrumb a:hover {
	color: #8A2BE2 !important;
}

.tqhc-breadcrumb span {
	display: inline-flex;
	align-items: center;
}

/* Hero da categoria */

.tqhc-category-hero {
	position: relative;
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	width: 100%;
	padding: 34px 38px;
	margin-bottom: 34px;
	border-radius: 28px;
	border: 1px solid rgba(179, 225, 226, 0.9);
	background:
		radial-gradient(circle at 92% 12%, rgba(36, 189, 192, 0.18), transparent 32%),
		linear-gradient(135deg, #F7F9FA 0%, #ffffff 62%, rgba(179, 225, 226, 0.28) 100%);
	box-shadow: 0 18px 46px rgba(27, 36, 64, 0.075);
	box-sizing: border-box;
	overflow: hidden;
}

.tqhc-category-hero::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 230px;
	height: 230px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.08);
	pointer-events: none;
}

.tqhc-category-hero-icon {
	position: relative;
	z-index: 1;
	width: 70px;
	height: 70px;
	min-width: 70px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	background: color-mix(in srgb, var(--tqhc-category-color) 12%, #ffffff);
	color: var(--tqhc-category-color);
	box-shadow: 0 12px 24px rgba(27, 36, 64, 0.055);
}

.tqhc-category-hero-icon .dashicons {
	width: auto;
	height: auto;
	font-size: 34px;
	line-height: 1;
}

.tqhc-category-hero-content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.tqhc-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 10px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
	font-size: 12px;
	line-height: 1;
	font-weight: 850;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.tqhc-category-hero h1 {
	margin: 0;
	max-width: 860px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.05;
	font-weight: 850;
	letter-spacing: -0.045em;
	color: #1B2440;
}

.tqhc-category-hero-description {
	max-width: 760px;
	margin-top: 14px;
	font-size: 16px;
	line-height: 1.62;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.70);
}

.tqhc-category-hero-description p {
	margin: 0;
}

/* Cabeçalho da lista de artigos */

.tqhc-category-page-body {
	width: 100%;
}

.tqhc-category-page-heading {
	margin: 0 0 22px;
}

.tqhc-category-page-heading h2 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.18;
	font-weight: 850;
	letter-spacing: -0.035em;
	color: #1B2440;
}

.tqhc-category-page-heading p {
	margin: 0;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.66);
}

/* Empty state dentro da página de categoria */

.tqhc-dynamic-category-section .tqhc-empty-state {
	max-width: 100%;
	padding: 42px 28px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, #ffffff 0%, #F7F9FA 100%);
	border: 1px solid rgba(179, 225, 226, 0.9);
	box-shadow: 0 12px 34px rgba(27, 36, 64, 0.055);
}

.tqhc-dynamic-category-section .tqhc-empty-state h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 850;
	color: #1B2440;
}

.tqhc-dynamic-category-section .tqhc-empty-state p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.62);
}

/* Correção dos cards de artigos dentro da categoria */

.tqhc-dynamic-category-section .tqhc-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.tqhc-dynamic-category-section .tqhc-article-card {
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.78);
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(27, 36, 64, 0.055);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tqhc-dynamic-category-section .tqhc-article-card:hover {
	transform: translateY(-3px);
	border-color: rgba(36, 189, 192, 0.56);
	box-shadow: 0 16px 36px rgba(27, 36, 64, 0.09);
}

.tqhc-dynamic-category-section .tqhc-article-card-link {
	display: flex;
	flex-direction: column;
	min-height: 210px;
	height: 100%;
	padding: 22px;
	color: #1B2440 !important;
	text-decoration: none !important;
	box-sizing: border-box;
}

.tqhc-dynamic-category-section .tqhc-article-card-top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.tqhc-dynamic-category-section .tqhc-article-badge,
.tqhc-dynamic-category-section .tqhc-article-category {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	font-weight: 850;
}

.tqhc-dynamic-category-section .tqhc-article-badge {
	background: rgba(138, 43, 226, 0.10);
	color: #8A2BE2;
}

.tqhc-dynamic-category-section .tqhc-article-category {
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
}

.tqhc-dynamic-category-section .tqhc-article-title {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.28;
	font-weight: 850;
	letter-spacing: -0.02em;
	color: #1B2440 !important;
}

.tqhc-dynamic-category-section .tqhc-article-excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.58;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.66) !important;
}

.tqhc-dynamic-category-section .tqhc-article-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 22px;
}

.tqhc-dynamic-category-section .tqhc-article-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #24BDC0 !important;
	font-size: 14px;
	line-height: 1;
	font-weight: 850;
}

.tqhc-dynamic-category-section .tqhc-article-read-more::after {
	content: "→";
	font-size: 15px;
	line-height: 1;
	transform: translateX(0);
	transition: transform 0.2s ease;
}

.tqhc-dynamic-category-section .tqhc-article-card:hover .tqhc-article-read-more {
	color: #8A2BE2 !important;
}

.tqhc-dynamic-category-section .tqhc-article-card:hover .tqhc-article-read-more::after {
	transform: translateX(4px);
}

.tqhc-dynamic-category-section .tqhc-article-reading-time {
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	color: rgba(27, 36, 64, 0.55);
	white-space: nowrap;
}

/* Responsivo */

@media (max-width: 1024px) {
	.tqhc-dynamic-category-section .tqhc-articles-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.tqhc-dynamic-category-section {
		padding: 32px 0 56px;
	}

	.tqhc-breadcrumb {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.tqhc-category-hero {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 24px;
		margin-bottom: 30px;
		border-radius: 24px;
	}

	.tqhc-category-hero-icon {
		width: 60px;
		height: 60px;
		min-width: 60px;
		border-radius: 18px;
	}

	.tqhc-category-hero-icon .dashicons {
		font-size: 30px;
	}

	.tqhc-kicker {
		font-size: 11px;
	}

	.tqhc-category-hero h1 {
		font-size: 34px;
		letter-spacing: -0.04em;
	}

	.tqhc-category-hero-description {
		font-size: 14px;
		line-height: 1.55;
	}

	.tqhc-category-page-heading h2 {
		font-size: 24px;
	}

	.tqhc-category-page-heading p {
		font-size: 14px;
	}

	.tqhc-dynamic-category-section .tqhc-articles-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tqhc-dynamic-category-section .tqhc-article-card-link {
		min-height: auto;
		padding: 20px;
	}

	.tqhc-dynamic-category-section .tqhc-article-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.tqhc-dynamic-category-section .tqhc-empty-state {
		padding: 32px 20px;
	}
}

/* ==========================================================
   Página individual do artigo
   URL: /ajuda/artigo/{slug}/
========================================================== */

.tqhc-single-article-section {
	width: 100%;
	padding: 46px 0 78px;
	background: #ffffff;
}

.tqhc-article-container {
	max-width: 1180px;
}

.tqhc-single-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: flex-start;
}

.tqhc-single-article {
	min-width: 0;
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.85);
	border-radius: 28px;
	box-shadow: 0 16px 44px rgba(27, 36, 64, 0.065);
	overflow: hidden;
}

.tqhc-single-article-header {
	padding: 42px 46px 32px;
	background:
		radial-gradient(circle at top right, rgba(36, 189, 192, 0.14), transparent 34%),
		linear-gradient(135deg, #F7F9FA 0%, #ffffff 100%);
	border-bottom: 1px solid rgba(179, 225, 226, 0.65);
}

.tqhc-single-article-category {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 16px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0;
	font-size: 12px;
	line-height: 1;
	font-weight: 850;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.tqhc-single-article-header h1 {
	margin: 0;
	max-width: 850px;
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.05;
	font-weight: 850;
	letter-spacing: -0.045em;
	color: #1B2440;
}

.tqhc-single-article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
	color: rgba(27, 36, 64, 0.62);
}

.tqhc-single-article-content {
	padding: 42px 46px 52px;
	font-size: 18px;
	line-height: 1.82;
	font-weight: 500;
	color: rgba(27, 36, 64, 0.84);
}

.tqhc-single-article-content > *:first-child {
	margin-top: 0;
}

.tqhc-single-article-content > *:last-child {
	margin-bottom: 0;
}

.tqhc-single-article-content p {
	margin: 0 0 24px;
}

.tqhc-single-article-content h2,
.tqhc-single-article-content h3,
.tqhc-single-article-content h4 {
	scroll-margin-top: 110px;
	color: #1B2440;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.tqhc-single-article-content h2 {
	margin: 46px 0 16px;
	font-size: 32px;
	font-weight: 850;
}

.tqhc-single-article-content h3 {
	margin: 34px 0 14px;
	font-size: 24px;
	font-weight: 850;
}

.tqhc-single-article-content h4 {
	margin: 28px 0 12px;
	font-size: 20px;
	font-weight: 800;
}

.tqhc-single-article-content ul,
.tqhc-single-article-content ol {
	margin: 0 0 26px;
	padding-left: 26px;
}

.tqhc-single-article-content li {
	margin-bottom: 10px;
}

.tqhc-single-article-content strong {
	font-weight: 850;
	color: #1B2440;
}

.tqhc-single-article-content a {
	color: #24BDC0;
	font-weight: 850;
	text-decoration: none;
}

.tqhc-single-article-content a:hover {
	color: #8A2BE2;
	text-decoration: underline;
}

.tqhc-single-article-content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 30px 0;
	border-radius: 22px;
	box-shadow: 0 14px 34px rgba(27, 36, 64, 0.08);
}

.tqhc-single-article-content figure {
	margin: 34px 0;
}

.tqhc-single-article-content figure img {
	margin: 0;
}

.tqhc-single-article-content figcaption {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.45;
	text-align: center;
	color: rgba(27, 36, 64, 0.54);
}

.tqhc-single-article-content blockquote {
	margin: 32px 0;
	padding: 22px 26px;
	border-left: 4px solid #24BDC0;
	border-radius: 18px;
	background: #F7F9FA;
	color: #1B2440;
	font-weight: 700;
}

/* Sidebar */

.tqhc-article-sidebar {
	position: sticky;
	top: 110px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.tqhc-article-sidebar-card,
.tqhc-article-sidebar-help {
	background: #ffffff;
	border: 1px solid rgba(179, 225, 226, 0.85);
	border-radius: 22px;
	box-shadow: 0 12px 34px rgba(27, 36, 64, 0.06);
	overflow: hidden;
}

.tqhc-article-sidebar-card h3,
.tqhc-article-sidebar-help h3 {
	margin: 0;
	padding: 20px 22px;
	background: #F7F9FA;
	border-bottom: 1px solid rgba(179, 225, 226, 0.65);
	font-size: 18px;
	line-height: 1.25;
	font-weight: 850;
	color: #1B2440;
}

.tqhc-article-toc {
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.tqhc-article-toc-link {
	display: block;
	padding: 11px 12px;
	border-radius: 13px;
	color: rgba(27, 36, 64, 0.70) !important;
	text-decoration: none !important;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tqhc-article-toc-link:hover {
	background: rgba(36, 189, 192, 0.10);
	color: #24BDC0 !important;
	transform: translateX(2px);
}

.tqhc-article-toc-link.is-level-3 {
	padding-left: 24px;
	font-size: 13px;
	font-weight: 650;
	color: rgba(27, 36, 64, 0.58) !important;
}

.tqhc-article-sidebar-help {
	padding-bottom: 20px;
}

.tqhc-article-sidebar-help p {
	margin: 16px 22px 18px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(27, 36, 64, 0.66);
}

.tqhc-article-sidebar-help a {
	display: inline-flex;
	align-items: center;
	margin: 0 22px;
	padding: 11px 14px;
	border-radius: 999px;
	background: #24BDC0;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 13px;
	line-height: 1;
	font-weight: 850;
	transition: background 0.2s ease, transform 0.2s ease;
}

.tqhc-article-sidebar-help a:hover {
	background: #8A2BE2;
	transform: translateY(-1px);
}

/* Relacionados abaixo do artigo */

.tqhc-related-section {
	margin-top: 48px;
}

.tqhc-related-heading {
	margin-bottom: 22px;
}

.tqhc-related-heading h2 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 850;
	letter-spacing: -0.03em;
	color: #1B2440;
}

.tqhc-related-heading p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(27, 36, 64, 0.68);
}

/* Responsivo */

@media (max-width: 1024px) {
	.tqhc-single-article-layout {
		grid-template-columns: 1fr;
	}

	.tqhc-article-sidebar {
		position: static;
		order: -1;
	}
}

@media (max-width: 680px) {
	.tqhc-single-article-section {
		padding: 32px 0 58px;
	}

	.tqhc-single-article {
		border-radius: 24px;
	}

	.tqhc-single-article-header {
		padding: 30px 24px 24px;
	}

	.tqhc-single-article-header h1 {
		font-size: 34px;
	}

	.tqhc-single-article-content {
		padding: 30px 24px 38px;
		font-size: 16px;
		line-height: 1.74;
	}

	.tqhc-single-article-content h2 {
		font-size: 26px;
	}

	.tqhc-single-article-content h3 {
		font-size: 22px;
	}

	.tqhc-article-sidebar-card h3,
	.tqhc-article-sidebar-help h3 {
		padding: 18px 20px;
		font-size: 17px;
	}
}