/*
    Theme Name: Games
    Text Domain: games
    Description: Tema para portal de conteúdo informativo sobre games — artigos com análises, notícias, dicas e guias sobre jogos e cultura gamer. Não vende jogos nem realiza transações de compra.
    Version: 1.0
*/

/* ====================================================
   VARIÁVEIS
   ==================================================== */

:root {
	/* superfícies */
	--paper: #FFFFFF;
	--paper-warm: #F5F6FC;
	--card: #FFFFFF;

	/* texto */
	--ink: #12142B;
	--mute: #565C7A;
	--mute-soft: #6F7695;

	/* traços */
	--line: #E7E8F3;
	--line-strong: #D3D6E7;

	/* acento — roxo elétrico com apoio ciano.
	   --accent e --accent-deep são sobrescritos pelo painel (Definições > Cores),
	   então tudo que depende do acento é derivado só desses dois. */
	--accent: #6D4AFF;
	--accent-deep: #5B33F0;
	--accent-2: #06B6D4;
	--accent-ink: #FFFFFF;
	--accent-grad: linear-gradient(135deg, var(--accent-deep), var(--accent));

	/* canais soltos para uso em rgba() */
	--accent-rgb: 109, 74, 255;
	--accent-2-rgb: 6, 182, 212;
	--shadow-rgb: 18, 20, 43;

	--radius-lg: 28px;
	--radius-pill: 100px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--t: 0.4s var(--ease);
}

/* ====================================================
   RESET & BASE
   ==================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif;
	background-color: var(--paper);
	overflow-x: hidden;
	color: var(--ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
}

p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--mute);
	letter-spacing: -0.005em;
}

body,
h1,
h2,
h3,
h4,
label,
input,
button,
select,
textarea,
p,
ul,
ol {
	font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

h1 b,
h2 b,
h3 b,
h4 b,
h1 em,
h2 em,
h3 em,
h4 em {
	font-style: normal;
	font-weight: inherit;
	color: var(--accent-deep);
}

::selection {
	background: var(--accent);
	color: var(--accent-ink);
}

/* ====================================================
   HEADER
   ==================================================== */

header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.header-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	background: transparent;
}

.header-logo a {
	display: block;
}

.header-logo img {
	width: 150px;
	transition: opacity 0.3s;
}

.header-logo img:hover {
	opacity: 0.6;
}

.header-logo {
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.header-menu ul.menu li a {
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 500;
	height: 42px;
	display: flex;
	color: var(--ink);
	align-items: center;
	border-radius: 10px;
	transition: var(--t);
	letter-spacing: -0.01em;
}

.header-menu ul.menu li a:hover {
	color: var(--accent-deep);
	background: rgba(var(--accent-rgb), 0.1);
}

.header-menu ul.menu li a.button {
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
	height: 42px;
	margin-left: 12px;
	color: var(--accent-ink) !important;
	letter-spacing: -0.01em;
	text-transform: none;
}

/* ====================================================
   BOTÕES GLOBAIS
   ==================================================== */

.button {
	margin-bottom: 0;
	border-radius: var(--radius-pill);
	background: var(--accent-grad);
	color: var(--accent-ink) !important;
	outline: none;
	font-size: 14px;
	padding: 16px 32px;
	font-weight: 600;
	border: none;
	letter-spacing: -0.01em;
	text-transform: none;
	box-shadow: 0 8px 24px -10px rgba(var(--accent-rgb), 0.9);
	transition: var(--t);
	transform: translateZ(0);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	gap: 8px;
}

.button::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.button:hover::after {
	transform: translateX(100%);
}

.button:hover {
	background: linear-gradient(135deg, var(--accent), var(--accent-deep));
	color: var(--accent-ink) !important;
	box-shadow: 0 14px 34px -14px rgba(var(--accent-rgb), 1);
	transform: translateY(-2px);
}

.button:active {
	transform: translateY(0);
}

/* Botões customizados */

.btn-solid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	padding: 0 30px;
	border-radius: 14px;
	background: var(--accent-grad);
	color: var(--accent-ink);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: var(--t);
	border: 1.5px solid transparent;
	box-shadow: 0 10px 26px -12px rgba(var(--accent-rgb), 0.9);
}

.btn-solid:hover {
	background: linear-gradient(135deg, var(--accent), var(--accent-deep));
	color: var(--accent-ink);
	border-color: rgba(var(--accent-rgb), 0.6);
	transform: translateY(-3px);
	box-shadow: 0 18px 38px -16px rgba(var(--accent-rgb), 1);
}

.btn-solid svg {
	transition: transform 0.3s var(--ease);
}

.btn-solid:hover svg {
	transform: translateX(4px);
}

.btn-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 56px;
	padding: 0 30px;
	border-radius: 14px;
	background: var(--card);
	color: var(--ink);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	border: 1.5px solid var(--line-strong);
	transition: var(--t);
}

.btn-line:hover {
	border-color: var(--accent);
	background: var(--card);
	color: var(--ink);
	transform: translateY(-3px);
	box-shadow: 0 12px 26px -14px rgba(var(--accent-rgb), 0.8);
}

.btn-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	border-bottom: 1.5px solid var(--ink);
	letter-spacing: -0.01em;
	transition: var(--t);
}

.btn-arrow svg {
	transition: transform 0.3s var(--ease);
}

