/**
 * Concursos Hub — estilos do frontend.
 * Escrito mobile-first: as regras base valem para o celular e só crescem
 * a partir de 640px / 960px / 1200px.
 *
 * Sem fontes externas: a pilha de sistema elimina uma requisição de rede
 * e o "flash" de texto sem fonte.
 */

/* ------------------------------------------------------------- Tokens -- */

.ch-site {
	--ch-primary: #1e4fd8;
	--ch-dark: #12246b;
	--ch-accent: #0f9d58;
	--ch-bg: #f5f7fc;
	--ch-radius: 16px;

	--ch-ink: #0c1424;
	--ch-muted: #5a6780;
	--ch-border: #e3e8f2;
	--ch-surface: #ffffff;
	--ch-warn: #b45309;

	--ch-tint: #e9effd;
	--ch-focus: #93b0f2;
	--ch-ring: rgba(30, 79, 216, .18);
	--ch-glow: rgba(30, 79, 216, .22);
	--ch-border-hover: #b9c9f5;
	--ch-ok-bg: #e7f6ee;
	--ch-ok-fg: #0b7a44;

	--ch-shadow-sm: 0 1px 2px rgba(12, 20, 36, .06), 0 1px 3px rgba(12, 20, 36, .04);
	--ch-shadow-md: 0 4px 12px rgba(12, 20, 36, .07), 0 2px 4px rgba(12, 20, 36, .04);
	--ch-shadow-lg: 0 18px 40px rgba(12, 20, 36, .12);

	--ch-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

	--ch-gap: 16px;
	--ch-pad: 20px;
}

/* Quando o navegador suporta color-mix, os tons acompanham a cor escolhida
   no painel. Sem suporte (Safari antigo), valem os valores fixos acima. */
@supports (color: color-mix(in srgb, red 50%, white)) {
	.ch-site {
		--ch-tint: color-mix(in srgb, var(--ch-primary) 11%, white);
		--ch-focus: color-mix(in srgb, var(--ch-primary) 45%, white);
		--ch-ring: color-mix(in srgb, var(--ch-primary) 18%, transparent);
		--ch-glow: color-mix(in srgb, var(--ch-primary) 22%, transparent);
		--ch-border-hover: color-mix(in srgb, var(--ch-primary) 35%, var(--ch-border));
		--ch-ok-bg: color-mix(in srgb, var(--ch-accent) 13%, white);
		--ch-ok-fg: color-mix(in srgb, var(--ch-accent) 80%, black);
	}
}

/* ------------------------------------------------------------- Base ---- */

.ch-site .ch-wrap {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: var(--ch-pad);
	box-sizing: border-box;
}

.ch-site .ch-wrap--narrow {
	max-width: 760px;
}

.ch-site [class^="ch-"],
.ch-site [class*=" ch-"] {
	font-family: var(--ch-font);
	box-sizing: border-box;
}

.ch-site .ch-i {
	width: 1.1em;
	height: 1.1em;
	flex: none;
	vertical-align: -.15em;
}

.ch-site .is-hidden {
	display: none !important;
}

.ch-site .ch-muted {
	color: var(--ch-muted);
}

/* ------------------------------------------------------------ Botões --- */

.ch-site .ch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: calc(var(--ch-radius) * .7);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
	-webkit-tap-highlight-color: transparent;
}

.ch-site .ch-btn--lg {
	padding: 15px 24px;
	font-size: 16px;
}

.ch-site .ch-btn--block {
	width: 100%;
}

.ch-site .ch-btn--primary {
	background: var(--ch-primary);
	color: #fff;
	box-shadow: var(--ch-shadow-sm);
}

.ch-site .ch-btn--primary:hover {
	background: var(--ch-dark);
	transform: translateY(-1px);
	box-shadow: var(--ch-shadow-md);
	color: #fff;
}

.ch-site .ch-btn--outline {
	background: var(--ch-surface);
	border-color: var(--ch-border);
	color: var(--ch-ink);
}

.ch-site .ch-btn--outline:hover {
	border-color: var(--ch-primary);
	color: var(--ch-primary);
}

.ch-site .ch-btn--ghost {
	background: transparent;
	border-color: var(--ch-border);
	color: var(--ch-muted);
}

.ch-site .ch-btn--ghost:hover {
	color: var(--ch-ink);
	border-color: var(--ch-ink);
}

.ch-site .ch-btn--light {
	background: #fff;
	color: var(--ch-dark);
}

.ch-site .ch-btn--play {
	background: var(--ch-ink);
	color: #fff;
	text-align: left;
}

