/*
 * Coloiado Theme — CSS Principal
 * Arquivo único compilado. Sem Tailwind CDN, sem @import.
 * Organização:
 *  1. Custom Properties (design tokens)
 *  2. Reset / Base
 *  3. Typography
 *  4. Layout
 *  5. Header + Nav
 *  6. Trust Strip
 *  7. Hero Sections
 *  8. Card Components
 *  9. Badges
 * 10. Star Ratings
 * 11. Buttons / CTAs
 * 12. Quick Picks Box
 * 13. Product Cards (article page)
 * 14. Comparison Table
 * 15. Methodology Box
 * 16. Sidebar + TOC
 * 17. FAQ Accordion
 * 18. Affiliate Disclosure
 * 19. Trust Strip Inferior
 * 20. Footer
 * 21. Cookie Banner
 * 22. Pagination
 * 23. Category Archive — Filter Bar
 * 24. Blog Hub Tabs
 * 25. Article Body (prose)
 * 26. Utility Classes
 * 27. Responsive — mobile-first breakpoints
 */

/* =============================================================
   1. CUSTOM PROPERTIES — Design Tokens
   ============================================================= */

/* Paleta atualizada: coloiado4-acessivel (2026-04-29) */
:root {
	/* Cores principais */
	--color-primary:      #D93611;
	--color-primary-dark: #B82D0E;
	--color-dark:         #0A1073;
	--color-teal:         #33B5E5;
	--color-purple:       #4A55A2;
	--color-slate:        #64748B;

	/* Paleta coloiado4-acessivel — core */
	--color-navy:         #0A1073;
	--color-mid-blue:     #4A55A2;
	--color-cyan:         #33B5E5;
	--color-orange-red:   #D93611;
	--color-off-white:    #F2F2F2;

	/* Paleta social/digital — acentos (usar no máximo 5% do espaço) */
	--color-electric:     #3E45F0;
	--color-neon:         #D0FF00;
	--color-amber:        #FFB300;
	--color-orange-vivid: #F26419;

	/* Neutros */
	--color-white:        #FFFFFF;
	--color-gray-50:      #F9FAFB;
	--color-gray-100:     #F3F4F6;
	--color-gray-200:     #E5E7EB;
	--color-gray-300:     #D1D5DB;
	--color-gray-400:     #9CA3AF;
	--color-gray-500:     #6B7280;
	--color-gray-600:     #4B5563;
	--color-gray-700:     #374151;
	--color-gray-800:     #1F2937;
	--color-gray-900:     #111827;

	/* Estrelas */
	--color-star-filled: #F59E0B;
	--color-star-empty:  #E2E8F0;

	/* Destaques de linha de tabela */
	--color-row-top:     #FFF9EC;
	--color-row-cb:      #F0FDFA;
	--color-row-premium: #FAF5FF;

	/* Tipografia */
	--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

	/* Border radius */
	--radius-sm:  6px;
	--radius-md:  8px;
	--radius-lg:  12px;
	--radius-xl:  16px;
	--radius-full: 9999px;

	/* Sombras */
	--shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
	--shadow-lg: 0 10px 25px -3px rgba(0,0,0,.12), 0 4px 10px -2px rgba(0,0,0,.08);
	--shadow-brand: 0 4px 14px rgba(217,54,17,.2);

	/* Espaçamentos */
	--container-max: 1280px;
	--container-px:  1rem;

	/* Transições */
	--transition-fast: 150ms ease;
	--transition-base: 200ms ease;
}

/* =============================================================
   2. RESET / BASE
   ============================================================= */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--font-sans);
	color: var(--color-dark);
	background-color: var(--color-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, video, svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font: inherit;
}

button {
	cursor: pointer;
	background: none;
	border: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* =============================================================
   3. TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-dark);
}

h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
h2 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.125rem); font-weight: 600; }
h4 { font-size: 0.9375rem; font-weight: 600; }

p { line-height: 1.75; }

strong { font-weight: 700; }

small { font-size: 0.75rem; }

/* =============================================================
   4. LAYOUT — Container, Grid, Flex helpers
   ============================================================= */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-px);
}

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }
.flex-1     { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.min-w-0    { min-width: 0; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Layout principal de página: artigo + sidebar */
.page-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.page-main  { flex: 1 1 0%; min-width: 0; }

.page-sidebar {
	width: 100%;
	flex-shrink: 0;
}

/* =============================================================
   5. HEADER + NAV
   ============================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: #ffffff;
	box-shadow: 0 1px 4px rgba(10,16,115,.12);
	overflow: hidden;
	border-bottom: 1px solid rgba(10,16,115,.08);
}

.site-header__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	text-decoration: none;
}

.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img,
.custom-logo {
	height: 48px;
	width: auto;
	max-width: 240px;
	border-radius: 0;
}

.site-logo__img {
	height: 48px;
	width: auto;
	max-width: 240px;
	display: block;
}

/* custom-logo-link agora é âncora direta dentro de .site-logo div */
.custom-logo-link {
	display: block;
	line-height: 0;
	text-decoration: none;
}

.site-logo__text {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-white);
	line-height: 1;
}

.site-logo__text span {
	color: var(--color-primary);
}

/* Nav desktop */
.nav-primary {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

.nav-primary a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-dark);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.nav-primary a:hover,
.nav-primary a.current-menu-item,
.nav-primary a[aria-current="page"] {
	color: var(--color-primary);
}

/* Nav mobile */
.nav-mobile-menu {
	display: none;
	flex-direction: column;
	background-color: var(--color-dark);
	border-top: 1px solid rgba(255,255,255,.1);
}

.nav-mobile-menu.is-open {
	display: flex;
}

.nav-mobile-menu a {
	display: block;
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #E5E7EB;
	border-bottom: 1px solid rgba(255,255,255,.06);
	text-decoration: none;
	transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-mobile-menu a:hover {
	color: var(--color-primary);
	background-color: rgba(255,255,255,.04);
}

/* Header actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-radius: var(--radius-md);
	color: var(--color-dark);
	background: none;
	border: none;
	cursor: pointer;
	transition: background-color var(--transition-fast);
}

.btn-icon:hover {
	background-color: rgba(10,16,115,.07);
}

.btn-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

/* Hamburger — visível apenas mobile */
.btn-hamburger { display: inline-flex; }

/* Breadcrumb */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-gray-600);
	margin-bottom: 1.5rem;
}

.breadcrumb a {
	color: var(--color-gray-600);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.breadcrumb a:hover {
	color: var(--color-primary);
}

.breadcrumb__sep {
	color: var(--color-gray-600);
	font-size: 0.75rem;
}

.breadcrumb__current {
	color: var(--color-dark);
	font-weight: 500;
}

/* =============================================================
   6. TRUST STRIP
   ============================================================= */
.trust-strip {
	background-color: var(--color-dark);
	color: var(--color-white);
	font-size: 0.75rem;
	padding: 0.5rem 1rem;
}

.trust-strip__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	text-align: center;
}

.trust-strip__inner span {
	background-color: rgba(217,54,17,.12);
	border: 1px solid rgba(217,54,17,.28);
	color: rgba(255,255,255,.9);
	padding: 0.2rem 0.7rem;
	border-radius: var(--radius-full);
	font-weight: 500;
	font-size: 0.6875rem;
	letter-spacing: 0.01em;
	transition: background-color var(--transition-fast), border-color var(--transition-fast);
	white-space: nowrap;
}

.trust-strip__inner span:hover {
	background-color: rgba(217,54,17,.22);
	border-color: rgba(217,54,17,.5);
}

/* Trust strip inferior (stats) */
.trust-stats {
	background-color: var(--color-gray-50);
	border-top: 1px solid var(--color-gray-100);
	padding: 2rem 1rem;
	margin-top: 2.5rem;
}