.btn-arrow:hover {
	color: var(--accent-deep);
	border-color: var(--accent-deep);
}

.btn-arrow:hover svg {
	transform: translateX(6px);
}

/* ====================================================
   EYEBROW (label de seção)
   ==================================================== */

.eyebrow {
	display: inline-flex;
	align-items: center;
	/* wrap para o fio não empurrar o rótulo em tela estreita */
	flex-wrap: wrap;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 24px;
}

/* placa do número, em acento sólido */
.eyebrow-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 26px;
	padding: 0 8px;
	border-radius: 8px;
	background: var(--accent-grad);
	color: var(--accent-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 6px 16px -8px rgba(var(--accent-rgb), 1);
}

/* fio que sai do rótulo e se dissolve */
.eyebrow::after {
	content: '';
	width: 46px;
	height: 1px;
	background: linear-gradient(90deg, var(--line-strong), transparent);
}

/* ====================================================
   HERO SPLIT
   ==================================================== */

.hero-split {
	background: var(--paper);
	position: relative;
	overflow: hidden;
	padding: 0;
	min-height: auto;
}

/* ícones soltos flutuando no fundo do hero */
.hero-float {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

/* posição, tamanho, atraso e duração chegam inline pelo PHP.
   O tamanho passa por --scale porque a animação ocupa o transform,
   então encolher no mobile tem que ser pela largura, não por scale(). */
.hero-float-item {
	--scale: 1;
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: calc(var(--size) * var(--scale));
	height: calc(var(--size) * var(--scale));
	margin: calc(var(--size) * var(--scale) / -2) 0 0 calc(var(--size) * var(--scale) / -2);
	color: var(--accent);
	opacity: 0.16;
	will-change: transform;
	animation: hero-float-a var(--dur) ease-in-out var(--delay) infinite;
}

.hero-float-item svg {
	width: 100%;
	height: 100%;
}

/* dois percursos alternados para os ícones não subirem todos juntos */
.hero-float-item:nth-child(even) {
	animation-name: hero-float-b;
	color: var(--accent-2);
	opacity: 0.2;
}

@keyframes hero-float-a {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
	50% { transform: translate3d(7px, -22px, 0) rotate(7deg); }
}

@keyframes hero-float-b {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg); }
	50% { transform: translate3d(-9px, 18px, 0) rotate(-7deg); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-float-item {
		animation: none;
	}
}

.hero-split-inner {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr;
	gap: 80px;
	padding: 40px 0 48px;
	position: relative;
	z-index: 2;
	width: 100%;
	align-items: stretch;
}

.hero-split-left {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-title {
	font-size: clamp(32px, 3.6vw, 50px);
	line-height: 1.06;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 14px;
	max-width: 620px;
}

.hero-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent-deep);
}

.hero-title-accent {
	display: block;
	color: var(--mute-soft);
	font-weight: 400;
	margin-top: 4px;
}

.hero-lead {
	font-size: 16px;
	line-height: 1.6;
	color: var(--mute);
	max-width: 480px;
	margin: 0 0 22px;
	letter-spacing: -0.005em;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------- BLOCO RECOLHIDO (details nativo, sem JS) ---------- */

.hero-more {
	width: 100%;
	max-width: 520px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.hero-more-head {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
	transition: color 0.3s ease;
	/* remove o triângulo padrão do summary */
	list-style: none;
}

.hero-more-head::-webkit-details-marker {
	display: none;
}

.hero-more-head:hover {
	color: var(--accent-deep);
}

.hero-more-icon {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent-deep);
	transition: var(--t);
}

.hero-more[open] .hero-more-icon {
	background: var(--accent);
	color: var(--accent-ink);
	transform: rotate(180deg);
}

.hero-more-body {
	padding-top: 16px;
	animation: hero-more-in 0.35s var(--ease);
}

.hero-more-body p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--mute);
	margin-bottom: 20px;
}

@keyframes hero-more-in {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* barra de números, dentro do bloco recolhido */
.hero-stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 28px;
}

.hero-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero-stat strong {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.hero-stat span {
	font-size: 11.5px;
	letter-spacing: 0.02em;
	color: var(--mute-soft);
}

/* hero cards */

.hero-split-right {
	position: relative;
	display: flex;
	/* centraliza a vitrine na altura do bloco de texto ao lado */
	align-items: center;
	justify-content: flex-end;
}

/* ---------- VITRINE DE CAPAS (hero, decorativa e sem link) ---------- */

.hero-showcase {
	position: relative;
	width: 100%;
	padding: 10px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow:
		0 30px 60px -40px rgba(var(--shadow-rgb), 0.45),
		0 0 0 6px rgba(var(--accent-rgb), 0.04);
}

/* moldura deslocada atrás, só para dar profundidade */
.hero-showcase::before {
	content: '';
	position: absolute;
	inset: -13px;
	z-index: -1;
	border: 1px dashed rgba(var(--accent-rgb), 0.35);
	border-radius: 32px;
	transform: rotate(-1.4deg);
	pointer-events: none;
}

.hero-showcase-frame {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	background: var(--paper-warm);
}

/* cantoneiras no estilo HUD, em diagonal */
.hero-showcase-frame::before,
.hero-showcase-frame::after {
	content: '';
	position: absolute;
	z-index: 3;
	width: 26px;
	height: 26px;
	border: 2px solid var(--accent);
	pointer-events: none;
}

.hero-showcase-frame::before {
	top: 12px;
	left: 12px;
	border-right: 0;
	border-bottom: 0;
	border-radius: 6px 0 0 0;
}

.hero-showcase-frame::after {
	right: 12px;
	bottom: 12px;
	border-left: 0;
	border-top: 0;
	border-radius: 0 0 6px 0;
}

/* indicador de quadro: a pílula ativa acompanha o mesmo ciclo dos slides */
.hero-showcase-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 0 6px;
}