.ch-site .ch-btn--play span {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.ch-site .ch-btn--play small {
	font-size: 11px;
	font-weight: 500;
	opacity: .8;
}

.ch-site .ch-btn--play strong {
	font-size: 16px;
}

.ch-site .ch-btn:active {
	transform: translateY(1px) scale(.995);
}

.ch-site .ch-btn:focus-visible,
.ch-site a:focus-visible,
.ch-site button:focus-visible,
.ch-site input:focus-visible,
.ch-site select:focus-visible,
.ch-site summary:focus-visible {
	outline: 3px solid var(--ch-focus);
	outline-offset: 2px;
}

/* -------------------------------------------------------------- Hero --- */

.ch-site .ch-hero {
	background:
		radial-gradient(1100px 420px at 15% -10%, var(--ch-glow), transparent 60%),
		linear-gradient(160deg, var(--ch-dark), var(--ch-primary));
	color: #fff;
	padding: 56px 0 40px;
}

.ch-site .ch-hero__inner {
	text-align: center;
}

.ch-site .ch-hero__title {
	margin: 0 0 14px;
	font-size: clamp(28px, 6vw, 52px);
	line-height: 1.12;
	letter-spacing: -.02em;
	font-weight: 800;
	color: #fff;
	text-wrap: balance;
}

.ch-site .ch-hero__sub {
	margin: 0 auto 26px;
	max-width: 680px;
	font-size: clamp(15px, 2.4vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, .88);
}

.ch-site .ch-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 420px;
	margin: 0 auto;
}

.ch-site .ch-hero__actions .ch-btn--primary {
	background: #fff;
	color: var(--ch-dark);
}

.ch-site .ch-hero__actions .ch-btn--primary:hover {
	background: #f2f5ff;
	color: var(--ch-dark);
}

.ch-site .ch-hero__actions .ch-btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, .5);
	color: #fff;
}

.ch-site .ch-hero__actions .ch-btn--outline:hover {
	background: rgba(255, 255, 255, .12);
	border-color: #fff;
	color: #fff;
}

.ch-site .ch-hero__stats {
	display: grid;
	gap: 10px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.ch-site .ch-hero__stats li {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: calc(var(--ch-radius) * .75);
	padding: 12px 14px;
}

.ch-site .ch-hero__stats strong {
	display: block;
	font-size: 20px;
	font-weight: 700;
}

.ch-site .ch-hero__stats span {
	font-size: 13px;
	color: rgba(255, 255, 255, .78);
}

/* ------------------------------------------------------------ Busca ---- */

.ch-site .ch-search {
	background: var(--ch-bg);
	padding: 28px 0;
	border-bottom: 1px solid var(--ch-border);
}

.ch-site .ch-search__title {
	margin: 0 0 14px;
	font-size: clamp(19px, 3.4vw, 26px);
	font-weight: 700;
	color: var(--ch-ink);
	text-align: center;
}

.ch-site .ch-search__form {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 10px;
	box-shadow: var(--ch-shadow-md);
	max-width: 820px;
	margin: 0 auto;
}

.ch-site .ch-search__icon {
	position: absolute;
	left: 24px;
	top: 26px;
	color: var(--ch-muted);
	pointer-events: none;
}

.ch-site .ch-search__input {
	width: 100%;
	border: 1px solid transparent;
	background: var(--ch-bg);
	border-radius: calc(var(--ch-radius) * .7);
	padding: 14px 14px 14px 44px;
	font-size: 16px; /* 16px evita o zoom automático no iOS */
	color: var(--ch-ink);
	appearance: none;
}

.ch-site .ch-search__input::placeholder {
	color: var(--ch-muted);
}

.ch-site .ch-search__input:focus {
	background: #fff;
	border-color: var(--ch-primary);
	outline: none;
}

.ch-site .ch-search__hint {
	margin: 12px auto 0;
	max-width: 820px;
	font-size: 13px;
	color: var(--ch-muted);
	text-align: center;
}

.ch-site .ch-search__results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	box-shadow: var(--ch-shadow-lg);
	z-index: 60;
	overflow: hidden;
	max-height: 60vh;
	overflow-y: auto;
}

.ch-site .ch-suggest {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	text-decoration: none;
	color: var(--ch-ink);
	border-bottom: 1px solid var(--ch-border);
}

.ch-site .ch-suggest:last-child {
	border-bottom: 0;
}

.ch-site .ch-suggest:hover,
.ch-site .ch-suggest.is-active {
	background: var(--ch-bg);
}

.ch-site .ch-suggest img {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	object-fit: cover;
	flex: none;
	background: var(--ch-bg);
}

.ch-site .ch-suggest__text {
	min-width: 0;
}

.ch-site .ch-suggest__title {
	display: block;
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ch-site .ch-suggest__sub {
	display: block;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-suggest__status {
	margin-left: auto;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--ch-muted);
	flex: none;
}

.ch-site .ch-suggest__empty {
	padding: 18px 16px;
	text-align: center;
}

.ch-site .ch-suggest__empty strong {
	display: block;
	margin-bottom: 4px;
}

.ch-site .ch-suggest__empty p {
	margin: 0 0 12px;
	font-size: 14px;
	color: var(--ch-muted);
}

/* ----------------------------------------------------------- Seções ---- */

.ch-site .ch-section {
	padding: 44px 0;
}

.ch-site .ch-section--tight {
	padding: 28px 0;
}

.ch-site .ch-section--alt {
	background: var(--ch-bg);
}

.ch-site .ch-section__head {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 22px;
}

.ch-site .ch-section__title {
	margin: 0;
	font-size: clamp(21px, 3.6vw, 30px);
	font-weight: 750;
	letter-spacing: -.015em;
	color: var(--ch-ink);
}

.ch-site .ch-section__sub {
	margin: 0;
	color: var(--ch-muted);
	font-size: 15px;
	line-height: 1.6;
}

.ch-site .ch-section__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: var(--ch-primary);
	text-decoration: none;
}