.trust-stats__grid {
	max-width: var(--container-max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	text-align: center;
}

.trust-stats__grid > div {
	padding: 1rem;
}

.trust-stats__grid > div:nth-child(1),
.trust-stats__grid > div:nth-child(2) {
	border-bottom: 1px solid var(--color-gray-200);
}

.trust-stats__grid > div:nth-child(odd) {
	border-right: 1px solid var(--color-gray-200);
}

.trust-stats__number {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 900;
	color: var(--color-dark);
	display: block;
	letter-spacing: -0.02em;
}

.trust-stats__label {
	font-size: 0.8125rem;
	color: var(--color-gray-600);
	margin-top: 0.3rem;
	font-weight: 500;
}

/* =============================================================
   7. HERO SECTIONS
   ============================================================= */
/* Hero do artigo */
.article-hero {
	position: relative;
	width: 100%;
	height: 14rem;
	background-color: var(--color-gray-100);
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 2rem;
}

.article-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-hero__caption {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background-color: rgba(0,0,0,.6);
	color: var(--color-white);
	font-size: 0.75rem;
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-full);
	backdrop-filter: blur(4px);
}

/* Hero da categoria (2 colunas) */
.category-hero {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--color-gray-100);
	box-shadow: var(--shadow-sm);
	margin-bottom: 2.5rem;
}

.category-hero__image {
	position: relative;
	min-height: 16rem;
	background-color: var(--color-gray-100);
	overflow: hidden;
}

.category-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.category-hero__image:hover img {
	transform: scale(1.05);
}

.category-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent, rgba(255,255,255,.15));
	pointer-events: none;
}

.category-hero__content {
	background-color: var(--color-white);
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.category-hero__title {
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.category-hero__description {
	font-size: 0.875rem;
	color: var(--color-gray-600);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.category-hero__meta {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	margin-bottom: 1.25rem;
}

/* =============================================================
   8. CARD COMPONENTS
   ============================================================= */

/* Card de artigo (archive / blog) */
.card-article {
	background-color: var(--color-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-gray-100);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: box-shadow 250ms cubic-bezier(.4,0,.2,1),
	            transform 250ms cubic-bezier(.4,0,.2,1),
	            border-color 250ms ease;
}

.card-article:hover {
	box-shadow: inset 3px 0 0 var(--color-primary), var(--shadow-lg);
	transform: translateY(-3px);
	border-color: rgba(217,54,17,.25);
}

.card-article__image {
	position: relative;
	height: 12rem;
	background-color: var(--color-gray-200);
	overflow: hidden;
}

.card-article__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.card-article:hover .card-article__image img {
	transform: scale(1.05);
}

.card-article__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
}

.card-article__body {
	padding: 1.25rem;
}

.card-article__stars {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.card-article__stars-value {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	margin-left: 0.375rem;
}

.card-article__title {
	font-size: 1rem;
	font-weight: 800;
	color: var(--color-dark);
	line-height: 1.3;
	margin-bottom: 0.5rem;
	transition: color var(--transition-fast);
	letter-spacing: -0.01em;
}

.card-article:hover .card-article__title,
.card-article__title:hover {
	color: var(--color-primary);
}

.card-article__excerpt {
	font-size: 0.8125rem;
	color: var(--color-gray-600);
	line-height: 1.65;
	margin-bottom: 1rem;
	font-weight: 400;
}

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

.card-article__date {
	font-size: 0.75rem;
	color: var(--color-gray-600);
}

/* Card featured (blog hub — maior) */
.card-featured {
	background-color: var(--color-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-gray-100);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	margin-bottom: 2rem;
}

.card-featured__image {
	position: relative;
	height: 14rem;
	background-color: var(--color-gray-100);
	overflow: hidden;
}

.card-featured__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.card-featured:hover .card-featured__image img {
	transform: scale(1.03);
}

.card-featured__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.card-featured__body {
	padding: 1.5rem;
}

.card-featured__category {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: var(--color-gray-600);
	margin-bottom: 0.75rem;
}

.card-featured__title {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--color-dark);
	margin-bottom: 0.5rem;
	line-height: 1.3;
	transition: color var(--transition-fast);
}

.card-featured:hover .card-featured__title {
	color: var(--color-primary);
}

.card-featured__excerpt {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.card-featured__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.card-featured__meta {
	font-size: 0.75rem;
	color: var(--color-gray-600);
}

/* =============================================================
   9. BADGES
   ============================================================= */
.badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.25rem 0.625rem;
	border-radius: var(--radius-full);
	line-height: 1.4;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

/* Top Coloiado — laranja */
.badge-top {
	background-color: var(--color-primary);
	color: var(--color-white);
}

/* Melhor Custo-Benefício — teal */
.badge-cb {
	background-color: var(--color-teal);
	color: var(--color-white);
}

/* Premium — roxo */
.badge-premium {
	background-color: var(--color-purple);
	color: var(--color-white);
}

/* Para Caso Específico — slate */
.badge-caso {
	background-color: #EA580C;
	color: var(--color-white);
}

/* Badge genérico de categoria (no topo do artigo) */
.badge-category {
	background-color: #FFF7ED;
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	border: 1px solid #FFEDD5;
}

/* =============================================================
   10. STAR RATINGS
   ============================================================= */
.stars {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.star {
	font-size: 1rem;
	line-height: 1;
}

.star--filled { color: var(--color-star-filled); }
.star--empty  { color: var(--color-star-empty); }

.stars--lg .star { font-size: 1.25rem; }
.stars--sm .star { font-size: 0.875rem; }

.stars__value {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	margin-left: 0.375rem;
	font-weight: 500;
}

/* Caixa de avaliação (topo do artigo) */
.rating-box {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background-color: #FFF7ED;
	border-radius: var(--radius-lg);
	border: 1px solid #FFEDD5;
}

.rating-box__label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-dark);
}

.rating-box__sub {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	display: block;
}

/* =============================================================
   11. BUTTONS / CTAs
   ============================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.625rem 1rem;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
	line-height: 1.25;
	white-space: nowrap;
}

.btn svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

/* Primário — laranja sólido | dark text para WCAG AA (~7:1 contraste) */
.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-dark);
	border-color: var(--color-primary);
	font-weight: 700;
}

.btn-primary:hover {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: var(--color-dark);
	box-shadow: var(--shadow-brand);
}

/* Secundário — outline laranja */
.btn-secondary {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn-secondary:hover {
	background-color: #FFF7ED;
}

/* Pequeno */
.btn-sm {
	font-size: 0.75rem;
	padding: 0.5rem 0.875rem;
}

/* Grande */
.btn-lg {
	font-size: 1rem;
	padding: 0.875rem 1.5rem;
}

/* =============================================================
   12. QUICK PICKS BOX (seleção rápida no topo do artigo)
   ============================================================= */
.quick-picks {
	background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
	border: 2px solid rgba(217,54,17,.3);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.quick-picks__header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.quick-picks__title {
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--color-dark);
}

.quick-picks__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.quick-picks__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 0.75rem;
	box-shadow: var(--shadow-sm);
}

.quick-picks__item-name {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-dark);
}

.quick-picks__item-sub {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	display: block;
}

.quick-picks__item-price {
	font-size: 0.875rem;
	font-weight: 800;
	color: var(--color-dark);
	flex-shrink: 0;
	margin-left: auto;
}

/* =============================================================
   13. PRODUCT CARDS (artigo — cards de produto com pros/cons)
   ============================================================= */
.product-card {
	background-color: var(--color-white);
	border-radius: var(--radius-xl);
	border: 2px solid rgba(217,54,17,.3);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition-base);
	margin-bottom: 1.25rem;
}

.product-card:hover {
	box-shadow: var(--shadow-md);
}

/* Variantes por tipo de badge */
.product-card--cb      { border-color: rgba(13,148,136,.3); }
.product-card--premium { border-color: rgba(124,58,237,.2); }