.hero-showcase-dot {
	height: 4px;
	width: 7px;
	border-radius: 4px;
	background: var(--line-strong);
	animation: hero-showcase-dot 25s linear infinite;
}

@keyframes hero-showcase-dot {
	0% { width: 7px; background: var(--line-strong); }
	4% { width: 26px; background: var(--accent); }
	20% { width: 26px; background: var(--accent); }
	24% { width: 7px; background: var(--line-strong); }
	100% { width: 7px; background: var(--line-strong); }
}

/* 5 quadros × 5s = ciclo de 25s; o atraso de cada um vem inline no PHP */
.hero-showcase-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	will-change: opacity, transform;
	animation: hero-showcase-cycle 25s linear infinite;
}

.hero-showcase-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes hero-showcase-cycle {
	0% { opacity: 0; transform: scale(1.08); }
	4% { opacity: 1; }
	20% { opacity: 1; }
	24% { opacity: 0; transform: scale(1); }
	100% { opacity: 0; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-showcase-slide {
		animation: none;
		transform: none;
	}

	.hero-showcase-slide:first-child {
		opacity: 1;
	}

	.hero-showcase-dot {
		animation: none;
	}

	.hero-showcase-dot:first-child {
		width: 26px;
		background: var(--accent);
	}
}

/* ====================================================
   ESTEIRA DE ÍCONES (games)
   ==================================================== */

.gamestrip {
	/* --gs-count (nº de ícones de uma sequência) vem inline do PHP.
	   A animação anda exatamente uma sequência, então basta o PHP repetir
	   a sequência o bastante para cobrir a tela mais larga. */
	--gs-item: 64px;
	--gs-gap: 22px;
	--gs-seq: calc((var(--gs-item) + var(--gs-gap)) * var(--gs-count));
	position: relative;
	overflow: hidden;
	padding: 26px 0;
	background: var(--paper-warm);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

/* halo de cor por trás dos ícones */
.gamestrip::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(38% 130% at 22% 50%, rgba(var(--accent-rgb), 0.22), transparent),
		radial-gradient(38% 130% at 78% 50%, rgba(var(--accent-2-rgb), 0.16), transparent);
	pointer-events: none;
}

/* esmaece as pontas por cima da esteira — mascarar a seção apagaria as bordas */
.gamestrip::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(90deg, var(--paper-warm), transparent 12%, transparent 88%, var(--paper-warm));
}

.gamestrip-track {
	position: relative;
	z-index: 1;
	display: flex;
	width: max-content;
	will-change: transform;
	animation: gamestrip 38s linear infinite;
}

/* margem no item (e não gap na esteira) para o passo bater com --gs-seq */
.gamestrip-item {
	flex: 0 0 auto;
	width: var(--gs-item);
	height: var(--gs-item);
	margin-right: var(--gs-gap);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	border: 1px solid var(--line-strong);
	background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-2-rgb), 0.05));
	color: var(--accent-deep);
	box-shadow: 0 10px 26px -18px rgba(var(--accent-rgb), 1);
}

.gamestrip-item svg {
	width: 28px;
	height: 28px;
}

/* alterna o tom para a esteira não ficar monocromática */
.gamestrip-item:nth-child(3n + 2) {
	color: var(--accent-2);
}

.gamestrip-item:nth-child(3n + 3) {
	color: var(--ink);
}

@keyframes gamestrip {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(calc(-1 * var(--gs-seq)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.gamestrip-track {
		animation: none;
	}
}

/* ====================================================
   TEMAS DOS ARTIGOS
   ==================================================== */

.section-topics {
	padding: 48px 0;
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.topics-head {
	max-width: 620px;
	margin-bottom: 26px;
}

.topics-title {
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 16px;
}

.topics-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent-deep);
}

.topics-note {
	font-size: 17px;
	line-height: 1.6;
	color: var(--mute);
	margin: 0;
}

/* chips que quebram em linha — acomodam qualquer quantidade de categorias */
.topics-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.topic {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px 9px 9px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: var(--card);
	color: var(--ink);
	transition: var(--t);
}

.topic:hover {
	border-color: var(--accent);
	background: rgba(var(--accent-rgb), 0.05);
	transform: translateY(-2px);
	box-shadow: 0 12px 26px -18px rgba(var(--accent-rgb), 0.95);
}

.topic-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(var(--accent-rgb), 0.1);
	color: var(--accent-deep);
	transition: var(--t);
}

.topic-icon svg {
	width: 18px;
	height: 18px;
}

.topic:hover .topic-icon {
	background: var(--accent);
	color: var(--accent-ink);
	transform: rotate(-8deg);
}

.topic-name {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
	/* nome de categoria longo precisa poder quebrar, senão o chip estoura a tela */
	overflow-wrap: anywhere;
}

.topic-count {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--mute-soft);
	font-variant-numeric: tabular-nums;
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	background: var(--paper-warm);
	transition: var(--t);
}