.ch-site .ch-section__link:hover {
	text-decoration: underline;
}

/* ------------------------------------------------------------ Cards ---- */

.ch-site .ch-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--ch-gap);
}

.ch-site .ch-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 18px;
	box-shadow: var(--ch-shadow-sm);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ch-site .ch-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ch-shadow-md);
	border-color: var(--ch-border-hover);
}

.ch-site .ch-card--em_breve {
	background: linear-gradient(180deg, #fff, var(--ch-bg));
}

.ch-site .ch-card__top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: start;
}

.ch-site .ch-card__icon img,
.ch-site .ch-card__icon-fallback {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	object-fit: cover;
	display: grid;
	place-items: center;
	background: var(--ch-bg);
	color: var(--ch-primary);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 18px;
}

.ch-site .ch-card__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
}

.ch-site .ch-card__title a {
	color: var(--ch-ink);
	text-decoration: none;
}

.ch-site .ch-card__title a:hover {
	color: var(--ch-primary);
}

.ch-site .ch-card__sub,
.ch-site .ch-card__cargo {
	margin: 3px 0 0;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ch-muted);
}

.ch-site .ch-card__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ch-site .ch-card__stats li {
	display: flex;
	flex-direction: column;
	background: var(--ch-bg);
	border-radius: 10px;
	padding: 8px 12px;
	min-width: 84px;
}

.ch-site .ch-card__stats strong {
	font-size: 16px;
	font-weight: 700;
	color: var(--ch-ink);
}

.ch-site .ch-card__stats span {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--ch-muted);
}

.ch-site .ch-card__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ch-site .ch-card__features li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ch-ink);
}

.ch-site .ch-card__features .ch-i {
	color: var(--ch-accent);
	width: 15px;
	height: 15px;
}

.ch-site .ch-card__foot {
	margin-top: auto;
	padding-top: 4px;
}

.ch-site .ch-card__foot .ch-btn {
	width: 100%;
}

/* ----------------------------------------------------------- Badges ---- */

.ch-site .ch-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	white-space: nowrap;
}

.ch-site .ch-badge--disponivel {
	background: var(--ch-ok-bg);
	color: var(--ch-ok-fg);
}

.ch-site .ch-badge--em_breve {
	background: #fff4e0;
	color: var(--ch-warn);
}

.ch-site .ch-badge--indisponivel {
	background: #f1f3f8;
	color: var(--ch-muted);
}

.ch-site .ch-badge--info {
	background: var(--ch-tint);
	color: var(--ch-dark);
}

/* ------------------------------------------------------------ Chips ---- */

.ch-site .ch-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ch-site .ch-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-ink);
	text-decoration: none;
	transition: border-color .16s ease, color .16s ease, transform .16s ease;
}

.ch-site .ch-chip:hover {
	border-color: var(--ch-primary);
	color: var(--ch-primary);
	transform: translateY(-1px);
}

.ch-site .ch-chip span {
	font-size: 12px;
	color: var(--ch-muted);
	background: var(--ch-bg);
	border-radius: 999px;
	padding: 1px 7px;
}

/* ----------------------------------------------------------- Etapas ---- */

.ch-site .ch-steps__list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ch;
}

.ch-site .ch-steps__item {
	position: relative;
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 20px 18px 18px;
	box-shadow: var(--ch-shadow-sm);
}

.ch-site .ch-steps__n {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--ch-tint);
	color: var(--ch-primary);
	font-weight: 800;
	margin-bottom: 10px;
}

.ch-site .ch-steps__title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ch-ink);
}

.ch-site .ch-steps__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ch-muted);
}

/* ------------------------------------------------------- Benefícios ---- */

.ch-site .ch-benefits {
	display: grid;
	gap: 14px;
}

.ch-site .ch-benefit {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 20px;
}

.ch-site .ch-benefit__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--ch-tint);
	color: var(--ch-primary);
	margin-bottom: 12px;
}

.ch-site .ch-benefit__icon .ch-i {
	width: 20px;
	height: 20px;
}

.ch-site .ch-benefit__title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
}

.ch-site .ch-benefit__text {
	margin: 0;
	color: var(--ch-muted);
	font-size: 14px;
	line-height: 1.6;
}

/* --------------------------------------------------------- Recursos ---- */

.ch-site .ch-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ch-site .ch-features__item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .7);
	padding: 12px 14px;
	font-size: 14px;
	font-weight: 500;
}

.ch-site .ch-features__item .ch-i {
	color: var(--ch-accent);
	flex: none;
}

/* -------------------------------------------------------------- FAQ ---- */

.ch-site .ch-faq {
	display: grid;
	gap: 10px;
}