.product-card__header {
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid rgba(217,54,17,.15);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
	background: linear-gradient(to right, #FFF7ED, #FFFBEB);
}

.product-card--cb .product-card__header {
	background: rgba(13,148,136,.04);
	border-bottom-color: rgba(13,148,136,.15);
}

.product-card--premium .product-card__header {
	background: #FAF5FF;
	border-bottom-color: #EDE9FE;
}

.product-card__body {
	display: flex;
	flex-direction: column;
}

.product-card__image {
	flex-shrink: 0;
	height: 12rem;
	background-color: var(--color-gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.product-card__image img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
}

.product-card__content {
	flex: 1;
	padding: 1.25rem;
}

.product-card__name {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 0.25rem;
}

.product-card__price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 0.75rem;
}

.product-card__price-note {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--color-gray-600);
}

.product-card__specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.spec-item {
	background-color: var(--color-gray-50);
	border-radius: var(--radius-md);
	padding: 0.625rem;
	text-align: center;
}

.spec-item__label {
	font-size: 0.6875rem;
	color: var(--color-gray-600);
	margin-bottom: 0.125rem;
	display: block;
}

.spec-item__value {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-dark);
}

/* Prós e contras */
.pros-cons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.pros-cons__group-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.375rem;
}

.pros-cons__group-label--pros { color: #15803D; }
.pros-cons__group-label--cons { color: #DC2626; }

.pros-cons__list { display: flex; flex-direction: column; gap: 0.25rem; }

.pros-cons__item {
	display: flex;
	align-items: flex-start;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: var(--color-gray-700);
}

.pros-cons__check--pro  { color: #22C55E; flex-shrink: 0; margin-top: 1px; }
.pros-cons__check--con  { color: #F87171; flex-shrink: 0; margin-top: 1px; }

.product-card__pitch {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	font-style: italic;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.product-card__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* =============================================================
   14. COMPARISON TABLE
   ============================================================= */
.table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-gray-200);
	box-shadow: var(--shadow-sm);
	margin-bottom: 2.5rem;
}

.comparison-table {
	width: 100%;
	font-size: 0.875rem;
	min-width: 40rem;
}

.comparison-table thead tr {
	background-color: var(--color-dark);
	color: var(--color-white);
}

.comparison-table thead th {
	padding: 0.75rem 1rem;
	font-weight: 600;
	text-align: center;
}

.comparison-table thead th:first-child {
	text-align: left;
	border-radius: var(--radius-xl) 0 0 0;
}

.comparison-table thead th:last-child {
	border-radius: 0 var(--radius-xl) 0 0;
}

.comparison-table tbody tr {
	border-top: 1px solid var(--color-gray-100);
}

.comparison-table tbody tr:hover:not(.row-top):not(.row-cb):not(.row-premium) {
	background-color: var(--color-gray-50);
}

/* Linhas de destaque */
.row-top     { background-color: var(--color-row-top) !important; }
.row-cb      { background-color: var(--color-row-cb) !important; }
.row-premium { background-color: var(--color-row-premium) !important; }

.comparison-table td {
	padding: 0.75rem 1rem;
	color: var(--color-gray-700);
	text-align: center;
}

.comparison-table td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--color-dark);
}

.comparison-table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 var(--radius-xl);
}

.comparison-table tbody tr:last-child td:last-child {
	border-radius: 0 0 var(--radius-xl) 0;
}

.pick-label--top     { font-size: 0.75rem; color: var(--color-primary); margin-left: 0.25rem; }
.pick-label--cb      { font-size: 0.75rem; color: var(--color-teal); margin-left: 0.25rem; }
.pick-label--premium { font-size: 0.75rem; color: var(--color-purple); margin-left: 0.25rem; }

/* =============================================================
   15. METHODOLOGY BOX
   ============================================================= */
.methodology-box {
	background-color: #EFF6FF;
	border: 1px solid #DBEAFE;
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	margin-bottom: 2rem;
	display: flex;
	gap: 0.75rem;
}

.methodology-box__icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background-color: #DBEAFE;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.methodology-box__icon svg {
	width: 1rem;
	height: 1rem;
	color: #2563EB;
}

.methodology-box__title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1E3A8A;
	margin-bottom: 0.25rem;
}

.methodology-box__text {
	font-size: 0.8125rem;
	color: #1E40AF;
	line-height: 1.6;
}

.methodology-box__text a {
	color: #2563EB;
	font-weight: 600;
	text-decoration: none;
}

.methodology-box__text a:hover {
	text-decoration: underline;
}

/* =============================================================
   16. SIDEBAR + TOC
   ============================================================= */
.sidebar-widget {
	background-color: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-xl);
	padding: 1.25rem;
	margin-bottom: 1.25rem;
}

.sidebar-widget__title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-dark);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.sidebar-widget__title svg {
	width: 1rem;
	height: 1rem;
	color: var(--color-primary);
}

/* TOC */
.toc-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.toc-item {
	display: flex;
	gap: 0.5rem;
}

.toc-item__num {
	font-weight: 700;
	color: var(--color-primary);
	flex-shrink: 0;
	font-size: 0.75rem;
}

.toc-item a {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	text-decoration: none;
	line-height: 1.4;
	transition: color var(--transition-fast);
}

.toc-item a:hover,
.toc-item a.is-active {
	color: var(--color-primary);
}

.toc-item a.is-active {
	font-weight: 600;
}

/* Related articles widget */
.related-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.related-item {
	display: flex;
	gap: 0.625rem;
	text-decoration: none;
}

.related-item__thumb {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-gray-100);
	border-radius: var(--radius-md);
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.related-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-item__title {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.35;
	display: block;
	transition: color var(--transition-fast);
}

.related-item:hover .related-item__title {
	color: var(--color-primary);
}

.related-item__date {
	font-size: 0.6875rem;
	color: var(--color-gray-600);
	display: block;
	margin-top: 2px;
}

/* Newsletter widget */
.newsletter-widget {
	background-color: var(--color-dark);
	border-radius: var(--radius-xl);
	padding: 1.25rem;
	color: var(--color-white);
}

.newsletter-widget__title {
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-white);
}

.newsletter-widget__text {
	font-size: 0.75rem;
	color: #D1D5DB;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.newsletter-widget form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.newsletter-widget input[type="email"] {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-md);
	border: none;
	font-size: 0.75rem;
	background-color: var(--color-white);
	color: var(--color-dark);
}

.newsletter-widget input[type="email"]:focus-visible {
	outline: 2px solid #D93611;
	outline-offset: 2px;
}

.newsletter-widget input[type="email"]:focus {
	box-shadow: 0 0 0 2px var(--color-primary);
}

.newsletter-widget__lgpd {
	font-size: 0.6875rem;
	color: #4B5563;
	margin-top: 0.5rem;
}

/* Sticky TOC container */
.toc-sticky-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Mais lidos widget */
.popular-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.popular-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	text-decoration: none;
}

.popular-item__num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-gray-100);
	line-height: 1;
	width: 2rem;
	flex-shrink: 0;
}

.popular-item__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.35;
	display: block;
	transition: color var(--transition-fast);
}

.popular-item:hover .popular-item__title {
	color: var(--color-primary);
}

.popular-item__views {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	display: block;
	margin-top: 2px;
}

/* =============================================================
   17. FAQ ACCORDION
   ============================================================= */
.faq-section {
	margin-bottom: 2.5rem;
}

.faq-section__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.faq-section__title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 1.75rem;
	background-color: var(--color-primary);
	border-radius: var(--radius-full);
	flex-shrink: 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background-color: var(--color-gray-50);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

/* Usando <details><summary> para acessibilidade e AI Overview */
.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--color-dark);
	cursor: pointer;
	list-style: none;
	transition: background-color var(--transition-fast);
	gap: 0.75rem;
}

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

.faq-item summary:hover {
	background-color: var(--color-gray-100);
}

.faq-item__icon {
	color: var(--color-primary);
	font-size: 1.25rem;
	font-weight: 300;
	flex-shrink: 0;
	transition: transform var(--transition-base);
	display: inline-block;
	width: 1.25rem;
	text-align: center;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(45deg);
}

.faq-item__body {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.875rem;
	color: var(--color-gray-600);
	line-height: 1.75;
}