.topic:hover .topic-count {
	color: var(--accent-deep);
	background: rgba(var(--accent-rgb), 0.14);
}

/* ====================================================
   LISTA DE CONTEÚDOS
   ==================================================== */

.section-lineup {
	padding: 42px 24px 48px;
	background: var(--paper-warm);
}

.lineup-header {
	max-width: 1180px;
	margin: 0 auto 24px;
}

.lineup-h2 {
	font-size: clamp(28px, 3.2vw, 38px);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: var(--ink);
	max-width: 680px;
}

.lineup-h2 em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent-deep);
}

.lineup {
	max-width: 1180px;
	margin: 0 auto;
	border-top: 1px solid var(--line-strong);
}

.lineup-item {
	position: relative;
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 26px;
	align-items: start;
	padding: 24px 22px;
	border-bottom: 1px solid var(--line);
	transition: background 0.35s var(--ease);
}

/* trilho de acento que desce pela lateral no hover;
   -1px em cima e embaixo para cobrir as bordas da linha */
.lineup-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: -1px;
	bottom: -1px;
	width: 3px;
	background: var(--accent-grad);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s var(--ease);
}

.lineup-item:hover {
	background: var(--card);
}

.lineup-item:hover::before {
	transform: scaleY(1);
}

.lineup-num {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--line-strong);
	font-variant-numeric: tabular-nums;
	transition: color 0.35s ease;
}

.lineup-item:hover .lineup-num {
	color: var(--accent-deep);
}

.lineup-head {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.lineup-head h3 {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0;
}

.lineup-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border-radius: var(--radius-pill);
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent-deep);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

.lineup-item p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	max-width: 760px;
}


/* ====================================================
   TRUST BAR
   ==================================================== */

.section-trustbar {
	padding: 52px 24px 58px;
	background: var(--paper);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.trustbar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	max-width: 1180px;
	margin: 0 auto;
	align-items: start;
}

/* escalonado: os cards pares descem e quebram a linha reta */
.trustbar-item:nth-child(even) {
	margin-top: 38px;
}

.trustbar-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 22px 26px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--card);
	overflow: hidden;
	transition: var(--t);
}

/* fio de acento no topo, que atravessa o card no hover */
.trustbar-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 36px;
	background: var(--accent-grad);
	transition: width 0.45s var(--ease);
}

.trustbar-item:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 18px 38px -24px rgba(var(--accent-rgb), 0.9);
}

.trustbar-item:hover::before {
	width: 100%;
}

.trustbar-icon {
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: rgba(var(--accent-rgb), 0.1);
	border: 1px solid rgba(var(--accent-rgb), 0.16);
	color: var(--accent-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: var(--t);
}

.trustbar-item:hover .trustbar-icon {
	background: var(--accent);
	border-color: transparent;
	color: var(--accent-ink);
	transform: rotate(-6deg);
}

.trustbar-icon svg {
	width: 21px;
	height: 21px;
}

.trustbar-text strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}

.trustbar-text span {
	font-size: 13px;
	line-height: 1.45;
	color: var(--mute);
	letter-spacing: -0.005em;
}

/* ====================================================
   EDITORIAL / BLOG
   ==================================================== */

.section-editorial-new {
	padding: 48px 24px;
	background: var(--paper);
}

.editorial-new-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 26px;
	gap: 40px;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.editorial-new-title {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 12px;
}

.editorial-new-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent-deep);
}

.editorial-new-sub {
	font-size: 16px;
	color: var(--mute);
	max-width: 480px;
}

.editorial-new-cta {
	flex-shrink: 0;
}

/* ====================================================
   CARDS GENÉRICOS (compatibilidade WP)
   ==================================================== */

.article {
	background: var(--card);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: none;
	transition: var(--t);
	transform: translateZ(0);
	position: relative;
	overflow: hidden;
}

.article:hover {
	box-shadow: 0 20px 42px -22px rgba(var(--accent-rgb), 0.8);
	transform: translateY(-4px);
	border-color: var(--accent);
}

.article {
	padding: 0;
}

.section-blog {
	position: relative;
}

.section-blog img {
	width: 100%;
	position: relative;
}

.section {
	padding: 40px 0;
}

.section p:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 38px;
	margin-bottom: 20px;
	line-height: 1.1;
	letter-spacing: -0.035em;
	text-align: center;
}

.section-button {
	margin-top: 32px;
	text-align: center;
}

/* ====================================================
   FOOTER
   ==================================================== */

/* Faixa escura: a cor de fundo pode vir do painel (Definições > Cores),
   então os textos aqui são fixos em branco, não seguem a paleta clara. */
footer {
	background-color: var(--ink);
	padding: 50px 0;
	color: #FFFFFF;
}