.ch-site .ch-faq__item {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .8);
	padding: 4px 16px;
}

.ch-site .ch-faq__q {
	cursor: pointer;
	list-style: none;
	padding: 14px 26px 14px 0;
	font-weight: 650;
	font-size: 15px;
	position: relative;
	color: var(--ch-ink);
}

.ch-site .ch-faq__q::-webkit-details-marker {
	display: none;
}

.ch-site .ch-faq__q::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: var(--ch-primary);
	transition: transform .18s ease;
}

.ch-site .ch-faq__item[open] .ch-faq__q::after {
	content: "−";
}

.ch-site .ch-faq__a {
	padding: 0 0 14px;
	color: var(--ch-muted);
	font-size: 14px;
	line-height: 1.65;
}

.ch-site .ch-faq__a p {
	margin: 0 0 8px;
}

/* -------------------------------------------------------------- CTA ---- */

.ch-site .ch-cta {
	background: linear-gradient(140deg, var(--ch-dark), var(--ch-primary));
	color: #fff;
	padding: 40px 0;
}

.ch-site .ch-cta__inner {
	display: grid;
	gap: 18px;
}

.ch-site .ch-cta__title {
	margin: 0 0 8px;
	font-size: clamp(20px, 3.6vw, 30px);
	font-weight: 750;
	color: #fff;
}

.ch-site .ch-cta__text {
	margin: 0;
	color: rgba(255, 255, 255, .86);
	line-height: 1.6;
}

/* ---------------------------------------------------------- Filtros ---- */

.ch-site .ch-filters {
	margin-bottom: 20px;
}

.ch-site .ch-filters__toggle {
	width: 100%;
}

.ch-site .ch-filters__count {
	background: var(--ch-primary);
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	padding: 1px 8px;
}

.ch-site .ch-filters__panel {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 90;
	background: #fff;
	border-radius: var(--ch-radius) var(--ch-radius) 0 0;
	box-shadow: var(--ch-shadow-lg);
	padding: 18px var(--ch-pad) calc(18px + env(safe-area-inset-bottom));
	transform: translateY(100%);
	transition: transform .25s ease;
	max-height: 85vh;
	overflow-y: auto;
	visibility: hidden;
}

.ch-site .ch-filters__panel.is-open {
	transform: translateY(0);
	visibility: visible;
}

.ch-site .ch-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	font-size: 17px;
}

.ch-site .ch-filters__close {
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--ch-muted);
	padding: 6px;
}

.ch-site .ch-filters__fields {
	display: grid;
	gap: 12px;
}

.ch-site .ch-filters__field {
	display: grid;
	gap: 6px;
}

.ch-site .ch-filters__field span {
	font-size: 13px;
	font-weight: 600;
	color: var(--ch-muted);
}

.ch-site .ch-filters__field select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .6);
	background: var(--ch-surface);
	font-size: 16px;
	color: var(--ch-ink);
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ch-muted) 50%), linear-gradient(135deg, var(--ch-muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.ch-site .ch-filters__actions {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.ch-site .ch-filters__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(12, 20, 36, .45);
	z-index: 89;
	opacity: 0;
	transition: opacity .2s ease;
}

.ch-site .ch-filters__backdrop.is-open {
	opacity: 1;
}

/* -------------------------------------------------------- Catálogo ----- */

.ch-site .ch-catalog__count {
	margin: 0;
	font-size: 14px;
	color: var(--ch-muted);
}

.ch-site .ch-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.ch-site .ch-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--ch-border);
	border-radius: 10px;
	background: #fff;
	color: var(--ch-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.ch-site .ch-pagination .page-numbers.current,
.ch-site .ch-pagination .page-numbers:hover {
	background: var(--ch-primary);
	border-color: var(--ch-primary);
	color: #fff;
}

/* --------------------------------------------------- Não encontrado ---- */

.ch-site .ch-notfound {
	text-align: center;
	background: var(--ch-surface);
	border: 1px dashed var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 36px 20px;
}

.ch-site .ch-notfound__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--ch-bg);
	color: var(--ch-primary);
}

.ch-site .ch-notfound__icon .ch-i {
	width: 24px;
	height: 24px;
}

.ch-site .ch-notfound__title {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 700;
	color: var(--ch-ink);
}

.ch-site .ch-notfound__text {
	margin: 0 0 18px;
	color: var(--ch-muted);
	font-size: 15px;
	line-height: 1.6;
}

.ch-site .ch-empty {
	color: var(--ch-muted);
	text-align: center;
	padding: 24px 0;
}

/* ------------------------------------------------------------ Modal ---- */

.ch-site .ch-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: end center;
}

.ch-site .ch-modal[hidden] {
	display: none;
}

.ch-site .ch-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 20, 36, .55);
	border: 0;
}

.ch-site .ch-modal__box {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: #fff;
	border-radius: var(--ch-radius) var(--ch-radius) 0 0;
	padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
	box-shadow: var(--ch-shadow-lg);
	max-height: 92vh;
	overflow-y: auto;
	animation: ch-up .24s ease;
}