/* =============================================================
   18. AFFILIATE DISCLOSURE
   ============================================================= */
.affiliate-disclosure {
	background-color: var(--color-gray-50);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	font-size: 0.75rem;
	color: var(--color-gray-600);
	line-height: 1.6;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.affiliate-disclosure svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	color: var(--color-gray-600);
	margin-top: 2px;
}

.affiliate-disclosure strong {
	color: var(--color-gray-700);
}

.affiliate-disclosure a {
	color: var(--color-primary);
	text-decoration: none;
}

.affiliate-disclosure a:hover {
	text-decoration: underline;
}

/* Disclosure banner topo do artigo */
.disclosure-banner {
	background-color: #FFFBEB;
	border: 1px solid #FDE68A;
	border-radius: var(--radius-md);
	padding: 0.625rem 1rem;
	font-size: 0.75rem;
	color: #92400E;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

/* =============================================================
   19. TRUST STRIP INFERIOR — já em seção 6
   ============================================================= */

/* =============================================================
   20. FOOTER
   ============================================================= */
.site-footer {
	background-color: var(--color-dark);
	color: var(--color-white);
	padding-top: 3rem;
	padding-bottom: 1.5rem;
}

.site-footer__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-px);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-col__logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-white);
	margin-bottom: 0.75rem;
}

.footer-col__logo span {
	color: var(--color-primary);
}

.footer-col__tagline {
	font-size: 0.875rem;
	color: #4B5563;
	line-height: 1.65;
	margin-bottom: 1rem;
}

.footer-col__social {
	display: flex;
	gap: 0.75rem;
}

.footer-social-link {
	color: #4B5563;
	transition: color var(--transition-fast);
	text-decoration: none;
}

.footer-social-link:hover {
	color: var(--color-white);
}

.footer-social-link svg {
	width: 1.25rem;
	height: 1.25rem;
}

.footer-col__heading {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.footer-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav-list a {
	font-size: 0.875rem;
	color: #4B5563;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
	color: var(--color-white);
}

.site-footer__bottom {
	border-top: 1px solid #374151;
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
}

.site-footer__copyright,
.site-footer__disclosure {
	font-size: 0.75rem;
	color: #6B7280;
	line-height: 1.5;
}

/* =============================================================
   21. COOKIE BANNER (LGPD)
   ============================================================= */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: var(--color-dark);
	color: var(--color-white);
	padding: 1rem;
	box-shadow: 0 -4px 12px rgba(0,0,0,.3);
}

.cookie-banner.is-hidden {
	display: none;
}

.cookie-banner__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.cookie-banner__text {
	font-size: 0.75rem;
	color: #D1D5DB;
	line-height: 1.6;
}

.cookie-banner__text a {
	color: var(--color-primary);
	font-weight: 500;
	text-decoration: none;
}

.cookie-banner__text a:hover {
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.btn-cookie-essential {
	font-size: 0.75rem;
	color: #4B5563;
	border: 1px solid #4B5563;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	background: none;
	cursor: pointer;
	white-space: nowrap;
	transition: color var(--transition-fast), border-color var(--transition-fast);
}

.btn-cookie-essential:hover {
	color: var(--color-white);
	border-color: var(--color-gray-400);
}

.btn-cookie-accept {
	font-size: 0.75rem;
	font-weight: 700;
	background-color: var(--color-primary);
	color: var(--color-dark);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cookie-accept:hover {
	background-color: var(--color-primary-dark);
	box-shadow: var(--shadow-brand);
}

/* =============================================================
   22. PAGINATION
   ============================================================= */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.625rem;
	border-radius: var(--radius-md);
	font-size: 0.875rem;
	text-decoration: none;
	border: 1px solid var(--color-gray-200);
	color: var(--color-dark);
	transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.pagination a:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.pagination .current {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
	font-weight: 600;
}

.pagination .dots {
	border: none;
	color: var(--color-gray-600);
}

/* =============================================================
   23. CATEGORY ARCHIVE — FILTER BAR
   ============================================================= */
.filter-bar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.filter-bar__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.filter-btn {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.5rem 0.875rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--color-gray-200);
	cursor: pointer;
	transition: all var(--transition-fast);
	background-color: var(--color-white);
	color: var(--color-slate);
}

.filter-btn:hover {
	border-color: var(--color-gray-400);
}

.filter-btn.is-active,
.filter-btn--active {
	background-color: var(--color-dark);
	color: var(--color-white);
	border-color: var(--color-dark);
}

.filter-bar__sort {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-bar__sort label {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	white-space: nowrap;
}

.filter-bar__sort select {
	font-size: 0.75rem;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	padding: 0.5rem 0.75rem;
	background-color: var(--color-white);
	color: var(--color-dark);
	cursor: pointer;
}

.filter-bar__sort select:focus-visible {
	outline: 2px solid #D93611;
	outline-offset: 2px;
}

.filter-bar__sort select:focus {
	box-shadow: 0 0 0 2px var(--color-primary);
	border-color: var(--color-primary);
}

.results-count {
	font-size: 0.875rem;
	color: var(--color-gray-600);
	margin-bottom: 1.5rem;
}

.results-count strong {
	color: var(--color-dark);
}

/* =============================================================
   24. BLOG HUB — CATEGORY TABS
   ============================================================= */
.category-tabs {
	border-bottom: 1px solid var(--color-gray-200);
	margin-bottom: 2rem;
}

.category-tabs__list {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}

.category-tabs__list::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	color: var(--color-slate);
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	cursor: pointer;
	transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn:hover {
	color: var(--color-dark);
}

.tab-btn.is-active {
	border-bottom-color: var(--color-primary);
	color: var(--color-dark);
	font-weight: 600;
}

.tab-count {
	margin-left: 0.25rem;
	background-color: var(--color-gray-100);
	color: var(--color-gray-600);
	font-size: 0.6875rem;
	padding: 0.125rem 0.375rem;
	border-radius: var(--radius-full);
}

/* Editor highlight widget na sidebar */
.editor-pick-widget {
	background-color: var(--color-white);
	border: 1px solid var(--color-gray-100);
	border-radius: var(--radius-xl);
	overflow: hidden;
}

.editor-pick-widget__header {
	background-color: var(--color-dark);
	padding: 0.625rem 1.25rem;
}

.editor-pick-widget__header span {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-white);
}

.editor-pick-widget__body {
	padding: 1.25rem;
}

.editor-pick-widget__thumb {
	height: 7rem;
	background-color: var(--color-gray-200);
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.editor-pick-widget__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.editor-pick-widget__title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1.35;
	margin-bottom: 0.75rem;
}

.editor-pick-widget__link {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
}

.editor-pick-widget__link:hover {
	text-decoration: underline;
}

/* =============================================================
   25. ARTICLE BODY (prose)
   ============================================================= */
.article-body {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-gray-700);
}

.article-body p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

.article-body h2 {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-dark);
	margin-top: 2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.article-body h2::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 1.75rem;
	background-color: var(--color-primary);
	border-radius: var(--radius-full);
	flex-shrink: 0;
}

.article-body h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-dark);
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.article-body ul,
.article-body ol {
	margin-bottom: 1rem;
	padding-left: 1.25rem;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
	margin-bottom: 0.375rem;
	line-height: 1.7;
}

.article-body a {
	color: var(--color-primary);
	text-decoration: none;
}

.article-body a:hover {
	text-decoration: underline;
}

.article-body strong {
	color: var(--color-dark);
	font-weight: 700;
}

.article-body blockquote {
	border-left: 4px solid var(--color-primary);
	padding-left: 1rem;
	color: var(--color-gray-600);
	font-style: italic;
	margin: 1.5rem 0;
}

/* Meta do artigo (autora, data, tempo) */
.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--color-gray-600);
	margin-bottom: 1rem;
}

.article-meta__sep {
	color: var(--color-gray-300);
}

.article-meta__author {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-weight: 500;
	color: var(--color-dark);
}

.article-meta__author svg {
	width: 1rem;
	height: 1rem;
}