footer p {
	color: rgba(255, 255, 255, 0.72);
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-info p {
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.footer-nav .menu {
	justify-content: center;
	margin: 20px 0 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	padding-bottom: 14px;
}

.footer-nav .menu li a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	transition: color 0.3s;
	letter-spacing: -0.005em;
}

.footer-nav .menu li a:hover {
	color: #FFFFFF;
}

.footer-job {
	display: flex;
	align-items: center;
	grid-gap: 40px;
	justify-content: center;
	font-size: 12px;
}

.footer-job a {
	color: var(--mute);
	font-size: 20px;
	line-height: 10px;
	transition: color 0.3s;
}

.footer-job a:hover {
	color: var(--accent);
}

/* ====================================================
   SEARCH
   ==================================================== */

.search-field {
	margin-bottom: 0;
	height: 42px;
	font-size: 14px;
	background-color: var(--paper-warm);
	width: 260px;
	color: var(--ink);
	padding: 13px 16px;
	box-shadow: none;
	border-radius: var(--radius-pill);
	border: 1.5px solid var(--line);
	transition: all 0.3s ease;
	padding-right: 42px;
}

.search-field::placeholder {
	color: var(--mute-soft);
}

.search-field:focus {
	box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
	border-color: var(--accent);
	background: var(--card);
}

.header-search {
	position: relative;
}

.header-search .ico-btn {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	color: var(--mute-soft);
	height: 42px;
	padding: 8px 14px;
	transition: color 0.3s;
}

.header-search .ico-btn:hover {
	color: var(--ink);
}

/* ====================================================
   ARTICLES
   ==================================================== */

.main {
	padding: 40px 0;
}

.wp-block-image {
	margin: 40px 0;
}

.articles {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 18px;
}

.single .articles {
	grid-template-columns: 1fr 1fr 1fr;
}

.article-title {
	padding: 24px;
	text-align: left;
}

.article-title h3 {
	margin-bottom: 10px;
	margin-top: 10px;
}

.article-title h3 a {
	display: block;
	color: var(--ink);
	font-size: 16px;
	line-height: 1.3;
	text-overflow: ellipsis;
	overflow-wrap: break-word;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	transition: color 0.3s ease;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.article-title h3 a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.article-meta {
	color: var(--mute-soft);
	font-size: 11px;
	display: flex;
	align-items: center;
	grid-gap: 8px;
	letter-spacing: 0.04em;
	font-weight: 500;
	justify-content: flex-start;
	text-transform: uppercase;
}

.article-meta span {
	display: flex;
	align-items: center;
	grid-gap: 5px;
}

.article-meta span i {
	margin-top: 1px;
}

.article-more {
	margin-top: 18px;
	text-align: left;
}

.article-more a {
	display: inline-flex;
	align-items: center;
	grid-gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.005em;
	transition: all 0.3s ease;
	border-bottom: 1.5px solid var(--ink);
	padding-bottom: 2px;
}

.article-more a:hover {
	grid-gap: 10px;
	color: var(--accent-deep);
	border-color: var(--accent-deep);
}

.article-more a .ico {
	margin-top: 1px;
}

.article .article-category {
	grid-gap: 5px;
	display: flex;
	justify-content: flex-start;
}

.article .article-category .article-category-item {
	background: transparent;
	border: 1.5px solid var(--line-strong);
	border-radius: var(--radius-pill);
	color: var(--ink);
	display: none;
	font-size: 10px;
	font-weight: 600;
	line-height: 13px;
	padding: 4px 12px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.article .article-category .article-category-item:first-child {
	display: inline-block;
}

.article .article-category .article-category-item:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--accent-ink);
}

.article-thumb a {
	display: block;
}

.article-thumb figure:hover img {
	transform: scale(1.05);
}

.article-thumb figure {
	height: 200px;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.article-thumb figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.articles-related {
	border-top: 1.5px solid var(--line);
	margin-top: 40px;
	padding-top: 35px;
}

.headline {
	margin-bottom: 24px;
	text-align: center;
}

.headline h3,
.headline h2 {
	font-size: 28px;
	margin-bottom: 0;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.main-sections {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 50px;
}

/* Featured */
.articles-featured .article {
	border: none;
	border-radius: var(--radius-lg);
}

.articles-featured .article-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.articles-featured .article-title h3 {
	font-size: 20px;
	color: #ffffff;
	line-height: 1.2;
}

.articles-featured .article-thumb figure {
	height: 370px;
	border-radius: var(--radius-lg);
}

.articles-featured .article-meta {
	color: rgba(255, 255, 255, 0.7);
}

.articles-featured .article-category .article-category-item:hover,
.articles-featured .article-category .article-category-item {
	color: #ffffff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.4);
}

.articles-featured .article:hover figure img {
	transform: scale(1.05);
}

.articles-featured .article-thumb figure:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(transparent 0%, rgba(var(--shadow-rgb), 0.88) 100%);
	z-index: 1;
	border-radius: var(--radius-lg);
}

/* Main Headline */
.main-headline {
	padding: 30px 0 34px;
	background-color: var(--paper);
	border-bottom: 1px solid var(--line);
}

.main-headline p {
	margin-bottom: 0;
	font-size: 14px;
	margin-top: 10px;
	color: var(--mute);
	text-align: center;
}

.main-headline h1 {
	font-size: 32px;
	margin-bottom: 0;
	line-height: 1.1;
	text-align: center;
	letter-spacing: -0.035em;
}

.fetch {
	margin-top: 30px;
}

.button.loading {
	opacity: 0.4 !important;
	cursor: not-allowed;
	background: var(--card) !important;
}

/* ====================================================
   SINGLE ARTICLE
   ==================================================== */

.single-article-content p,
.single-article-content ul,
.single-article-content ol {
	font-size: 17px;
	color: var(--mute);
	line-height: 1.7;
}

.single-article-content ul,
.single-article-content ol {
	margin: 30px 0;
	margin-left: 50px;
	display: grid;
	grid-auto-columns: 1fr;
	grid-gap: 15px;
}

.single-article-content ul br,
.single-article-content ol br {
	display: none;
}

.single-article-content p {
	margin-bottom: 22px;
}

.single-article-content p a,
.single-article-content ul a,
.single-article-content ol a {
	color: var(--accent-deep);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(29, 78, 216, 0.4);
	transition: text-decoration-color 0.3s;
}

.single-article-content p a:hover,
.single-article-content ul a:hover,
.single-article-content ol a:hover {
	text-decoration-color: var(--accent-deep);
}

.single-article-title h1 {
	font-size: 48px;
	line-height: 1.05;
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: -0.04em;
}

.single-article-title p {
	font-size: 19px;
	margin-bottom: 30px;
	color: var(--mute);
	line-height: 1.55;
}

.single-article-thumb figure {
	width: 100%;
	height: auto;
}

.single-article-thumb figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
}

.single-article-thumb {
	margin-bottom: 30px;
}

.single-article-thumb figure figcaption {
	margin-top: 12px;
	font-style: italic;
	font-size: 13px;
	color: var(--mute-soft);
}

.single-article-wrap-meta {
	font-size: 14px;
	display: flex;
	align-items: center;
	grid-gap: 3px;
	color: var(--mute);
}

.single-article-wrap-meta span {
	display: flex;
	align-items: center;
	grid-gap: 5px;
}

.single-article-wrap-meta span svg {
	width: 20px;
	stroke: var(--mute);
	stroke-width: 1.5;
	margin-top: -1px;
}

.single-article-meta {
	margin-bottom: 34px;
	border-bottom: 1.5px solid var(--line);
	padding-bottom: 35px;
}

.single-article-meta-item.user {
	margin-bottom: 10px;
	font-size: 18px;
}

.single-article-meta-item.user a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s;
}