@keyframes ch-up {
	from { transform: translateY(18px); opacity: .6; }
	to { transform: translateY(0); opacity: 1; }
}

.ch-site .ch-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--ch-bg);
	border: 0;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	cursor: pointer;
	color: var(--ch-muted);
}

.ch-site .ch-modal__title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 750;
	padding-right: 36px;
}

.ch-site .ch-modal__sub {
	margin: 0 0 18px;
	color: var(--ch-muted);
	font-size: 14px;
	line-height: 1.55;
}

/* --------------------------------------------------------- Formulário -- */

.ch-site .ch-form {
	display: grid;
	gap: 14px;
}

.ch-site .ch-form__row {
	display: grid;
	gap: 6px;
}

.ch-site .ch-form__row label {
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-ink);
}

.ch-site .ch-form input[type="text"],
.ch-site .ch-form input[type="email"],
.ch-site .ch-form input[type="password"],
.ch-site .ch-form input[type="search"] {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .6);
	font-size: 16px;
	color: var(--ch-ink);
	background: var(--ch-surface);
}

.ch-site .ch-form input:focus {
	border-color: var(--ch-primary);
	outline: none;
	box-shadow: 0 0 0 3px var(--ch-ring);
}

.ch-site .ch-check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	line-height: 1.5;
	color: var(--ch-muted);
	font-weight: 400;
}

.ch-site .ch-check input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex: none;
}

.ch-site .ch-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ch-site .ch-form__msg {
	margin: 0;
	font-size: 14px;
	min-height: 1px;
}

.ch-site .ch-form__msg.is-error {
	color: #b91c1c;
	background: #fef2f2;
	border-radius: 10px;
	padding: 10px 12px;
}

.ch-site .ch-form__msg.is-ok {
	color: var(--ch-ok-fg);
	background: var(--ch-ok-bg);
	border-radius: 10px;
	padding: 10px 12px;
}

.ch-site .ch-btn.is-loading {
	opacity: .7;
	pointer-events: none;
}

/* ----------------------------------------------------------- Acesso ---- */

.ch-site .ch-access {
	padding: 40px 0 56px;
	background: var(--ch-bg);
	min-height: 60vh;
}

.ch-site .ch-access__box {
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	box-shadow: var(--ch-shadow-md);
	padding: 28px 22px;
	text-align: center;
}

.ch-site .ch-access__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	border-radius: 16px;
	background: var(--ch-tint);
	color: var(--ch-primary);
}

.ch-site .ch-access__icon .ch-i {
	width: 24px;
	height: 24px;
}

.ch-site .ch-access__title {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 750;
}

.ch-site .ch-access__sub,
.ch-site .ch-access__app {
	margin: 0 0 16px;
	color: var(--ch-muted);
	font-size: 15px;
	line-height: 1.55;
}

.ch-site .ch-access .ch-form {
	text-align: left;
	margin-top: 6px;
}

.ch-site .ch-access__help,
.ch-site .ch-access__alt,
.ch-site .ch-access__logout {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-access__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	text-align: left;
}

.ch-site .ch-access__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .7);
	text-decoration: none;
	color: var(--ch-ink);
	font-weight: 600;
	transition: border-color .16s ease, background .16s ease;
}

.ch-site .ch-access__list a:hover {
	border-color: var(--ch-primary);
	background: var(--ch-bg);
}

.ch-site .ch-access__list img {
	border-radius: 10px;
}

.ch-site .ch-access__list .ch-i {
	margin-left: auto;
	color: var(--ch-primary);
}

.ch-site .ch-tabs {
	display: flex;
	gap: 4px;
	background: var(--ch-bg);
	padding: 4px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.ch-site .ch-tabs__btn {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 10px 12px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-muted);
	cursor: pointer;
}

.ch-site .ch-tabs__btn.is-active {
	background: #fff;
	color: var(--ch-ink);
	box-shadow: var(--ch-shadow-sm);
}

/* ----------------------------------------------------- Página do app --- */

.ch-site .ch-breadcrumbs {
	padding: 16px 0 0;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ch-site .ch-breadcrumbs li + li::before {
	content: "/";
	margin-right: 6px;
	color: var(--ch-border);
}

.ch-site .ch-breadcrumbs a {
	color: var(--ch-muted);
	text-decoration: none;
}

.ch-site .ch-breadcrumbs a:hover {
	color: var(--ch-primary);
}

.ch-site .ch-appheader {
	padding: 18px 0 28px;
}

.ch-site .ch-appheader__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: start;
}

.ch-site .ch-appheader__icon img,
.ch-site .ch-appheader__icon span {
	width: 76px;
	height: 76px;
	border-radius: 20px;
	object-fit: cover;
	display: grid;
	place-items: center;
	background: var(--ch-bg);
	color: var(--ch-primary);
	font-size: 24px;
	font-weight: 800;
	box-shadow: var(--ch-shadow-sm);
}

.ch-site .ch-appheader__title {
	margin: 8px 0 6px;
	font-size: clamp(24px, 5vw, 38px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ch-ink);
}