.article-meta__date,
.article-meta__reading-time {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.article-meta__date svg,
.article-meta__reading-time svg {
	width: 1rem;
	height: 1rem;
}

/* Section heading com barra lateral laranja */
.section-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 1.5rem;
}

.section-heading::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 1.75rem;
	background-color: var(--color-primary);
	border-radius: var(--radius-full);
	flex-shrink: 0;
}

/* =============================================================
   26. UTILITY CLASSES
   ============================================================= */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.text-primary { color: var(--color-primary); }
.text-dark    { color: var(--color-dark); }
.text-muted   { color: var(--color-gray-600); }

.font-bold     { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.font-medium   { font-weight: 500; }

.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.rounded    { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.w-full   { width: 100%; }
.h-full   { height: 100%; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0  { inset: 0; }

.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }

.block        { display: block; }
.inline-block { display: inline-block; }
.hidden       { display: none; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }

.leading-snug    { line-height: 1.35; }
.leading-relaxed { line-height: 1.65; }

.whitespace-nowrap { white-space: nowrap; }

/* Grid de artigos */
.articles-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

/* Seção de artigos recentes no blog */
.section-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-dark);
	margin-bottom: 1.25rem;
}

.section-label::after {
	content: '';
	display: inline-block;
	width: 2rem;
	height: 2px;
	background-color: var(--color-primary);
	border-radius: var(--radius-full);
}

/* Overlay gradiente (hero categoria) */
.img-overlay-r {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent, rgba(255,255,255,.15));
	pointer-events: none;
}