.single-article-meta-item.user a:hover {
	text-decoration: underline;
	color: var(--accent-deep);
}

.single-article-content h2 {
	font-size: 36px;
	line-height: 1.1;
	margin-bottom: 24px;
	margin-top: 36px;
	letter-spacing: -0.035em;
}

.single-article-content h3 {
	font-size: 26px;
	line-height: 1.2;
	margin-bottom: 22px;
	margin-top: 32px;
	letter-spacing: -0.03em;
}

.single-article-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.single-article-tools svg {
	width: 24px;
	height: auto;
	margin-top: -1px;
}

.single-article-tools button {
	display: flex;
	align-items: center;
	grid-gap: 7px;
	cursor: pointer;
	font-size: 16px;
	color: var(--mute);
	background: none;
	border: none;
	transition: color 0.3s;
}

.single-article-tools button:hover {
	color: var(--ink);
}

.single-article-category {
	display: flex;
	align-items: center;
	grid-gap: 7px;
	justify-content: center;
}

.single-article-category a {
	color: var(--accent-ink);
	border: 1px solid transparent;
	background: var(--accent);
	border-radius: var(--radius-pill);
	padding: 6px 16px;
	font-size: 13px;
	transition: all 0.3s;
	font-weight: 500;
}

.single-article-category a:hover {
	background: var(--accent);
	color: var(--ink);
}

.main-blog {
	padding-top: 30px;
}

.header-menu-mobile,
.header-search-mobile {
	display: none;
}

/* ====================================================
   MAIN PAGE
   ==================================================== */

.main-page {
	margin: 30px 0;
}

.main-page .wp-block-table {
	margin: 30px 0;
}

.main-page .wp-block-table td {
	padding: 20px;
}

.main-page h2 {
	font-size: 28px;
	display: block;
	margin: 30px 0 20px;
	letter-spacing: -0.03em;
}

/* ====================================================
   MOBILE CANVAS
   ==================================================== */

/* ====================================================
   OVERRIDES (compatibilidade com markup WP)
   ==================================================== */

.article-category,
.article-meta {
	display: none !important;
}