.ch-site .ch-appheader__meta {
	margin: 0 0 10px;
	font-size: 14px;
	color: var(--ch-muted);
}

.ch-site .ch-appheader__meta a {
	color: var(--ch-primary);
	text-decoration: none;
	font-weight: 600;
}

.ch-site .ch-appheader__desc {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ch-ink);
}

.ch-site .ch-appheader__inner > .ch-appheader__main {
	grid-column: 1 / -1;
}

.ch-site .ch-actions {
	display: grid;
	gap: 10px;
}

.ch-site .ch-actions__nota,
.ch-site .ch-actions__pendente {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-actions__pendente {
	background: #fff7ed;
	color: var(--ch-warn);
	padding: 10px 12px;
	border-radius: 10px;
}

.ch-site .ch-numbers {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}

.ch-site .ch-numbers li {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .8);
	padding: 14px;
	text-align: center;
}

.ch-site .ch-numbers strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--ch-primary);
}

.ch-site .ch-numbers span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--ch-muted);
}

.ch-site .ch-single__body {
	display: grid;
	gap: 26px;
	padding-bottom: 40px;
}

.ch-site .ch-block {
	margin-bottom: 28px;
}

.ch-site .ch-block h2 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--ch-ink);
}

.ch-site .ch-prose {
	font-size: 16px;
	line-height: 1.7;
	color: #303b52;
}

.ch-site .ch-prose p {
	margin: 0 0 14px;
}

.ch-site .ch-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.ch-site .ch-checklist--cols {
	grid-template-columns: 1fr;
}

.ch-site .ch-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 15px;
	line-height: 1.5;
}

.ch-site .ch-checklist .ch-i {
	color: var(--ch-accent);
	margin-top: 3px;
}

.ch-site .ch-gallery {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 68%;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	scrollbar-width: thin;
}

.ch-site .ch-gallery__img {
	width: 100%;
	height: auto;
	border-radius: calc(var(--ch-radius) * .8);
	border: 1px solid var(--ch-border);
	scroll-snap-align: start;
}

.ch-site .ch-panelbox {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 18px;
	box-shadow: var(--ch-shadow-sm);
	margin-bottom: 16px;
}

.ch-site .ch-panelbox__title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
}

.ch-site .ch-panelbox__list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: 13px;
	color: var(--ch-muted);
}

.ch-site .ch-panelbox__list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.ch-site .ch-panelbox__list .ch-i {
	color: var(--ch-primary);
	margin-top: 2px;
}

.ch-site .ch-notice {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-left: 4px solid var(--ch-primary);
	border-radius: calc(var(--ch-radius) * .8);
	padding: 20px;
	margin-bottom: 32px;
}

.ch-site .ch-notice h2 {
	margin: 0 0 6px;
	font-size: 18px;
}

.ch-site .ch-notice p {
	margin: 0 0 14px;
	color: var(--ch-muted);
}

/* ------------------------------------------------------- Concursos ----- */

.ch-site .ch-archive__head {
	padding: 24px 0 8px;
}

.ch-site .ch-archive__title {
	margin: 0 0 6px;
	font-size: clamp(24px, 5vw, 38px);
	font-weight: 800;
	letter-spacing: -.02em;
}

.ch-site .ch-archive__sub {
	margin: 0;
	color: var(--ch-muted);
	line-height: 1.6;
}

.ch-site .ch-concheader {
	padding: 20px 0 26px;
}

.ch-site .ch-concheader__title {
	margin: 10px 0 8px;
	font-size: clamp(24px, 5vw, 38px);
	font-weight: 800;
	letter-spacing: -.02em;
}

.ch-site .ch-concheader__desc {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ch-muted);
}

.ch-site .ch-meta {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.ch-site .ch-meta li {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: calc(var(--ch-radius) * .7);
	padding: 10px 12px;
}

.ch-site .ch-meta span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--ch-muted);
}

.ch-site .ch-meta strong {
	font-size: 14px;
	color: var(--ch-ink);
}

.ch-site .ch-conccard {
	background: var(--ch-surface);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	box-shadow: var(--ch-shadow-sm);
}

.ch-site .ch-conccard__title {
	margin: 4px 0 0;
	font-size: 18px;
	font-weight: 700;
}

.ch-site .ch-conccard__title a {
	color: var(--ch-ink);
	text-decoration: none;
}

.ch-site .ch-conccard__title a:hover {
	color: var(--ch-primary);
}

.ch-site .ch-conccard__desc,
.ch-site .ch-conccard__apps {
	margin: 0;
	font-size: 14px;
	color: var(--ch-muted);
}

/* ----------------------------------------------------------- Runner ---- */

.ch-runner .ch-runner__bar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ch-dark, #12246b);
	color: #fff;
	padding: 10px 0;
}