/* Wrapper de imagem com lazy load placeholder */
.img-placeholder {
	background-color: var(--color-gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =============================================================
   27. RESPONSIVE — Mobile-first breakpoints
   ============================================================= */

/* --- 640px (sm) --- */
@media (min-width: 640px) {
	:root {
		--container-px: 1.5rem;
	}

	.trust-strip__inner {
		gap: 2rem;
	}

	.trust-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.trust-stats__grid > div:nth-child(1),
	.trust-stats__grid > div:nth-child(2) {
		border-bottom: none;
	}

	.trust-stats__grid > div:nth-child(odd) {
		border-right: none;
	}

	.trust-stats__grid > div:not(:last-child) {
		border-right: 1px solid var(--color-gray-200);
	}

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

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

	.cookie-banner__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.filter-bar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.product-card__body {
		flex-direction: row;
	}

	.product-card__image {
		width: 13rem;
		height: auto;
	}

	.pros-cons {
		flex-direction: row;
	}

	.category-hero {
		grid-template-columns: 3fr 2fr;
	}

	.article-hero {
		height: 20rem;
	}

	.card-featured__image {
		height: 18rem;
	}
}

/* --- 768px (md) --- */
@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* --- 1024px (lg) --- */
@media (min-width: 1024px) {
	:root {
		--container-px: 2rem;
	}

	/* Nav desktop visível */
	.nav-primary {
		display: flex;
	}

	/* Hamburger oculto */
	.btn-hamburger {
		display: none;
	}

	/* Layout de página: artigo + sidebar lado a lado */
	.page-layout {
		flex-direction: row;
		align-items: flex-start;
	}

	.page-sidebar {
		width: 16rem;
	}

	/* TOC sticky */
	.toc-sticky-wrap {
		position: sticky;
		top: 5rem;
	}

	/* 3 colunas no grid de artigos */
	.articles-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.article-hero {
		height: 24rem;
	}

	.card-featured__image {
		height: 18rem;
	}
}

/* --- 1280px (xl) --- */
@media (min-width: 1280px) {
	.page-sidebar {
		width: 18rem;
	}
}

/* ============================================================
   WINNER BOX — componente de destaque acima do fold (single.php)
   Renderiza o primeiro item de _coloiado_quick_picks com CTAs.
============================================================ */
.winner-box {
	border: 2.5px solid #D93611;
	border-radius: 12px;
	background: #fffdf7;
	padding: 1.5rem 1.75rem;
	margin: 1.5rem 0 1.75rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem 2rem;
	align-items: center;
}
@media (max-width: 640px) {
	.winner-box {
		grid-template-columns: 1fr;
		padding: 1.25rem;
	}
}
.winner-box__left {
	display: flex;
	flex-direction: column;
	gap: .55rem;
}
.winner-box__badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: #D93611;
	color: #0A1073;
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .3rem .9rem;
	border-radius: 4px;
	width: fit-content;
}
.winner-box__name {
	font-size: 1.3rem;
	font-weight: 900;
	color: #0A1073;
	line-height: 1.2;
	margin: 0;
}
.winner-box__sub {
	font-size: .9rem;
	color: #555;
	margin: 0;
	line-height: 1.5;
}
.winner-box__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: .25rem;
}
.winner-box__price {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0A1073;
}
.winner-box__stars .star--filled { color: #D93611; }
.winner-box__stars .star--empty  { color: #ddd; }
.winner-box__stars .stars__value {
	font-size: .78rem;
	font-weight: 700;
	color: #888;
	margin-left: .3rem;
}
.winner-box__ctas {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	min-width: 200px;
}
@media (max-width: 640px) {
	.winner-box__ctas {
		flex-direction: row;
		min-width: auto;
	}
}
.winner-box__btn-primary {
	display: block;
	text-align: center;
	background: #D93611;
	color: #0A1073 !important;
	font-size: .9rem;
	font-weight: 700;
	padding: .75rem 1.25rem;
	border-radius: 6px;
	text-decoration: none !important;
	transition: background .2s, transform .15s;
	line-height: 1.3;
}
.winner-box__btn-primary:hover {
	background: #B82D0E;
	transform: translateY(-2px);
}
.winner-box__btn-secondary {
	display: block;
	text-align: center;
	background: transparent;
	color: #0A1073 !important;
	font-size: .85rem;
	font-weight: 600;
	padding: .65rem 1.25rem;
	border-radius: 6px;
	border: 2px solid #0A1073;
	text-decoration: none !important;
	transition: background .2s, color .2s;
	line-height: 1.3;
}
.winner-box__btn-secondary:hover {
	background: #0A1073;
	color: #fff !important;
}

/* =============================================================
   28. SEARCH OVERLAY
   ============================================================= */
.search-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10,16,115,.85);
	z-index: 9999;
	align-items: flex-start;
	justify-content: center;
	padding-top: 10vh;
}
.search-overlay.is-open { display: flex; }
.search-overlay__inner {
	width: 100%;
	max-width: 600px;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	gap: .75rem;
}
.search-overlay__inner form {
	display: flex;
	flex: 1;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
.search-overlay__inner input[type=search] {
	flex: 1;
	padding: .875rem 1.25rem;
	font-size: 1rem;
	border: none;
	outline: none;
	background: transparent;
}
.search-overlay__inner button[type=submit] {
	background: #D93611;
	color: #fff;
	border: none;
	padding: 0 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.search-overlay__close {
	background: transparent;
	border: 2px solid rgba(255,255,255,.6);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1rem;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Garantir focus-visible — global override para WCAG 2.1 SC 2.4.7 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.wp-block-search__input:focus-visible,
.wp-block-search__input:focus,
.wp-block-search__button:focus-visible,
.wp-block-search__button:focus {
	outline: 2px solid #D93611 !important;
	outline-offset: 2px !important;
}


/* =============================================================
   28. NEW DESIGN v2 — prototipo-cr port
   ============================================================= */

/* Gradient wrapper */
.gradient-wrap {
  background: linear-gradient(135deg, #0A1073 0%, #4A55A2 100%);
}

/* Header transparent (front page) */
.site-header--transparent {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: rgba(255,255,255,.10) !important;
}
/* logo-light.svg já carregada via PHP no front page — sem filtro */

/* Header center */
.header-center {
  flex: 1; display: flex; align-items: center; gap: 12px;
  max-width: 640px; margin: 0 auto; padding-left: 16px;
}

/* Hamburger (hero variant — white) */
.site-header--transparent .btn-hamburger {
  color: white;
}
.btn-hamburger {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: #1f2937; padding: 8px; border-radius: 6px;
}
.btn-hamburger:hover { background: rgba(255,255,255,.10); }

/* Search bar */
.header-search-bar {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: white; border-radius: 9999px; padding: 0 16px; height: 44px;
  border: 1px solid rgba(255,255,255,.20);
}
.header-search-bar .search-icon { color: #9ca3af; flex-shrink: 0; }
.header-search-form { flex: 1; }
.header-search-form input[type="search"] {
  width: 100%; border: none; outline: none;
  font-size: 15px; color: #111827; background: transparent;
}
.header-search-form input[type="search"]::placeholder { color: #9ca3af; }

/* Ask Coloiado button */
.btn-ask-coloiado {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 9999px; padding: 6px 12px;
  font-size: 13px; font-weight: 700; color: #374151;
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn-ask-coloiado:hover { background: #f3f4f6; }

/* Header right */
.header-right {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0; padding-left: 16px;
}
.btn-entrar {
  font-size: 15px; font-weight: 700; color: white;
  text-decoration: none; background: none; border: none; cursor: pointer;
}
.btn-entrar:hover { opacity: .8; }
.btn-assinar-header {
  background: #00c853; color: white;
  font-size: 15px; font-weight: 700;
  padding: 0 24px; height: 44px; border-radius: 9999px;
  border: none; cursor: pointer; display: inline-flex; align-items: center;
  text-decoration: none;
}
.btn-assinar-header:hover { opacity: .9; }

/* Trust strip — new design */
.trust-strip {
  color: rgba(255,255,255,.90); font-size: 12px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.10);
  background: transparent;
}
.trust-strip__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.trust-pill {
  background: rgba(255,255,255,.10); border-radius: 9999px;
  padding: 4px 12px; font-weight: 500; white-space: nowrap;
}
.trust-check { color: #00c853; margin-right: 4px; }

/* HERO */
.fp-hero { padding: 48px 0 64px; color: white; }
.fp-hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .fp-hero__grid { grid-template-columns: 8fr 4fr; } }
.fp-hero__eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #00c853; margin-bottom: 16px; }
.fp-hero__h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -.02em; color: white; margin-bottom: 20px; max-width: 700px; }
.fp-hero__sub { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 32px; }
.fp-hero__stats { display: flex; align-items: center; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.20); margin-bottom: 32px; flex-wrap: wrap; }
.fp-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.20); flex-shrink: 0; }
.fp-stat__value { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; line-height: 1; color: #00c853; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.fp-stat__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.90); }
.fp-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 8px; background: #D93611; color: white; font-size: 15px; font-weight: 700; padding: 0 24px; height: 48px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; }
.btn-hero-primary:hover { opacity: .9; color: white; }
.btn-hero-outline { display: inline-flex; align-items: center; background: transparent; color: white; border: 2px solid rgba(255,255,255,.40); font-size: 15px; font-weight: 700; padding: 0 24px; height: 48px; border-radius: 8px; cursor: pointer; text-decoration: none; }
.btn-hero-outline:hover { background: rgba(255,255,255,.10); color: white; }

/* Rated card */
.rated-card { background: white; border-radius: 20px; padding: 32px; width: 100%; box-shadow: 0 10px 25px -3px rgba(0,0,0,.12), 0 4px 10px -2px rgba(0,0,0,.08); }
.rated-card__label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #006039; margin-bottom: 16px; }
.rated-card__list { list-style: none; padding: 0; margin: 0; }
.rated-card__item { padding: 20px 0; border-top: 1px solid #e5e7eb; }
.rated-card__item:first-child { border-top: none; padding-top: 0; }
.rated-card__link { display: flex; align-items: center; justify-content: space-between; gap: 16px; text-decoration: none; }
.rated-card__link h3 { font-size: 18px; font-weight: 700; line-height: 1.3; color: black; margin: 0; transition: color .15s; }
.rated-card__link:hover h3 { color: #006039; }
.rated-arrow { flex-shrink: 0; font-size: 26px; font-weight: 300; color: black; transition: transform .15s; }
.rated-card__link:hover .rated-arrow { transform: translateX(4px); color: #006039; }

/* Experts carousel */
.fp-experts { padding: 56px 0; overflow: hidden; }
.fp-experts__header { text-align: center; margin-bottom: 48px; padding: 0 20px; }
.fp-experts__eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; color: #00c853; margin-bottom: 12px; }
.fp-experts__h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 900; color: white; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.15; }
.fp-experts__sub { font-size: clamp(13px, 1.5vw, 17px); color: rgba(255,255,255,.70); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.fp-experts__scroll { display: flex; gap: 24px; overflow-x: auto; padding: 0 140px 16px; scrollbar-width: none; scroll-behavior: smooth; }
.fp-experts__scroll::-webkit-scrollbar { display: none; }
.fp-expert-card { flex-shrink: 0; width: 320px; height: 440px; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 8px 40px rgba(0,0,0,.25); text-decoration: none; display: block; }
.fp-expert-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.fp-expert-card:hover img { transform: scale(1.08); }
.fp-expert-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,16,115,.55) 65%, rgba(0,0,0,.85) 100%); }
.fp-expert-card__text { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.fp-expert-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #00c853; margin-bottom: 8px; }
.fp-expert-card__title { font-size: 20px; font-weight: 700; color: white; line-height: 1.3; margin: 0; }

/* Mission strip */
.mission-strip { background: #f7f7f7; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.mission-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; padding: 12px 20px; font-size: 12px; font-weight: 500; color: #4b5563; letter-spacing: .04em; }
.mission-strip__title { font-weight: 700; color: #1f2937; text-transform: uppercase; }
.mission-item { display: flex; align-items: center; gap: 6px; }
.mission-dot { color: #00c853; }
.btn-assine-now { background: #D93611; color: white; border: none; padding: 6px 16px; border-radius: 9999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; text-decoration: none; }

/* Editorial section */
.fp-editorial { background: white; padding: 48px 0 64px; }
.fp-tabs { display: flex; align-items: center; gap: 32px; margin-bottom: 40px; border-bottom: 1px solid #e5e7eb; padding-bottom: 16px; overflow-x: auto; }
.fp-tab { background: none; border: none; cursor: pointer; font-size: clamp(16px, 2vw, 22px); padding-bottom: 8px; white-space: nowrap; font-weight: 400; color: #6b7280; }
.fp-tab--active { font-weight: 800; color: #0A1073; border-bottom: 3px solid #0A1073; }
.fp-editorial__featured { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 1024px) { .fp-editorial__featured { grid-template-columns: 7fr 5fr; } }
.fp-featured-img { display: block; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: #f3f4f6; }
.fp-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-featured-copy { display: flex; flex-direction: column; justify-content: center; }
.fp-featured-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; color: #00c853; margin-bottom: 12px; }
.fp-featured-h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; color: #1a1a1a; margin-bottom: 16px; }
.fp-featured-h3 a { color: inherit; text-decoration: none; }
.fp-featured-h3 a:hover { color: #D93611; }
.fp-featured-p { font-size: 16px; color: #6b7280; line-height: 1.65; margin-bottom: 24px; }
.fp-featured-link { font-size: 14px; font-weight: 700; color: #0A1073; text-decoration: none; }
.fp-featured-link:hover { color: #D93611; }
.fp-articles-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 1024px) { .fp-articles-4 { grid-template-columns: repeat(4, 1fr); } }
.fp-article-card-sm { text-decoration: none; display: block; }
.fp-article-card-sm__thumb { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; background: #f3f4f6; margin-bottom: 12px; }
.fp-article-card-sm__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fp-article-card-sm:hover .fp-article-card-sm__thumb img { transform: scale(1.05); }
.fp-article-card-sm__cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 4px; }
.fp-article-card-sm h4 { font-size: 15px; font-weight: 700; line-height: 1.35; color: #1a1a1a; margin: 0; }
.fp-article-card-sm:hover h4 { color: #0A1073; }

/* Ratings circles */
.fp-ratings { background: white; padding: 48px 0 64px; border-top: 1px solid #f3f4f6; }
.fp-ratings__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.fp-ratings__header-left { display: flex; align-items: center; gap: 12px; }
.fp-ratings__header-left h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; color: #1a1a1a; letter-spacing: -.02em; margin: 0; }
.fp-ratings__badge { width: 24px; height: 24px; border-radius: 50%; background: #00c853; color: white; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.fp-ratings__link { font-size: 13px; font-weight: 700; color: #0A1073; text-decoration: none; }
.fp-ratings__link:hover { color: #D93611; }
.fp-circles { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 32px 48px; }
.fp-circle { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 88px; text-decoration: none; }
.fp-circle__img { width: 80px; height: 80px; border-radius: 50%; background: #f9fafb; border: 2px solid #e5e7eb; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.fp-circle:hover .fp-circle__img { border-color: #0A1073; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.fp-circle__img img { width: 100%; height: 100%; object-fit: cover; }
.fp-circle__label { font-size: 12px; font-weight: 500; color: #4b5563; text-align: center; line-height: 1.3; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
.fp-circle:hover .fp-circle__label { color: #0A1073; }

/* Membership */
.fp-membership { background: white; padding: 64px 0 80px; border-top: 1px solid #f3f4f6; }
.fp-membership__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 768px) { .fp-membership__grid { grid-template-columns: 1fr 1fr; } }
.fp-membership h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: #1a1a1a; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 24px; }
.fp-membership p { font-size: 15px; color: #6b7280; line-height: 1.65; margin-bottom: 24px; max-width: 500px; }
.fp-membership__subtitle { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px !important; }
.fp-membership__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; }
.fp-membership__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #374151; line-height: 1.5; }
.fp-check { color: #00c853; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.fp-benefits { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.fp-benefit { display: flex; align-items: center; gap: 16px; }
.fp-benefit__icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.fp-benefit span { font-size: 16px; font-weight: 700; color: #1a1a1a; }

/* Newsletter */
.fp-newsletter { background: #0A1073; padding: 64px 0 80px; }
.fp-newsletter__eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #33B5E5; margin-bottom: 12px; text-align: center; }
.fp-newsletter__h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: white; letter-spacing: -.02em; margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; line-height: 1.1; }
.fp-newsletter__p { font-size: clamp(14px, 1.8vw, 18px); color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 32px; line-height: 1.55; text-align: center; }
.fp-newsletter__form { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 400px; margin: 0 auto; }
@media (min-width: 640px) { .fp-newsletter__form { flex-direction: row; } }
.fp-newsletter__input { width: 100%; height: 48px; padding: 0 16px; border-radius: 8px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20); color: white; font-size: 14px; outline: none; }
.fp-newsletter__input::placeholder { color: rgba(255,255,255,.40); }
.fp-newsletter__input:focus { border-color: #33B5E5; }
.fp-newsletter__btn { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: #D93611; color: white; font-size: 14px; font-weight: 700; padding: 0 24px; height: 48px; border-radius: 8px; border: none; cursor: pointer; white-space: nowrap; }
.fp-newsletter__fine { font-size: 11px; color: rgba(255,255,255,.40); text-align: center; margin-top: 16px; }

/* Footer — new design */
.site-footer { background: #0A1073; color: white; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 64px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.60); line-height: 1.65; max-width: 220px; margin: 0; }
.footer-col h4, .footer-col__heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.40); margin-bottom: 16px; }
.footer-nav-list, .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-nav-list li a, .footer-col a { font-size: 13px; color: rgba(255,255,255,.70); transition: color .15s; text-decoration: none; }
.footer-nav-list li a:hover, .footer-col a:hover { color: white; }
.site-footer__bottom, .footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 24px 0; display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: rgba(255,255,255,.40); }
@media (min-width: 768px) { .site-footer__bottom, .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__bottom p, .footer-bottom p { margin: 0; color: rgba(255,255,255,.40); font-size: 12px; }

/* Hide old trust-stats */
.trust-stats { display: none; }

/* Nav mobile menu */
.nav-mobile-menu { background: #0A1073; padding: 16px 20px; }
.nav-mobile-menu a { display: block; color: white; font-size: 16px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.10); text-decoration: none; }
.nav-mobile-menu a:last-child { border-bottom: none; }

/* =========================================
   29. INTERNAL PAGES — page.php, single.php, archive.php
   Brand tokens: navy #0A1073, orange-red #D93611, cyan #33B5E5
   ========================================= */

/* --- Page Static (Sobre, Contato, Privacidade, etc.) --- */
.page-static { padding-top: 3rem; padding-bottom: 4rem; }
.page-static__inner { max-width: 760px; }
.page-static__title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 2rem;
  line-height: 1.2;
  color: #0A1073;
}
.page-static__content { font-size: 1rem; line-height: 1.75; color: #374151; }
.page-static__content h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 .75rem; color: #0A1073; }
.page-static__content h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: #0A1073; }
.page-static__content p { margin-bottom: 1rem; }
.page-static__content ul,
.page-static__content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-static__content li { margin-bottom: .4rem; }
.page-static__content a { color: #D93611; font-weight: 600; }
.page-static__content a:hover { text-decoration: underline; color: #0A1073; }
.page-static__content blockquote {
  border-left: 3px solid #D93611;
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: #f9fafb;
  font-style: italic;
  color: #4b5563;
}
.page-static__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.page-static__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.page-static__content th,
.page-static__content td {
  border: 1px solid #e5e7eb;
  padding: .5rem .75rem;
  text-align: left;
}
.page-static__content th { background: #f3f4f6; font-weight: 700; color: #0A1073; }

/* --- Single Article body alignment --- */
body:not(.home) .container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.article-body { color: #374151; font-size: 1.05rem; line-height: 1.8; }
.article-body h2 { color: #0A1073; font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid #f3f4f6; }
.article-body h3 { color: #0A1073; font-size: 1.2rem; font-weight: 700; margin: 2rem 0 .75rem; }
.article-body a { color: #D93611; font-weight: 600; }
.article-body a:hover { color: #0A1073; text-decoration: underline; }
.article-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.25rem 0; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { margin-bottom: .5rem; }
.article-body blockquote {
  border-left: 3px solid #D93611;
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: #fefce8;
  font-style: italic;
  color: #4b5563;
  border-radius: 0 8px 8px 0;
}

/* --- Category hero update — use brand colors --- */
.category-hero { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
@media (min-width: 768px) { .category-hero { grid-template-columns: 1fr 1fr; align-items: center; } }
.category-hero__image { border-radius: 12px; overflow: hidden; position: relative; background: #f3f4f6; min-height: 200px; }
.category-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.category-hero__title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; color: #0A1073; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 12px; }
.category-hero__description { font-size: 15px; color: #6b7280; line-height: 1.65; margin-bottom: 16px; }
.category-hero__meta { font-size: 13px; color: #9ca3af; }

/* --- Filter bar styling --- */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; padding: 16px 0; border-bottom: 1px solid #f3f4f6; }
.filter-bar__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { background: #f3f4f6; color: #374151; border: 1px solid transparent; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; }
.filter-btn:hover { border-color: #0A1073; color: #0A1073; }
.filter-btn.is-active { background: #0A1073; color: white; border-color: #0A1073; }
.filter-bar__sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b7280; }
.filter-bar__sort select { border: 1px solid #e5e7eb; border-radius: 6px; padding: 4px 8px; font-size: 13px; color: #374151; background: white; }

/* --- Articles grid --- */
.articles-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
@media (min-width: 640px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Results count --- */
.results-count { font-size: 14px; color: #9ca3af; margin-bottom: 20px; }

/* --- Pagination --- */
.pagination ul { list-style: none; display: flex; gap: 4px; padding: 0; margin: 32px 0; justify-content: center; }
.pagination li a, .pagination li span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 8px; font-size: 14px; font-weight: 600; color: #374151; background: #f3f4f6; text-decoration: none; transition: all .15s; }
.pagination li a:hover { background: #0A1073; color: white; }
.pagination li .current { background: #0A1073; color: white; }

/* --- Breadcrumb --- */
.breadcrumb { font-size: 13px; color: #9ca3af; padding: 12px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.breadcrumb a { color: #6b7280; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: #0A1073; }
.breadcrumb__sep { margin: 0 2px; }
.breadcrumb__current { color: #374151; font-weight: 600; }

/* Internal pages padding (moved from inline styles) */
body:not(.home) #main.container { padding-top: 2rem; padding-bottom: 3rem; }

/* =============================================================
   30. INNER PAGES v2 — Design System Alignment
   Brand tokens: navy #0A1073, orange-red #D93611, cyan #33B5E5
   ============================================================= */

/* --- Smooth scroll for TOC navigation --- */
html { scroll-behavior: smooth; }

/* --- Reading progress bar (top of viewport) --- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #D93611, #33B5E5);
  z-index: 9999;
  transition: width .15s ease-out;
  width: 0;
}

/* --- Header for inner pages: white bg with brand accent --- */
body:not(.home) .site-header {
  border-bottom: 2px solid #0A1073;
  box-shadow: 0 2px 8px rgba(10,16,115,.06);
}
body:not(.home) .btn-entrar { color: #0A1073; }
body:not(.home) .btn-entrar:hover { color: #D93611; }

/* --- Single Article: H1 with navy + subtle accent bar --- */
body.single article > header h1,
body.single-artigo article > header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #0A1073;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .75rem;
}
body.single article > header h1::after,
body.single-artigo article > header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D93611, #33B5E5);
  border-radius: 2px;
}

/* --- Article meta v2: refined with brand colors --- */
.article-meta {
  padding: .75rem 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
}
.article-meta__author { color: #0A1073; font-weight: 700; }
.article-meta__author a { color: #0A1073; text-decoration: none; }
.article-meta__author a:hover { color: #D93611; }
.article-meta__sep { color: #e5e7eb; }
.article-meta__date svg,
.article-meta__reading-time svg,
.article-meta__author svg { color: #9ca3af; }

/* --- Badge enhancements for inner pages --- */
.badge-category {
  background: rgba(10,16,115,.06);
  color: #0A1073;
  border-color: rgba(10,16,115,.12);
  font-weight: 700;
  transition: all .15s;
}
.badge-category:hover {
  background: #0A1073;
  color: white;
  border-color: #0A1073;
}

/* --- Disclosure banner v2: softer, brand-aligned --- */
.disclosure-banner {
  background: #f0f4ff;
  border: 1px solid rgba(10,16,115,.12);
  color: #374151;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .8rem;
  line-height: 1.6;
}
.disclosure-banner svg { color: #0A1073; flex-shrink: 0; }
.disclosure-banner a { color: #D93611; font-weight: 600; margin-left: 4px; }
.disclosure-banner a:hover { text-decoration: underline; }

/* --- Affiliate disclosure box v2 --- */
.affiliate-disclosure {
  background: #fafbff;
  border: 1px solid rgba(10,16,115,.10);
  border-left: 3px solid #0A1073;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
}
.affiliate-disclosure svg { color: #0A1073; }
.affiliate-disclosure strong { color: #0A1073; }

/* --- Article hero v2: rounded corners, caption pill --- */
.article-hero {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.article-hero__caption {
  background: rgba(10,16,115,.75);
  backdrop-filter: blur(8px);
  font-weight: 500;
  letter-spacing: .02em;
}

/* --- Sidebar widgets v2: refined cards --- */
.sidebar-widget {
  background: #fafbff;
  border: 1px solid rgba(10,16,115,.08);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-widget__title {
  color: #0A1073;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid rgba(10,16,115,.08);
  padding-bottom: .75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sidebar-widget__title svg { color: #D93611; width: 1rem; height: 1rem; }

/* --- TOC v2: brand accent on active --- */
.toc-item { border-bottom: 1px solid rgba(10,16,115,.05); padding: .5rem 0; }
.toc-item:last-child { border-bottom: none; }
.toc-item__num {
  color: #D93611;
  font-weight: 800;
  font-size: .8rem;
  min-width: 1.5rem;
}
.toc-item a {
  color: #374151;
  font-size: .85rem;
  font-weight: 500;
  transition: color .15s, padding-left .15s;
}
.toc-item a:hover { color: #0A1073; padding-left: 4px; }
.toc-item a.is-active {
  color: #0A1073;
  font-weight: 700;
  border-left: 2px solid #D93611;
  padding-left: 8px;
}

/* --- Related articles v2 --- */
.related-list { list-style: none; padding: 0; margin: 0; }
.related-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(10,16,115,.06);
  text-decoration: none;
  transition: background .15s;
}
.related-item:last-child { border-bottom: none; }
.related-item:hover { background: rgba(10,16,115,.03); border-radius: 8px; padding-left: 8px; }
.related-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
}
.related-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item__title {
  font-size: .85rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  display: block;
}
.related-item:hover .related-item__title { color: #0A1073; }
.related-item__date { font-size: .7rem; color: #9ca3af; display: block; margin-top: 2px; }

/* --- Newsletter widget v2: navy CTA block --- */
.newsletter-widget {
  background: linear-gradient(135deg, #0A1073 0%, #1a2a9a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  text-align: center;
}
.newsletter-widget__title {
  font-size: 1rem;
  font-weight: 900;
  color: white;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
}
.newsletter-widget__text {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.newsletter-widget form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.newsletter-widget input[type="email"] {
  width: 100%;
  padding: .625rem .875rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: white;
  font-size: .85rem;
  outline: none;
}
.newsletter-widget input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-widget input[type="email"]:focus { border-color: #33B5E5; }
.newsletter-widget .btn { background: #D93611; color: white; border: none; font-weight: 700; width: 100%; }
.newsletter-widget .btn:hover { background: #b82d0e; }
.newsletter-widget__lgpd {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  margin-top: .5rem;
}

/* --- Quick picks v2 refinement --- */
.quick-picks {
  border-color: rgba(10,16,115,.15);
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
}
.quick-picks__title { color: #0A1073; }
.quick-picks__item {
  border-bottom-color: rgba(10,16,115,.08);
  transition: background .15s;
}
.quick-picks__item:hover { background: rgba(10,16,115,.03); }

/* --- Winner box v2 text refinement --- */
.winner-box__badge { background: #D93611; color: white; }
.winner-box__btn-primary { color: white !important; }

/* --- Article body link buttons v2 --- */
.article-body a[href*="/go/"] {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #D93611;
  color: white !important;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  margin: .25rem .25rem .25rem 0;
}
.article-body a[href*="/go/"]:hover {
  background: #b82d0e;
  transform: translateY(-1px);
  color: white !important;
}

/* --- Page static v2: breadcrumb integration --- */
body:not(.home) .breadcrumb {
  margin-bottom: .5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #f3f4f6;
}
body:not(.home) .breadcrumb a:hover { color: #D93611; }

/* --- Archive page card hover refinement --- */
.card-article { border: 1px solid rgba(10,16,115,.06); }
.card-article:hover {
  border-color: rgba(10,16,115,.15);
  box-shadow: 0 8px 24px rgba(10,16,115,.08), inset 3px 0 0 #D93611;
}

/* --- Responsive inner pages --- */
@media (max-width: 1024px) {
  body:not(.home) .page-layout { gap: 2.5rem; }
  .sidebar-widget { margin-bottom: 1rem; }
}
@media (max-width: 640px) {
  body.single article > header h1 { font-size: 1.35rem; }
  .article-meta { font-size: .78rem; gap: .5rem; }
  .article-meta__sep { display: none; }
  .article-meta { flex-direction: column; align-items: flex-start; gap: .35rem; }
  .sidebar-widget { padding: 1rem; }
  .newsletter-widget { padding: 1.25rem; }
  .related-item__thumb { width: 48px; height: 48px; }
}