.single-article-title h1,
.main-headline h1 {
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.section-blog .article-title h3 {
	text-align: left !important;
	width: 100% !important;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.section-blog .article-title h3 a {
	display: block !important;
	text-align: left !important;
	width: 100% !important;
	margin: 0 auto !important;
	float: none !important;
	-webkit-line-clamp: unset !important;
	-webkit-box-orient: unset !important;
	white-space: normal !important;
}

.section-blog .article-title p,
.section-blog .article-more {
	text-align: left !important;
}

/* ====================================================
   RESPONSIVE — 1024px
   ==================================================== */

@media (max-width: 1024px) {
	.hero-split-inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 34px 0;
	}

	.hero-split-right {
		justify-content: flex-start;
	}

	.hero-showcase {
		max-width: 560px;
	}

	.editorial-new-header {
		flex-direction: column;
		align-items: start;
		gap: 24px;
	}

	.trustbar-grid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.trustbar-item:nth-child(even) {
		margin-top: 28px;
	}

	.articles {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1000px) {

	.header-menu-mobile,
	.header-search-mobile {
		display: block;
		color: var(--ink);
		font-size: 21px;
		cursor: pointer;
	}

	.header-search,
	.header-menu {
		display: none;
	}
}

/* ====================================================
   RESPONSIVE — 744px
   ==================================================== */

@media (max-width: 744px) {
	.hero-split {
		padding: 0;
	}

	.hero-split-inner {
		padding: 28px 0;
		gap: 40px;
	}

	/* em coluna única os ícones caem atrás do texto — precisam recuar */
	.hero-float-item {
		--scale: 0.72;
		opacity: 0.09;
	}

	.hero-float-item:nth-child(even) {
		opacity: 0.11;
	}

	.hero-title {
		font-size: 38px;
	}

	.eyebrow {
		gap: 10px;
		letter-spacing: 0.13em;
		margin-bottom: 20px;
	}

	.eyebrow::after {
		width: 28px;
	}

	.hero-lead {
		font-size: 15px;
		max-width: 100%;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-more {
		max-width: 100%;
	}

	.hero-stats {
		gap: 22px;
	}

	.hero-stat strong {
		font-size: 20px;
	}

	.hero-actions .btn-solid,
	.hero-actions .btn-line {
		width: 100%;
		justify-content: center;
	}

	.hero-split-right {
		min-height: auto;
	}

	.hero-showcase {
		max-width: 100%;
		padding: 8px;
		border-radius: 20px;
	}

	.hero-showcase::before {
		inset: -9px;
		border-radius: 26px;
	}

	.hero-showcase-frame {
		aspect-ratio: 16 / 10;
		border-radius: 13px;
	}

	.hero-showcase-frame::before,
	.hero-showcase-frame::after {
		width: 20px;
		height: 20px;
	}

	.hero-showcase-frame::before {
		top: 10px;
		left: 10px;
	}

	.hero-showcase-frame::after {
		right: 10px;
		bottom: 10px;
	}

	.gamestrip {
		--gs-item: 52px;
		--gs-gap: 14px;
		padding: 18px 0;
	}

	.gamestrip-item {
		border-radius: 15px;
	}

	.gamestrip-item svg {
		width: 23px;
		height: 23px;
	}

	.section-topics {
		padding: 34px 0;
	}

	.topics-head {
		margin-bottom: 36px;
	}

	.topics-note {
		font-size: 15px;
	}

	.topics-cloud {
		gap: 9px;
	}

	.topic {
		gap: 10px;
		padding: 7px 8px 7px 7px;
	}

	.topic-icon {
		width: 32px;
		height: 32px;
	}

	.topic-icon svg {
		width: 16px;
		height: 16px;
	}

	.topic-name {
		font-size: 14px;
	}

	.section-lineup {
		padding: 34px 16px 38px;
	}

	.lineup-h2 {
		font-size: 30px;
	}

	/* em coluna única o número vira uma linha própria acima do título */
	.lineup-item {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 20px 16px;
	}

	.lineup-num {
		font-size: 22px;
	}

	.lineup-head h3 {
		font-size: 18px;
	}

	.section-trustbar {
		padding: 30px 16px;
	}

	.trustbar-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	/* em coluna única o escalonamento viraria só um buraco entre os cards */
	.trustbar-item:nth-child(even) {
		margin-top: 0;
	}

	.section-editorial-new {
		padding: 34px 16px;
	}

	.editorial-new-title {
		font-size: 30px;
	}

	p {
		font-size: 14px;
		line-height: 1.65;
	}

	.section-button {
		margin-top: 24px;
	}

	.section-button .button {
		display: block;
		font-size: 13px;
		width: 100%;
	}

	.header-menu ul.menu li a.button {
		padding: 13px 18px;
	}

	.section {
		padding: 48px 0;
	}

	section {
		padding-left: 16px;
		padding-right: 16px;
	}

	.section-blog {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 14px;
		line-height: 1.1;
	}

	header,
	footer {
		padding-left: 16px;
		padding-right: 16px;
	}

	.articles {
		grid-template-columns: 1fr 1fr;
	}

	.single .articles {
		grid-template-columns: 1fr 1fr;
	}

	.single .articles .article:last-child {
		display: none;
	}

	.articles-featured .article-thumb figure:after {
		background: linear-gradient(0deg, rgba(var(--shadow-rgb), 1) 20%, rgba(var(--shadow-rgb), 0) 100%);
	}

	.footer-nav .menu {
		display: grid;
		grid-template-columns: 1fr;
		text-align: center;
	}

	.wp-block-table {
		overflow-x: auto;
	}
}

/* ====================================================
   RESPONSIVE — 639px
   ==================================================== */

@media (max-width: 639px) {
	.wp-block-table {
		overflow-x: auto;
	}

	.hero-title {
		font-size: 32px;
	}

	/* ---- rótulo de seção ---- */

	.eyebrow {
		gap: 9px;
		letter-spacing: 0.1em;
		margin-bottom: 18px;
	}

	.eyebrow-num {
		min-width: 28px;
		height: 23px;
		padding: 0 7px;
		border-radius: 7px;
	}

	/* o fio decorativo só rouba espaço nesta largura */
	.eyebrow::after {
		display: none;
	}

	/* ---- hero ---- */

	.hero-split-inner {
		padding: 24px 0 30px;
		gap: 32px;
	}

	.hero-more {
		margin-top: 20px;
		padding-top: 16px;
	}

	.hero-more-head {
		font-size: 12.5px;
	}

	.hero-more-body p {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.hero-stats {
		gap: 18px;
	}

	.hero-stat strong {
		font-size: 19px;
	}

	.hero-stat span {
		font-size: 11px;
	}

	.hero-showcase-bar {
		padding: 11px 0 4px;
	}

	/* ---- esteira de ícones ---- */

	.gamestrip {
		--gs-item: 46px;
		--gs-gap: 11px;
		padding: 14px 0;
	}

	.gamestrip-item {
		border-radius: 13px;
	}

	.gamestrip-item svg {
		width: 20px;
		height: 20px;
	}

	/* ---- lista de conteúdos ---- */

	.section-lineup {
		padding: 28px 14px 32px;
	}

	.lineup-h2 {
		font-size: 26px;
	}

	.lineup-item {
		padding: 18px 14px;
	}

	.lineup-head {
		gap: 10px;
		margin-bottom: 6px;
	}

	.lineup-head h3 {
		font-size: 17px;
	}

	.lineup-item p {
		font-size: 14px;
	}

	/* ---- trust bar ---- */

	.section-trustbar {
		padding: 24px 14px;
	}

	.trustbar-item {
		gap: 13px;
		padding: 20px 18px 22px;
	}

	.trustbar-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.trustbar-text strong {
		font-size: 14.5px;
	}

	/* ---- assuntos ---- */

	.section-topics {
		padding: 28px 0;
	}

	.topics-head {
		margin-bottom: 26px;
	}

	.topics-title {
		font-size: 28px;
	}

	.topics-note {
		font-size: 14.5px;
	}

	.header-search-mob,
	.header-menu-mob {
		display: block !important;
	}

	#canvasMobile .search-field {
		width: 100% !important;
	}

	.header-search-mob {
		margin-bottom: 20px;
	}

	.header-menu-mob {
		display: grid !important;
		grid-template-columns: 1fr;
	}

	.header-menu-mob ul {
		display: grid;
		grid-template-columns: 1fr;
	}

	#canvasMobile .header-menu ul.menu li a {
		margin: 3px 0 !important;
		outline: none !important;
		text-align: center !important;
		justify-content: center;
		color: var(--ink);
		border-radius: 12px;
	}

	.off-canvas {
		background-color: var(--paper);
		padding: 24px;
	}

	.js-off-canvas-overlay {
		background: rgba(var(--shadow-rgb), 0.5);
		backdrop-filter: blur(4px);
	}

	.off-canvas.is-transition-overlap.is-open {
		box-shadow: none !important;
	}

	.single .articles {
		grid-template-columns: 1fr;
	}

	.single .articles .article:last-child {
		display: block;
	}

	.main-headline {
		padding: 14px 0;
	}

	.main {
		padding: 20px 0;
	}

	.main-headline h1,
	.headline h2,
	.headline h3 {
		font-size: 22px;
	}

	.articles {
		grid-template-columns: 1fr;
		grid-gap: 16px;
	}

	.articles-featured .article-thumb figure {
		height: 200px;
	}

	.article-title h3 a,
	.articles-featured .article-title h3 {
		font-size: 16px;
		line-height: 1.25;
	}

	.article-thumb figure {
		height: 180px;
	}

	.single-article-title h1 {
		font-size: 30px;
		line-height: 1.1;
		margin-bottom: 15px;
		text-align: center;
	}

	.single-article-tools {
		margin-bottom: 15px;
	}

	.single-article-title p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.single-article-meta {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.single-article-content h2 {
		font-size: 26px;
		margin-bottom: 20px;
		margin-top: 28px;
	}

	.single-article-content h3 {
		font-size: 21px;
		margin-bottom: 18px;
		margin-top: 24px;
	}

	.single-article-category a {
		padding: 5px 12px;
		font-size: 12px;
	}

	.single-article-content ul,
	.single-article-content ol {
		margin-left: 30px;
	}

	.articles-related {
		margin-top: 30px;
		padding-top: 25px;
	}

	.single-article-wrap-meta .single-article-meta-item:nth-child(5),
	.single-article-wrap-meta .single-article-meta-item:nth-child(4) {
		display: none !important;
	}

	.single-article-meta-item.user {
		margin-bottom: 14px;
		font-size: 14px;
	}
}

/* ====================================================
   ACESSIBILIDADE
   ==================================================== */

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid var(--accent-deep);
	outline-offset: 3px;
}

/* ====================================================
   FOOTER LOGO
   ==================================================== */

.footer-logo {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-logo a {
	display: inline-block;
	margin: 0 auto;
}

.footer-logo img {
	margin: 0 auto;
	display: block;
}
/* ====================================================
   ISOLAMENTO — ArtQuiz e Roleta
   Esses componentes têm cores próprias, definidas em cada
   quiz/roleta. As regras globais de .button não valem aqui.
   ==================================================== */

.roulette-button,
.aq-answer,
#aq-cta {
	background-image: none;
	box-shadow: none;
	text-transform: none;
	letter-spacing: normal;
}

.roulette-button::after,
.aq-answer::after,
#aq-cta::after {
	content: none;
}

.roulette-button:hover,
.aq-answer:hover,
#aq-cta:hover {
	box-shadow: none;
	transform: none;
}

/* ====================================================
   ÍCONES (SVG inline — substituem a fonte de ícones)
   ==================================================== */

.ico {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

.ico-dot {
	margin: 0 2px;
	opacity: 0.5;
}

.ico-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: inherit;
	line-height: 0;
	transition: var(--t);
}

.ico-btn:hover {
	color: var(--accent-deep);
}