.ch-runner .ch-runner__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ch-runner .ch-runner__bar a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.ch-runner .ch-runner__title {
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ch-runner .ch-runner__stage {
	min-height: 70vh;
	padding-bottom: env(safe-area-inset-bottom);
}

.ch-runner .ch-runner__stage iframe {
	width: 100%;
	min-height: 80vh;
	border: 0;
	display: block;
}

/* --------------------------------------------------------- Breakpoints - */

@media (min-width: 560px) {
	.ch-site .ch-hero__actions {
		flex-direction: row;
		justify-content: center;
		max-width: none;
	}

	.ch-site .ch-hero__stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-search__form {
		grid-template-columns: 1fr auto;
	}

	.ch-site .ch-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ch-site .ch-numbers {
		grid-template-columns: repeat(4, 1fr);
	}

	.ch-site .ch-checklist--cols {
		grid-template-columns: 1fr 1fr;
	}

	.ch-site .ch-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.ch-site .ch-actions {
		grid-auto-flow: column;
		grid-auto-columns: max-content;
		align-items: center;
	}

	.ch-site .ch-actions--compacto {
		grid-auto-flow: row;
		grid-auto-columns: auto;
	}

	.ch-site .ch-actions__nota,
	.ch-site .ch-actions__pendente {
		grid-column: 1 / -1;
	}

	.ch-site .ch-appheader__inner {
		grid-template-columns: auto 1fr;
	}

	.ch-site .ch-appheader__inner > .ch-appheader__main {
		grid-column: auto;
	}

	.ch-site .ch-gallery {
		grid-auto-columns: 42%;
	}
}

@media (min-width: 900px) {
	.ch-site {
		--ch-pad: 28px;
		--ch-gap: 20px;
	}

	.ch-site .ch-hero {
		padding: 84px 0 64px;
	}

	.ch-site .ch-section {
		padding: 64px 0;
	}

	.ch-site .ch-section__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.ch-site .ch-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-steps__list,
	.ch-site .ch-benefits {
		grid-template-columns: repeat(4, 1fr);
	}

	.ch-site .ch-benefits {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-features {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-cta__inner {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.ch-site .ch-single__body {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 40px;
	}

	.ch-site .ch-sticky {
		position: sticky;
		top: 24px;
	}

	.ch-site .ch-meta {
		grid-template-columns: repeat(4, 1fr);
	}

	.ch-site .ch-gallery {
		grid-auto-columns: 30%;
	}

	/* Filtros deixam de ser gaveta e viram barra fixa no desktop. */
	.ch-site .ch-filters__toggle {
		display: none;
	}

	.ch-site .ch-filters__panel {
		position: static;
		transform: none;
		visibility: visible;
		max-height: none;
		overflow: visible;
		box-shadow: var(--ch-shadow-sm);
		border: 1px solid var(--ch-border);
		border-radius: var(--ch-radius);
		padding: 18px;
	}

	.ch-site .ch-filters__header {
		display: none;
	}

	.ch-site .ch-filters__fields {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-filters__actions {
		grid-auto-flow: column;
		justify-content: flex-start;
		gap: 10px;
	}

	.ch-site .ch-modal {
		place-items: center;
	}

	.ch-site .ch-modal__box {
		border-radius: var(--ch-radius);
		padding: 28px;
	}

	.ch-site .ch-access__box {
		padding: 36px 34px;
	}
}

@media (min-width: 1200px) {
	.ch-site .ch-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ch-site .ch-grid--concursos {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ------------------------------------------------- Preferências do SO -- */

@media (prefers-reduced-motion: reduce) {
	.ch-site *,
	.ch-site *::before,
	.ch-site *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

@media print {
	.ch-site .ch-filters,
	.ch-site .ch-modal,
	.ch-site .ch-search__results {
		display: none !important;
	}
}

/* ------------------------------------------------ Modernização 2026 --- */

.ch-site {
	--ch-ink: #111827;
	--ch-muted: #64748b;
	--ch-border: #e2e8f0;
	--ch-bg: #f7f9fc;
	--ch-radius: 20px;
	--ch-shadow-sm: 0 4px 14px rgba(15, 23, 42, .05);
	--ch-shadow-md: 0 14px 38px rgba(15, 23, 42, .08);
	--ch-shadow-lg: 0 28px 70px rgba(15, 23, 42, .16);
}

.ch-site .ch-btn { border-radius: 999px; font-weight: 700; letter-spacing: -.005em; }
.ch-site .ch-btn--primary { box-shadow: 0 10px 26px color-mix(in srgb, var(--ch-primary) 24%, transparent); }
.ch-site .ch-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px color-mix(in srgb, var(--ch-primary) 30%, transparent); }

.ch-site .ch-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(700px 390px at 8% 0%, color-mix(in srgb, var(--ch-accent) 40%, transparent), transparent 68%),
		radial-gradient(720px 440px at 92% 5%, color-mix(in srgb, var(--ch-primary) 55%, white 5%), transparent 72%),
		linear-gradient(135deg, #09163d 0%, var(--ch-dark) 42%, var(--ch-primary) 100%);
	padding: 72px 0 54px;
}
.ch-site .ch-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(to bottom, black, transparent 78%);
	pointer-events: none;
}
.ch-site .ch-hero__inner { position: relative; z-index: 1; }
.ch-site .ch-hero__title { max-width: 920px; margin-inline: auto; font-size: clamp(36px, 6vw, 68px); letter-spacing: -.05em; }
.ch-site .ch-hero__sub { max-width: 760px; font-size: clamp(16px, 2.2vw, 20px); }
.ch-site .ch-hero__stats { max-width: 880px; margin-inline: auto; margin-top: 40px; }
.ch-site .ch-hero__stats li { background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border-color: rgba(255,255,255,.2); padding: 16px; }

.ch-site .ch-search { position: relative; padding: 0 0 36px; background: var(--ch-bg); border: 0; }
.ch-site .ch-search__title { padding-top: 34px; }
.ch-site .ch-search__form { border: 0; border-radius: 24px; padding: 11px; box-shadow: 0 22px 60px rgba(15,23,42,.13); }
.ch-site .ch-search__input { border-radius: 16px; min-height: 56px; }
.ch-site .ch-search__submit { padding-inline: 28px; }

.ch-site .ch-section { position: relative; }
.ch-site .ch-section__title { font-size: clamp(27px, 4vw, 40px); letter-spacing: -.035em; }
.ch-site .ch-section__sub { font-size: 16px; max-width: 650px; }
.ch-site .ch-section__link { font-weight: 700; text-underline-offset: 4px; }

.ch-site .ch-card,
.ch-site .ch-conccard,
.ch-site .ch-benefit,
.ch-site .ch-features__item,
.ch-site .ch-steps__item,
.ch-site .ch-panelbox {
	border-color: rgba(226,232,240,.9);
	box-shadow: 0 10px 34px rgba(15,23,42,.055);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ch-site .ch-card:hover,
.ch-site .ch-conccard:hover,
.ch-site .ch-benefit:hover,
.ch-site .ch-features__item:hover,
.ch-site .ch-steps__item:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--ch-primary) 26%, var(--ch-border));
	box-shadow: 0 22px 54px rgba(15,23,42,.11);
}
.ch-site .ch-card { position: relative; overflow: hidden; padding: 22px; }
.ch-site .ch-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--ch-primary), var(--ch-accent)); opacity: .86; }
.ch-site .ch-card__icon img,
.ch-site .ch-card__icon-fallback { border-radius: 18px; box-shadow: 0 10px 24px rgba(15,23,42,.12); }
.ch-site .ch-card__title { letter-spacing: -.02em; }
.ch-site .ch-badge { border-radius: 999px; }
.ch-site .ch-chip { border-radius: 999px; background: #fff; box-shadow: var(--ch-shadow-sm); }

.ch-site .ch-steps__n,
.ch-site .ch-benefit__icon { box-shadow: 0 10px 24px color-mix(in srgb, var(--ch-primary) 18%, transparent); }
.ch-site .ch-faq__item { border-radius: 18px; background: #fff; box-shadow: 0 5px 20px rgba(15,23,42,.04); }
.ch-site .ch-faq__q { font-size: 16px; }

.ch-site .ch-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #09163d, var(--ch-primary)); padding: 58px 0; }
.ch-site .ch-cta::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -190px; border-radius: 50%; background: color-mix(in srgb, var(--ch-accent) 25%, transparent); filter: blur(12px); }
.ch-site .ch-cta__inner { position: relative; z-index: 1; }

.ch-site .ch-archive__head,
.ch-site .ch-concheader,
.ch-site .ch-appheader { padding-top: 42px; }
.ch-site .ch-archive__title,
.ch-site .ch-concheader__title,
.ch-site .ch-appheader__title { font-size: clamp(32px, 5vw, 52px); letter-spacing: -.04em; }
.ch-site .ch-appheader__icon img,
.ch-site .ch-appheader__icon span { border-radius: 24px; box-shadow: 0 16px 36px rgba(15,23,42,.14); }
.ch-site .ch-numbers li,
.ch-site .ch-meta li { background: linear-gradient(180deg, #fff, #fbfcff); box-shadow: var(--ch-shadow-sm); }

.ch-site .ch-filters__panel,
.ch-site .ch-access__box,
.ch-site .ch-modal__box { border-radius: 24px; }
.ch-site .ch-access { background: radial-gradient(600px 300px at 50% 0, var(--ch-tint), transparent), var(--ch-bg); padding-top: 64px; }
.ch-site .ch-access__box { border: 0; box-shadow: 0 24px 64px rgba(15,23,42,.11); }
.ch-site .ch-access__icon { width: 64px; height: 64px; border-radius: 20px; }

@media (min-width: 900px) {
	.ch-site .ch-hero { padding: 112px 0 82px; }
	.ch-site .ch-search { margin-top: -1px; }
	.ch-site .ch-section { padding: 82px 0; }
	.ch-site .ch-grid { gap: 24px; }
}

@media (max-width: 559px) {
	.ch-site .ch-hero { padding-top: 62px; }
	.ch-site .ch-hero__title { font-size: clamp(34px, 11vw, 48px); }
	.ch-site .ch-search__submit { min-height: 52px; }
	.ch-site .ch-card { padding: 20px; }
}

