body {  font-family: 'Inter', sans-serif; font-optical-sizing: auto; font-weight: normal; font-style: normal; }
h1, h2, h3, h4, h5, h6 { font-family: 'Satoshi', sans-serif; }
abbr { border:none !important; text-decoration:none !important; }
:root { --wpadmin-offset: 0px; }
.site-header {
	position: sticky;
	top: var(--wpadmin-offset);
	z-index: 30;
	background: #FFF;
	transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
	background: rgba(255,255,255,.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 24px rgba(15,14,23,.08);
}
.site-header--transparent {
	position: absolute;
	top: var(--wpadmin-offset);
	left: 0;
	right: 0;
	z-index: 20;
	background: transparent;
}
.site-header--transparent.is-scrolled {
	position: fixed;
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 24px rgba(15,14,23,.08);
	
}
@media (max-width:480px) {
	.site-header--transparent.is-scrolled {
		top: 0;
	}
}

.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
}
/* style.css's legacy float clearfix ("content:'.'" on .container::after) turns
   into a real 3rd flex item here, since .site-nav also carries the .container
   class — it was silently eating the space justify-content:space-between was
   supposed to give .site-nav__actions. Not needed in a flex layout anyway. */
.site-nav::after { content: none; display: none; }
.site-nav__brand-wrap { margin: 0; }
.site-nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.site-nav__brand img { height: 26px; width: auto; max-width: none; display: block; }
/* #header beats Bootstrap's ".collapse:not(.show){display:none}" (which
   normally only gets overridden by ".navbar-expand-*"; our markup doesn't
   use that navbar wrapper, so the menu needs to win on its own here). */
#header .site-nav__collapse { display: flex; }
@media (min-width:992px) {
	/* absolutely centers the menu on the whole bar, regardless of how wide
	   the brand/actions columns end up being on either side */
	#header .site-nav__collapse {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
}
.site-nav__menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(16px, 2.2vw, 34px);
	margin: 0;
	padding: 0;
}
.site-nav__menu a {
	color: #3A3A45;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease;
}
.site-nav__menu a:hover { color: #0F0E17; }
.site-nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-nav__search {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #3A3A45;
	transition: color .2s ease;
}
.site-nav__search svg { width: 18px; height: 18px; }
.site-nav__search:hover { color: #6D5EF5; }
.site-nav__cta {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(160deg, #35323F 0%, #0F0E17 100%);
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .2s ease;
	white-space: nowrap;
}
.site-nav__cta:hover { color: #FFF; }
.site-nav__toggler { display: none; }

@media (max-width:991px) {
	.site-nav {flex-wrap: wrap;padding: 18px 10px;}
	.site-nav__toggler {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		border: solid 1px #E6E4F7;
		border-radius: 8px;
		background: #FFF;
		color: #0F0E17;
		width: 38px;
		height: 38px;
		order: 3;
	}
	.site-nav__toggler svg { width: 20px; height: 20px; }
	#header .site-nav__collapse {
		flex-basis: 100%;
		order: 4;
	}
	#header .site-nav__collapse:not(.show) { display: none; }
	.site-nav__menu { flex-direction: column; align-items: flex-start; padding: 14px 0; }
	.site-nav__actions {
		display: none;
		order: 5;
		flex-basis: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding-top: 14px;
		border-top: solid 1px #ECEAF7;
	}
	.site-nav__actions .site-nav__search {
		width: auto;
		justify-content: flex-start;
		gap: 8px;
		font-size: 14px;
	}
	.site-nav__actions .site-nav__search::after { content: 'Search'; }
	.site-nav__actions .site-nav__cta { justify-content: center; }
	#header .site-nav__collapse.show ~ .site-nav__actions { display: flex; }
	.site-header--transparent .site-nav__collapse.show {
		background: #FFF;
		border-radius: 8px 8px 0 0;
		padding: 4px 16px;
		box-shadow: 0 12px 30px rgba(15,14,23,.12);
	}
	.site-header--transparent .site-nav__collapse.show ~ .site-nav__actions {
		background: #FFF;
		border-radius: 0 0 8px 8px;
		padding: 14px 16px;
		margin-top: -1px;
		box-shadow: 0 12px 30px rgba(15,14,23,.12);
	}
}


#footer { width: 100%; background-color: #FFF; padding: clamp(30px, 3.4vw, 48px) 0 22px; }
.footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr 1.4fr;
	gap: clamp(20px, 3vw, 40px);
	padding-bottom: clamp(24px, 2.8vw, 40px);
}
.footer__brand { min-width: 0; }
.footer__logo { margin: 0 0 14px; }
.footer__logo img { max-width: 170px; height: auto; }
.footer__tagline {
	font-size: 13px;
	line-height: 160%;
	color: #5C5F72;
	margin: 0 0 10px;
	max-width: 24em;
}
.footer__tagline:last-of-type { margin-bottom: 18px; }
.footer__social { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; }
.footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: #F5F5FA;
	color: #1A1A1A;
	transition: color .2s ease, background .2s ease;
}
.footer__social a:hover { color: #FFF; background: #6D5EF5; }
.footer__social svg { width: 17px; height: 17px; }

.footer__col { min-width: 0; }
.footer__col-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #0F0E17;
	margin: 0 0 16px;
	line-height: 1.3;
}
.footer__col-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	cursor: default;
}
.footer__col-chevron { display: none; }
.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 11px; }
.footer__links a {
	font-size: 14px;
	line-height: 1.4;
	color: #5C5F72;
	text-decoration: none;
	transition: color .2s ease;
}
.footer__links a:hover { color: #6D5EF5; }

.footer__newsletter { min-width: 0; }
.footer__newsletter-text { font-size: 13px; line-height: 160%; color: #5C5F72; margin: 0 0 16px; }
.footer__newsletter-form { display: flex; gap: 8px; }
.footer__newsletter-form input {
	flex: 1;
	min-width: 0;
	border: solid 1px #E4E2EE;
	border-radius: 10px;
	background: #FFF;
	padding: 11px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #333;
	outline: none;
}
.footer__newsletter-form input::placeholder { color: #9A9DAC; }
.footer__newsletter-form button {
	flex-shrink: 0;
	border: none;
	border-radius: 10px;
	background: linear-gradient(160deg, #35323F 0%, #0F0E17 100%);
	color: #FFF;
	padding: 11px 18px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: background .2s ease;
}
.footer__newsletter-form button:hover {  }
.footer__newsletter-note { font-size: 12px; color: #9A9DAC; margin: 10px 0 0; }

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 20px;
	border-top: solid 1px #ECEAF7;
}
.footer__copy { font-size: 13px; color: #75798C; margin: 0; }
.footer__badges { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.footer__badges-note { font-size: 13px; color: #9A9DAC; }
.footer__badge { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #3A3D4D; }
.footer__badge img { width: 17px; height: 17px; border-radius: 4px; }
.footer__badge svg { width: 17px; height: 17px; }

@media (max-width:991px) {
	.footer__top { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	.footer__brand, .footer__newsletter { grid-column: 1 / -1; }
}
@media (max-width:600px) {
	.footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width:600px) {
	.footer__top { grid-template-columns: 1fr; row-gap: 0; }
	.footer__brand { margin-bottom: 28px; }
	.footer__newsletter { margin-top: 24px; }
	.footer__col { border-top: solid 1px #ECEAF7; }
	.footer__col:last-of-type { border-bottom: solid 1px #ECEAF7; }
	.footer__col-title { margin: 0; }
	.footer__col-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
		cursor: pointer;
	}
	.footer__col-chevron { display: block; width: 16px; height: 16px; flex-shrink: 0; color: #9A9DAC; transition: transform .2s ease; }
	.footer__col.is-open .footer__col-chevron { transform: rotate(180deg); }
	.footer__links {
		overflow: hidden;
		max-height: 0;
		transition: max-height .25s ease;
	}
	.footer__col.is-open .footer__links { max-height: 320px; padding-bottom: 16px; }
	.footer__links li:first-child { margin-top: 2px; }
}


#content .rank-math-breadcrumb{ width:100%; max-width: 850px; margin: 0 auto; font-size:17px; line-height: 150%; float:none !important; font-size:11px; font-style:italic; text-align:center; }
#content .rank-math-breadcrumb a { font-weight:bold; font-size:11px; color:#000; }
#content #primary { width:100%; max-width: 850px; margin: 0 auto; font-size:17px; line-height: 150%; float:none !important; }
#content #primary div.entry-categories { text-align: center;  }
#content #primary div.entry-excerpt { text-align: center; font-style: italic; font-size:14px;  }
#content #primary div.entry-categories a { text-transform: uppercase; color:#000; font-weight: bold; font-size:14px; letter-spacing: 1px; }

#content #primary h1.entry-title {text-align: center;font-size: 35px;font-weight: bold;line-height: 140%; font-family: 'Satoshi', sans-serif; }
#content #primary h2.entry-title {text-align: center;font-size: 28px;font-weight: bold;line-height: 140%; font-family: 'Satoshi', sans-serif; }
#content #primary div.entry-meta { text-align: center; font-size:15px; }
#content #primary div.entry-content img { border-radius: 6px; }

#content #primary div.entry-content h1, #content #primary div.entry-content h2, #content #primary div.entry-content h3, #content #primary div.entry-content h4, #content #primary div.entry-content h5, #content #primary div.entry-content h6 { font-family: 'Satoshi', sans-serif; }
#content #primary div.entry-content h2, #content #primary div.entry-content h3, #content #primary div.entry-content h4, #content #primary div.entry-content h5, #content #primary div.entry-content h6 { margin-bottom:15px; font-weight:bold; }

#content #primary a { color:#000; }

#content #primary h3#leave-a-reply {border-bottom: solid 1px #ccc;font-weight:bold;margin-bottom: 30px;}

#content #primary .form-section label { float:left; width:15%;  }
#content #primary .form-section input, #content #primary .form-section textarea { font-family: 'Inter', sans-serif; border:solid 1px #F0F0F0; padding:5px; width:85%; margin-right: 0;} 
#content #primary .form-section textarea { width:100% !important; line-height: 150%; }
#content #primary .form-section#form-section-actions { text-align: right; }
#content #primary .form-section button#submit {background:#000;color:#FFF;font-family: 'Inter', sans-serif;font-size:18px;padding: 10px 25px; border:none; }
#content #primary .form-section button#submit:hover { color:#A99CFF; }

#content #primary  div.navigation-links { border-top:solid 1px #CCC; padding:15px 0; }
#content #primary img.size-full { width: 100%; height:auto; }

div.banner-horizontal { text-align: center; padding:15px 0; }

* { max-width:100%; }

.hero-v2 {
	position: relative;
	width: 100%;
	max-width: none;
	overflow: hidden;
	background: #FFF;
	min-height: clamp(460px, 45vw, 640px);
	display: flex;
	align-items: center;
	/* extra top padding clears the transparent nav that floats over the hero */
	padding: calc(clamp(50px, 7vw, 90px) + 76px) 0 clamp(60px, 8vw, 100px);
}
.hero-v2__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-v2__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(255,255,255,.35) 0%, rgba(255,255,255,.72) 62%, rgba(255,255,255,.92) 100%);
}
@media (prefers-reduced-motion: reduce) {
	.hero-v2__video { display: none; }
}
.hero-v2__inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.hero-v2__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 150px;
	height: 150px;
	border-radius: 40px;
	background: linear-gradient(160deg, #35323F 0%, #0F0E17 100%);
	box-shadow: 0 14px 30px rgba(15,14,23,.28), inset 0 1px 0 rgba(255,255,255,.08);
	margin-bottom: 26px;
	flex-shrink: 0;
}
.hero-v2__icon svg {
	display: block;
	width: 84px;
	height: 84px;
	margin: auto;
	animation: hero-icon-blink 2.4s ease-in-out infinite;
}
@keyframes hero-icon-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: .75; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-v2__icon svg { animation: none; }
}
.hero-v2__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #4C3FD7;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 999px;
	padding: 7px 16px;
	margin-bottom: 22px;
}
.hero-v2__badge svg { width: 14px; height: 14px; }
.hero-v2__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: clamp(32px, 5vw, 46px);
	line-height: 114%;
	letter-spacing: -.02em;
	color: #0F0E17;
	margin: 0 0 18px;
}
.hero-v2__subtitle {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 160%;
	color: #5C5F72;
	max-width: 34em;
	margin: 0 0 32px;
}
.hero-v2__bullets {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}
.hero-v2__bullets li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #3A3D4D; }
.hero-v2__bullets strong { color: #0F0E17; }
.hero-v2__bullet-icon { display: flex; flex-shrink: 0; color: #666; }
.hero-v2__bullet-icon svg { width: 17px; height: 17px; }
.hero-v2__ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 30px;
}
.hero-v2__cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #0F0E17;
	color: #FFF;
	font-size: 15px;
	font-weight: 600;
	padding: 8px 24px 8px 8px;
	border-radius: 17px;
	text-decoration: none;
	transition: background .2s ease;
}
.hero-v2__cta-primary:hover { background: #2B2A38; color: #FFF; }
.hero-v2__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255,255,255,.14);
	border: solid 1px rgba(255,255,255,.28);
}
.hero-v2__cta-icon svg { width: 16px; height: 16px; }
.hero-v2__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #F1F0F5;
	color: #0F0E17;
	font-size: 15px;
	font-weight: 600;
	padding: 8px 24px 8px 8px;
	border-radius: 17px;
	text-decoration: none;
	transition: background .2s ease;
}
.hero-v2__cta-secondary:hover { background: #E6E4F7; }
.hero-v2__cta-play {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #0F0E17;
	color: #FFF;
}
.hero-v2__cta-play svg { width: 13px; height: 13px; margin-left: 2px; fill: currentColor; }
.hero-v2__trust { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #5C5F72; }
.hero-v2__avatars { display: flex; }
.hero-v2__avatars img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: solid 2px #FFF;
	margin-left: -10px;
	box-shadow: 0 1px 2px rgba(15,14,23,.15);
	object-fit: cover;
	display: block;
}
.hero-v2__avatars img:first-child { margin-left: 0; }
.hero-v2__stars { display: flex; gap: 2px; color: #F97316; }
.hero-v2__stars svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width:600px) {
	.hero-v2__title { font-size: 30px; }
	.hero-v2__ctas { flex-direction: column; align-items: stretch; }
	.hero-v2__cta-primary,
	.hero-v2__cta-secondary { justify-content: space-between; }
}

/* Secao: Trust Bar (logos + quick stats) */
.trustbar { background: #FFF; border-bottom: solid 1px #F1F0F5; }
.trustbar .container { padding-top: clamp(32px, 4vw, 44px); padding-bottom: clamp(28px, 3.5vw, 38px); }
.trustbar__eyebrow {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #A6A9B8;
	margin: 0 0 24px;
}
.trustbar__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 44px);
}
.trustbar__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: #0F0E17;
}
.trustbar__logo img { width: 26px; height: 26px; border-radius: 6px; object-fit: cover; }
.trustbar__more { font-size: 14px; color: #A6A9B8; }

.trustbar__stats { background: linear-gradient(180deg, #FFF 0%, #F9F8FC 100%); }
.trustbar__stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-top: clamp(24px, 3vw, 32px);
	padding-bottom: clamp(24px, 3vw, 32px);
}
.trustbar__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 0 20px;
	border-left: solid 1px rgba(15,14,23,.1);
}
.trustbar__stat:first-child { border-left: none; }
.trustbar__stat-pre { font-size: 13px; color: #75798C; }
.trustbar__stat-value { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 28px; color: #0F0E17; }
.trustbar__stat-value--sm { font-size: 19px; }
.trustbar__stat-label { font-size: 13px; line-height: 150%; color: #75798C; max-width: 20em; }

@media (max-width:900px) {
	.trustbar__stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
	.trustbar__stat:nth-child(3) { border-left: none; }
}
@media (max-width:560px) {
	.trustbar__stats-grid { grid-template-columns: 1fr; }
	.trustbar__stat { border-left: none !important; padding: 16px 0 0; border-top: solid 1px rgba(15,14,23,.1); }
	.trustbar__stat:first-child { border-top: none; padding-top: 0; }
}

/* Secao: Showcase (dashboard mockup) */
.showcase { background: #FFF; padding: clamp(60px, 7vw, 100px) 0 clamp(70px, 8vw, 110px); overflow: hidden; }
.showcase__intro { max-width: 620px; margin: 0 auto; text-align: center; }
.showcase__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 14px;
}
.showcase__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.showcase__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0; }

.showcase__frame {
	position: relative;
	max-width: 1020px;
	margin: clamp(40px, 5vw, 64px) auto 0;
	padding: clamp(30px, 4vw, 56px);
}
.showcase__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	z-index: 0;
	opacity: .55;
}
.showcase__glow--a { width: 320px; height: 320px; left: -60px; top: -40px; background: radial-gradient(circle, #FF9B6A 0%, transparent 70%); }
.showcase__glow--b { width: 360px; height: 360px; right: -80px; top: 10px; background: radial-gradient(circle, #A99CFF 0%, transparent 70%); }
.showcase__glow--c { width: 300px; height: 300px; right: 20%; bottom: -80px; background: radial-gradient(circle, #FF7AA8 0%, transparent 70%); }

.dash {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 190px 1fr;
	background: #FFF;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(15,14,23,.16), 0 4px 14px rgba(15,14,23,.06);
}
.dash__sidebar {
	background: #0F0E17;
	color: rgba(255,255,255,.6);
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
}
.dash__brand {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #FFF;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
	padding: 0 4px;
}
.dash__brand-mark { display: flex; color: #6D5EF5; }
.dash__brand-mark svg { width: 16px; height: 16px; }
.dash__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dash__nav a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 8px;
	border-radius: 7px;
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(255,255,255,.55);
}
.dash__nav a svg { width: 14px; height: 14px; flex-shrink: 0; }
.dash__nav a.is-active { background: rgba(255,255,255,.1); color: #FFF; }
.dash__collapse {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	color: rgba(255,255,255,.4);
	padding: 8px 8px 0;
	border-top: solid 1px rgba(255,255,255,.08);
	margin-top: 8px;
}
.dash__collapse svg { width: 12px; height: 12px; }

.dash__main { padding: 18px 22px 22px; min-width: 0; }
.dash__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash__topbar h3 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0; }
.dash__select {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #3A3A45;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 7px;
	padding: 5px 10px;
}
.dash__select svg { width: 12px; height: 12px; }
.dash__select--sm { font-size: 10.5px; padding: 4px 8px; }

.dash__stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; }
.dash__stat { background: #FAF9FF; border: solid 1px #EFEDFA; border-radius: 10px; padding: 12px; min-width: 0; }
.dash__stat-head {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 10px;
	font-weight: 600;
	color: #75798C;
	line-height: 1.3;
	margin: 0 0 8px;
}
.dash__stat-dot { margin-top: 3px; }
.dash__stat-dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.dash__stat-value { font-size: 14px; font-weight: 700; color: #22C55E; margin: 0 0 2px; }
.dash__stat-detail { font-size: 10.5px; color: #9A96AE; margin: 0; }
.dash__stat--score { grid-column: span 1; }
.dash__stat-score { font-size: 26px; font-weight: 700; color: #0F0E17; margin: 0 0 6px; line-height: 1; }
.dash__stat-score span { font-size: 12px; font-weight: 600; color: #9A96AE; }
.dash__stat-bar { height: 5px; border-radius: 999px; background: #E6E4F7; overflow: hidden; margin-bottom: 8px; }
.dash__stat-bar span { display: block; height: 100%; background: linear-gradient(90deg,#6D5EF5,#22C55E); border-radius: 999px; }
.dash__stat-caption { font-size: 10px; color: #75798C; margin: 0; }
.dash__stat-caption b { color: #22C55E; }

.dash__panels { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
.dash__chart-card, .dash__crawlers-card { background: #FAF9FF; border: solid 1px #EFEDFA; border-radius: 10px; padding: 14px; min-width: 0; }
.dash__chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash__chart-head h4, .dash__crawlers-card h4 { font-size: 12px; font-weight: 700; color: #0F0E17; margin: 0; }
.dash__chart { display: flex; gap: 8px; height: 130px; }
.dash__chart-axis { display: flex; flex-direction: column; justify-content: space-between; font-size: 9px; color: #9A96AE; text-align: right; padding: 2px 0; }
.dash__chart-svg { flex: 1; width: 100%; height: 100%; }
.dash__chart-labels { display: flex; justify-content: space-between; font-size: 9px; color: #9A96AE; margin-top: 6px; padding-left: 24px; }
.dash__crawler { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.dash__crawler:last-child { margin-bottom: 0; }
.dash__crawler-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	color: #FFF;
	font-size: 10px;
	font-weight: 700;
}
.dash__crawler-body { flex: 1; min-width: 0; }
.dash__crawler-row { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 600; color: #0F0E17; margin-bottom: 5px; }
.dash__crawler-row span:last-child { color: #75798C; font-weight: 600; }
.dash__crawler-bar { display: block; height: 5px; border-radius: 999px; background: #E6E4F7; overflow: hidden; }
.dash__crawler-bar span { display: block; height: 100%; border-radius: 999px; }

@media (max-width:900px) {
	.dash { grid-template-columns: 1fr; }
	.dash__sidebar { flex-direction: row; flex-wrap: wrap; align-items: center; }
	.dash__nav { flex-direction: row; flex-wrap: wrap; }
	.dash__collapse { display: none; }
	.dash__stats { grid-template-columns: repeat(2, 1fr); }
	.dash__panels { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
	.showcase__frame { padding: 16px; }
	.dash__stats { grid-template-columns: 1fr; }
}

/* Secao: Pipeline (before / cleaned / after) */
.pipeline { background: #FBFAFF; padding: clamp(60px, 7vw, 100px) 0 clamp(70px, 8vw, 110px); }
.pipeline__intro { max-width: 720px; margin: 0 auto; text-align: center; }
.pipeline__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 16px;
}
.pipeline__title { font-size: clamp(28px, 3.6vw, 44px); line-height: 128%; font-weight: 800; color: #0F0E17; margin: 0 0 18px; letter-spacing: -.01em; }
.pipeline__highlight { background: linear-gradient(90deg,#FF7A45,#A855F7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pipeline__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0 auto; max-width: 640px; }

.pipeline__row { display: flex; align-items: center; gap: 18px; margin: clamp(40px, 5vw, 64px) 0; }
.pipeline__card { flex: 1; min-width: 0; background: #FFF; border: solid 1px #ECEAF7; border-radius: 16px; padding: 20px; box-shadow: 0 20px 40px -28px rgba(20,10,60,.16); }
.pipeline__arrow { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: #FFF; border: solid 1px #ECEAF7; display: flex; align-items: center; justify-content: center; color: #9A96AE; }
.pipeline__arrow svg { width: 16px; height: 16px; }

.pipeline__card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pipeline__step { width: 24px; height: 24px; flex-shrink: 0; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; background: #F1F0F7; color: #6B6E80; }
.pipeline__card-head h3 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0; }

.pipeline__mock { background: #FAF9FF; border: solid 1px #EFEDFA; border-radius: 12px; padding: 14px; min-height: 260px; }
.pipeline__mock-dots { display: flex; gap: 5px; margin-bottom: 12px; }
.pipeline__mock-dots span { width: 7px; height: 7px; border-radius: 50%; background: #D9D6EA; }
.pipeline__mock-nav { background: #4B4D5C; color: #FFF; font-size: 11px; font-weight: 700; text-align: center; border-radius: 7px; padding: 9px; margin-bottom: 10px; }
.pipeline__mock-body { display: flex; gap: 8px; margin-bottom: 10px; }
.pipeline__mock-main { flex: 1; min-width: 0; background: #FFF; border: solid 1px #EFEDFA; border-radius: 8px; padding: 14px 10px; text-align: center; }
.pipeline__mock-main strong { display: block; font-size: 12px; color: #0F0E17; margin-bottom: 5px; }
.pipeline__mock-main span { font-size: 10px; color: #9A96AE; line-height: 140%; }
.pipeline__mock-side { width: 62px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.pipeline__mock-side span { background: #FFF; border: solid 1px #EFEDFA; border-radius: 8px; padding: 8px 6px; font-size: 9px; color: #9A96AE; text-align: center; }
.pipeline__mock-ad { background: #EEEDF5; color: #75798C; font-size: 10px; font-weight: 700; text-align: center; border-radius: 7px; padding: 7px; margin-bottom: 6px; }
.pipeline__mock-cookie { background: #EEEDF5; color: #75798C; font-size: 10px; font-weight: 700; text-align: center; border-radius: 7px; padding: 7px; margin-bottom: 10px; }
.pipeline__mock-tags { display: flex; gap: 6px; }
.pipeline__mock-tags span { flex: 1; background: #FFF; border: solid 1px #EFEDFA; border-radius: 6px; padding: 6px 0; font-size: 9px; color: #9A96AE; text-align: center; }

.pipeline__mock--engine { display: flex; flex-direction: column; justify-content: center; gap: 10px; position: relative; }
.pipeline__engine-line {
	height: 8px; border-radius: 999px;
	background: linear-gradient(90deg,#EFEDFA,#F5F3FF,#EFEDFA);
	background-size: 220% 100%;
	animation: pipeline-line-shimmer 3.2s linear infinite;
}
.pipeline__engine-line:nth-child(1) { width: 88%; }
.pipeline__engine-line:nth-child(2) { width: 68%; animation-delay: -.6s; }
.pipeline__engine-line:nth-child(3) { width: 78%; animation-delay: -1.2s; }
.pipeline__engine-line:nth-child(7) { width: 82%; margin-top: 4px; animation-delay: -1.8s; }
.pipeline__engine-line:nth-child(8) { width: 60%; animation-delay: -2.4s; }
@keyframes pipeline-line-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}
.pipeline__engine { position: relative; height: 84px; display: flex; align-items: center; justify-content: center; margin: 4px 0; }
.pipeline__engine-glow {
	position: absolute; inset: 0; margin: auto; width: 100px; height: 100px; border-radius: 50%;
	background: radial-gradient(circle, rgba(109,94,245,.16), transparent 70%);
	animation: pipeline-glow-pulse 2.4s ease-in-out infinite;
}
@keyframes pipeline-glow-pulse {
	0%, 100% { transform: scale(1); opacity: .7; }
	50% { transform: scale(1.18); opacity: 1; }
}
.pipeline__engine-mark {
	position: relative; width: 60px; height: 60px; border-radius: 16px; background: #0F0E17; color: #FFF;
	display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 26px -10px rgba(15,14,23,.4);
	animation: pipeline-mark-pulse 2.4s ease-in-out infinite;
}
@keyframes pipeline-mark-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}
.pipeline__engine-mark svg { width: 26px; height: 26px; }
.pipeline__engine-node { position: absolute; top: 50%; width: 9px; height: 9px; border-radius: 50%; animation-duration: 2.2s; animation-iteration-count: infinite; animation-timing-function: ease-in; }
.pipeline__engine-node--1 { left: 4%; margin-top: -22px; background: #F97316; animation-name: pipeline-node-flow-in; animation-delay: 0s; }
.pipeline__engine-node--2 { left: 4%; margin-top: 4px; background: #6D5EF5; animation-name: pipeline-node-flow-in; animation-delay: .5s; }
.pipeline__engine-node--3 { left: 16%; margin-top: 22px; background: #A855F7; animation-name: pipeline-node-flow-in; animation-delay: 1s; }
.pipeline__engine-node--4 { left: 4%; margin-top: 28px; background: #16A34A; animation-name: pipeline-node-flow-in; animation-delay: 1.5s; }
.pipeline__engine-node--5 { right: 4%; margin-top: -22px; background: #F43F5E; animation-name: pipeline-node-flow-out; animation-delay: .25s; }
.pipeline__engine-node--6 { right: 4%; margin-top: 4px; background: #6D5EF5; animation-name: pipeline-node-flow-out; animation-delay: .75s; }
.pipeline__engine-node--7 { right: 4%; margin-top: 28px; background: #16A34A; animation-name: pipeline-node-flow-out; animation-delay: 1.25s; }
@keyframes pipeline-node-flow-in {
	0% { transform: translateX(0) scale(.6); opacity: 0; }
	20% { opacity: 1; transform: translateX(0) scale(1); }
	85% { opacity: 1; }
	100% { transform: translateX(38px) scale(.6); opacity: 0; }
}
@keyframes pipeline-node-flow-out {
	0% { transform: translateX(-38px) scale(.6); opacity: 0; }
	20% { opacity: 0; }
	40% { opacity: 1; transform: translateX(0) scale(1); }
	85% { opacity: 1; }
	100% { transform: translateX(0) scale(.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.pipeline__engine-line,
	.pipeline__engine-glow,
	.pipeline__engine-mark,
	.pipeline__engine-node { animation: none; }
}

.pipeline__mock--code { position: relative; }
.pipeline__code { margin: 0; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; font-size: 10.5px; line-height: 165%; color: #4B4E60; white-space: pre-wrap; }
.pipeline__code .tok-h { color: #16A34A; font-weight: 700; }
.pipeline__code-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; background: #DCFCE7; color: #16A34A; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 6px 12px; }
.pipeline__code-badge svg { width: 14px; height: 14px; }

.pipeline__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ECEAF7; border: solid 1px #ECEAF7; border-radius: 16px; overflow: hidden; }
.pipeline__feature { background: #FFF; padding: 24px 22px; }
.pipeline__feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; margin-bottom: 14px; }
.pipeline__feature-icon svg { width: 20px; height: 20px; }
.pipeline__feature-icon--purple { background: #EDE9FE; color: #6D5EF5; }
.pipeline__feature-icon--orange { background: #FFE9DA; color: #F97316; }
.pipeline__feature-icon--blue { background: #DCEBFE; color: #2563EB; }
.pipeline__feature-icon--green { background: #DCFCE7; color: #16A34A; }
.pipeline__feature h3 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 6px; }
.pipeline__feature p { font-size: 13px; line-height: 150%; color: #75798C; margin: 0; }

@media (max-width:900px) {
	.pipeline__row { flex-direction: column; }
	.pipeline__arrow { transform: rotate(90deg); }
	.pipeline__card { width: 100%; }
	.pipeline__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:600px) {
	.pipeline__features { grid-template-columns: 1fr; }
}

/* Secao: Real Results */
.results { background: #FFF; padding: clamp(60px, 7vw, 100px) 0; }
.results__intro { width: 100%; margin: 0 0 clamp(32px, 4vw, 48px); }
.results__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 14px;
}
.results__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.results__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0; }

.results__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 clamp(40px, 5vw, 60px); }
.results__stat {
	display: flex;
	flex-direction: column;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	padding: 20px 22px;
}
.results__stat-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #9A9DAC;
	margin: 0 0 14px;
}
.results__stat-value { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 32px; color: #0F0E17; line-height: 1; margin: 0 0 12px; }
.results__stat-value small { font-size: 18px; font-weight: 700; color: #75798C; margin-left: 2px; }
.results__stat-desc { font-size: 14px; color: #5C5F72; line-height: 150%; margin: 0; }
.results__stat-divider { border: none; border-top: solid 1px #ECEAF7; margin: 20px 0 16px auto; width: 100%; }
.results__stat-trend {font-size: 13px;font-weight: 600;color: #16A34A;margin: 0;}
.results__stat-trend strong { font-weight: 700; }

@media (max-width:900px) {
	.results__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:600px) {
	.results__stats { grid-template-columns: 1fr; }
}

.results__visual-wrap { display: flex; justify-content: center; }
.results__visual { position: relative; display: grid; grid-template-columns: 60% auto 1fr; align-items: center; gap: 0; max-width: 980px; width: 100%; }
.results__browser {
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	box-shadow: 0 20px 44px rgba(15,14,23,.08);
	overflow: hidden;
}
.results__browser-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: solid 1px #F1F0F5; }
.results__browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #E4E2EE; }
.results__browser-dot:nth-child(1) { background: #F87171; }
.results__browser-dot:nth-child(2) { background: #FBBF24; }
.results__browser-dot:nth-child(3) { background: #4ADE80; }
.results__browser-url {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: 10px;
	background: #F5F5FA;
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	color: #75798C;
}
.results__browser-url svg { width: 12px; height: 12px; }
.results__browser-body { padding: 18px; display: grid; gap: 10px; }
.results__browser-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 84px;
	background: #F5F5FA;
	border-radius: 10px;
	color: #C7C5D9;
	margin-bottom: 4px;
}
.results__browser-thumb svg { width: 32px; height: 32px; }
.results__browser-line { display: block; height: 8px; border-radius: 4px; background: #F1F0F5; }
.results__browser-line--w1 { width: 90%; }
.results__browser-line--w2 { width: 100%; }
.results__browser-line--w3 { width: 65%; }
.results__connector { width: 60px; height: 100%; min-height: 280px; overflow: visible; }
.results__targets { display: grid; gap: 12px; }
.results__target {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 12px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #0F0E17;
	box-shadow: 0 8px 20px rgba(15,14,23,.05);
}
.results__target-icon {
	display: block;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	object-fit: cover;
}

@media (max-width:900px) {
	.results__visual { grid-template-columns: 1fr; gap: 20px; }
	.results__connector { display: none; }
}

/* Secao: Works With Your Stack */
.stack { background: #FFF; padding: clamp(60px, 7vw, 100px) 0; }
.stack__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.stack__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 14px;
}
.stack__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.stack__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0; }

.stack__items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stack__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	padding: 18px 16px;
}
.stack__item-icon {display: flex;align-items: center;justify-content: center;width: 100%;height: 80px;margin-bottom: 10px;}
.stack__item-icon img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.stack__item strong { font-size: 14px; color: #0F0E17; }
.stack__item span { font-size: 12px; color: #75798C; }

@media (max-width:900px) {
	.stack__grid { grid-template-columns: 1fr; }
	.stack__items { grid-template-columns: repeat(2, 1fr); }
}

/* Secao: Pricing Toggle (Free vs Pro) */
.pricing-toggle { background: #F9F8FC; padding: clamp(60px, 7vw, 100px) 0; }
.pricing-toggle__intro { max-width: 620px; margin: 0 auto; text-align: center; }
.pricing-toggle__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 14px;
}
.pricing-toggle__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.pricing-toggle__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0; }

.pricing-toggle__switch {
	display: flex;
	justify-content: center;
	gap: 4px;
	max-width: 240px;
	margin: clamp(32px, 4vw, 44px) auto 0;
	padding: 4px;
	background: #ECEAF7;
	border-radius: 999px;
}
.pricing-toggle__option {
	flex: 1;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #5C5F72;
	padding: 9px 0;
	border-radius: 999px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.pricing-toggle__option.is-active { background: #FFF; color: #0F0E17; box-shadow: 0 1px 3px rgba(15,14,23,.12); }

.pricing-toggle__panels { max-width: 460px; margin: clamp(28px, 3vw, 36px) auto 0; }
.pricing-toggle__panel { display: none; }
.pricing-toggle__panel.is-active { display: block; }
.pricing-toggle__price { font-size: 15px; color: #5C5F72; margin: 0 0 18px; }
.pricing-toggle__price strong { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 26px; color: #0F0E17; margin: 0 2px; }
.pricing-toggle__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pricing-toggle__list li {
	position: relative;
	font-size: 15px;
	color: #3A3D4D;
	padding-left: 30px;
}
.pricing-toggle__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #EDE9FE;
}
.pricing-toggle__list li::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 8px;
	width: 8px;
	height: 4px;
	border-left: solid 2px #6D5EF5;
	border-bottom: solid 2px #6D5EF5;
	transform: rotate(-45deg);
}

.pricing-toggle__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: clamp(32px, 4vw, 44px);
}
.pricing-toggle__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #0F0E17;
	text-decoration: none;
}
.pricing-toggle__link svg { width: 16px; height: 16px; }
.pricing-toggle__link:hover { color: #6D5EF5; }

/* Esconde visualmente mantendo o texto para leitores de tela */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Botao dourado preenchido */
.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #6D5EF5;
	color: #FFF;
	text-decoration: none;
	padding: 12px 22px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	transition: background .2s ease;
}
.btn-gold:hover { background: #4C3FD7; color: #FFF; }
.btn-gold svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Botao dourado vazado */
.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: solid 1px #6D5EF5;
	color: #4C3FD7;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	transition: background .2s ease, color .2s ease;
}
.btn-outline:hover { background: #6D5EF5; color: #FFF; }
.btn-outline svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Titulo de secao com o traco dourado curto embaixo */
.section-title {
	position: relative;
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 125%;
	color: #1A1A1A;
	margin: 0 0 clamp(18px, 2vw, 26px);
	padding-bottom: 12px;
}
.section-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	border-bottom: solid 2px #6D5EF5;
}

/* Secao: Em destaque */
.featured-posts { padding: 30px 0; }
.featured-posts__grid { display: grid; grid-template-columns: 47fr 53fr; gap: 14px; }
.featured-posts__main { min-width: 0; }
.featured-posts__main > a {
	position: relative;
	display: block;
	height: 100%;
	min-height: 320px;
	overflow: hidden;
	border-radius: 4px;
	text-decoration: none;
}
.featured-posts__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.featured-posts__main > a:hover img { transform: scale(1.03); }
.featured-posts__main-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12,10,8,0) 38%, rgba(12,10,8,.55) 66%, rgba(12,10,8,.88) 100%);
}
.featured-posts__main-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: clamp(18px, 2vw, 28px);
	color: #FFF;
}
.featured-posts__main-title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(19px, 1.9vw, 27px);
	line-height: 130%;
	color: #FFF;
	margin: 0 0 12px;
	/* titulos reais variam muito; limitar linhas evita estourar o card */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-posts__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #FFF;
}
.featured-posts__more svg { width: 15px; height: 15px; }
.featured-posts__main > a:hover .featured-posts__more { color: #A99CFF; }

.featured-posts__list { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 14px; min-width: 0; height: 100%; }
.featured-posts__item { min-width: 0; }
.featured-posts__item > a {
	display: grid;
	grid-template-columns: 43% 1fr;
	gap: clamp(12px, 1.4vw, 20px);
	align-items: center;
	height: 100%;
	text-decoration: none;
}
/* A proporcao fixa da miniatura e o que define a altura das linhas e, por
   consequencia, a do card principal. Sem ela a secao mudaria de altura
   conforme a proporcao da imagem enviada em cada post. */
.featured-posts__thumb { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 3px; }
.featured-posts__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-posts__body { min-width: 0; }
.featured-posts__cat {
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin: 0 0 7px;
}
.featured-posts__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.2vw, 17px);
	line-height: 132%;
	color: #1A1A1A;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-posts__item > a:hover .featured-posts__title { color: #4C3FD7; }
.featured-posts__date { font-size: 11px; color: #75798C; margin: 0; }
.featured-posts__date abbr { text-decoration: none; }

/* Secao: Inspiracoes */
.inspirations { padding: 30px 0; }
.inspirations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.inspirations__card {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 4px;
	background: #E8E2D8;
	text-decoration: none;
}
.inspirations__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.inspirations__card:hover img { transform: scale(1.04); }
.inspirations__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12,10,8,0) 45%, rgba(12,10,8,.5) 72%, rgba(12,10,8,.82) 100%);
}
.inspirations__label {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: clamp(12px, 1.3vw, 18px);
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(14px, 1.25vw, 18px);
	line-height: 130%;
	color: #FFF;
}

@media (max-width:768px) {
	.inspirations__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* Secao: Newsletter
   bg-footer.webp traz o creme a esquerda e as flores a direita. Ancorando a
   imagem so na faixa direita, as flores ficam no canto (como no layout) e o
   creme dela emenda com o fundo da secao, que usa a mesma cor. Esticada na
   largura inteira, as flores avancavam ate o meio. */
/* Secao: Footer CTA banner */
.footer-cta { background: #FFF; padding: clamp(28px, 3.5vw, 44px) 0 0; }
.footer-cta__box {
	display: flex;
	align-items: center;
	gap: 22px;
	background: #F9F9F9;
	border-radius: 20px;
	padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3vw, 36px);
}
.footer-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	background: #FFF;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(15,14,23,.08);
}
.footer-cta__icon img { width: 34px; height: 34px; }
.footer-cta__copy { flex: 1; min-width: 0; }
.footer-cta__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #666;
	margin: 0;
}
.footer-cta__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(19px, 2vw, 26px); line-height: 128%; color: #0F0E17; margin: 0; }
.footer-cta__actions { display: flex; align-items: flex-start; gap: 14px; flex-shrink: 0; }
.footer-cta__primary-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-cta__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(160deg, #35323F 0%, #0F0E17 100%);
	color: #FFF;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 12px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease;
}
.footer-cta__btn-primary:hover { color: #FFF; }
.footer-cta__btn-primary img { width: 18px; height: 18px; border-radius: 4px; }
.footer-cta__btn-primary svg { width: 16px; height: 16px; }
.footer-cta__note { font-size: 12px; color: #9A9DAC; margin: 0; }
.footer-cta__btn-secondary {
	display: inline-flex;
	align-items: center;
	background: #FFF;
	border: solid 1px #E4E2EE;
	color: #0F0E17;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 22px;
	border-radius: 12px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease;
}
.footer-cta__btn-secondary:hover { background: #F5F5FA; }

@media (max-width:900px) {
	.footer-cta__box { flex-wrap: wrap; }
	.footer-cta__actions { width: 100%; justify-content: space-between; }
}
@media (max-width:600px) {
	.footer-cta__box { flex-direction: column; align-items: flex-start; }
	.footer-cta__actions { flex-direction: column; align-items: stretch; }
	.footer-cta__primary-wrap { align-items: flex-start; }
	.footer-cta__btn-primary, .footer-cta__btn-secondary { justify-content: center; }
}

/* Secao: Mais lidos */
.popular { background: #FFF; padding: 30px 0; }
.popular__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 26px); }
.popular__item { min-width: 0; }
.popular__item > a {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 3px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.popular__item > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.popular__thumb { display: block; aspect-ratio: 9 / 4; overflow: hidden; }
.popular__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.popular__body { display: block; padding: clamp(16px, 1.6vw, 24px); }
.popular__cat {
	display: block;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin-bottom: 9px;
}
.popular__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(15px, 1.35vw, 20px);
	line-height: 132%;
	color: #1A1A1A;
	margin-bottom: 10px;
}
.popular__date { display: block; font-size: 12px; color: #75798C; margin-bottom: 12px; }
.popular__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 155%;
	color: #5C5F72;
}

/* Secao: Mais artigos */
.recent-posts { background: #F5F5FC; padding: 30px 0; }
.recent-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 26px); }
.recent-posts__item { min-width: 0; }
.recent-posts__item > a {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 14px;
	align-items: center;
	height: 100%;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 3px;
	overflow: hidden;
	padding: 10px;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.recent-posts__item > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.recent-posts__thumb { display: block; aspect-ratio: 1 / 1; border-radius: 3px; overflow: hidden; }
.recent-posts__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recent-posts__body { min-width: 0; }
.recent-posts__cat {
	display: block;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin-bottom: 6px;
}
.recent-posts__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(13px, 1.1vw, 16px);
	line-height: 132%;
	color: #1A1A1A;
	margin-bottom: 6px;
}
.recent-posts__date { display: block; font-size: 11px; color: #75798C; }

@media (max-width:991px) {
	.recent-posts__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Secao: Guias */
.guides { background: #FFF; padding: 30px 0; }
.guides__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: clamp(10px, 1.2vw, 18px);
}
.guides__item { min-width: 0; }
.guides__item > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 1.4vw, 20px);
	height: 100%;
	padding: clamp(18px, 2vw, 30px) 10px;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 4px;
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.guides__item > a:hover { border-color: #A99CFF; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.guides__icon { display: flex; align-items: center; justify-content: center; color: #6D5EF5; }
.guides__icon svg { width: clamp(34px, 3.2vw, 46px); height: clamp(34px, 3.2vw, 46px); }
.guides__label {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(12px, 1.1vw, 16px);
	line-height: 138%;
	color: #1A1A1A;
	text-align: center;
}

@media (max-width:991px) {
	.guides__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width:768px) {
	.popular__grid { grid-template-columns: 1fr; gap: 14px; }
	.guides__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Secao: Ferramentas */
.tools { background: #F5F5FC; padding: 30px 0; }
.tools__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 128%;
	text-align: center;
	color: #1A1A1A;
	margin: 0 0 clamp(20px, 2.4vw, 34px);
}
.tools__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.tools__item { min-width: 0; }
.tools__item > a {
	/* o texto de apoio alinha com o titulo, nao com o icone */
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"icon name"
		".    desc";
	column-gap: 16px;
	row-gap: 10px;
	align-items: center;
	height: 100%;
	padding: clamp(18px, 1.8vw, 26px);
	background: #FFF;
	border-radius: 8px;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.tools__item > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.tools__icon { grid-area: icon; display: flex; align-items: center; justify-content: center; color: #6D5EF5; }
.tools__icon svg { width: clamp(32px, 2.9vw, 42px); height: clamp(32px, 2.9vw, 42px); }
.tools__name {
	grid-area: name;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(15px, 1.3vw, 19px);
	line-height: 128%;
	color: #1A1A1A;
}
.tools__desc {
	grid-area: desc;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 155%;
	color: #5C5F72;
}
.tools__actions { display: flex; justify-content: center; margin-top: clamp(20px, 2.4vw, 34px); }

@media (max-width:991px) {
	.tools__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:768px) {
	.tools__grid { grid-template-columns: 1fr; gap: 10px; }
	.tools__item > a {
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"icon name chevron"
			".    desc desc";
		column-gap: 14px;
		padding: 16px;
	}
	.tools__item > a::after {
		content: "";
		grid-area: chevron;
		align-self: center;
		width: 7px;
		height: 7px;
		border-top: solid 1.5px #B9AFA0;
		border-right: solid 1.5px #B9AFA0;
		transform: rotate(45deg);
	}
	.tools__icon svg { width: 30px; height: 30px; }
	.tools .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width:768px) {
	.featured-posts__grid { grid-template-columns: 1fr; gap: 18px; }
	.featured-posts__main > a { min-height: 260px; }
	.featured-posts__list { grid-template-rows: none; gap: 16px; }
	.featured-posts__item > a { grid-template-columns: 36% 1fr; align-items: start; }
	.featured-posts__thumb { aspect-ratio: 4 / 3; height: auto; }
}

@media (max-width:600px) {
    .hidden-xs { display:none; }
}

/* ==========================================================================
   Post
   ========================================================================== */

/* o tema centraliza o breadcrumb e limita a 850px; no post ele acompanha a
   coluna do conteudo, alinhado a esquerda */
.single #content .rank-math-breadcrumb {
	max-width: none;
	margin: 18px 0 6px;
	text-align: left;
	font-style: normal;
	font-size: 12px;
	color: #75798C;
}
.single #content .rank-math-breadcrumb a { font-weight: 500; font-size: 12px; color: #75798C; }
.single #content .rank-math-breadcrumb a:hover { color: #4C3FD7; }

.post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(24px, 3.4vw, 56px);
	align-items: start;
	padding-bottom: 40px;
}

/* --- cabecalho --- */
.post-head { padding: 6px 0 22px; }
.post-head__cat {
	display: inline-block;
	background: #F4EFE4;
	color: #4C3FD7;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 3px;
	text-decoration: none;
	margin-bottom: 16px;
}
.post-head__cat:hover { background: #EADFC9; color: #4C3FD7; }
.post-head__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 122%;
	color: #1A1A1A;
	margin: 0 0 16px;
}
.post-head__excerpt {
	font-size: clamp(14px, 1.2vw, 17px);
	line-height: 160%;
	color: #5C554B;
	margin: 0 0 24px;
	max-width: 46em;
}
.post-head__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 28px;
	padding-top: 4px;
}
.post-author { display: flex; align-items: center; gap: 12px; }
.post-author__avatar { width: 38px; height: 38px; border-radius: 50%; display: block; }
.post-author__info { display: flex; flex-direction: column; gap: 2px; }
.post-author__name { font-size: 13px; font-weight: 600; color: #1A1A1A; text-decoration: none; }
.post-author__name:hover { color: #4C3FD7; }
.post-author__role { font-size: 12px; color: #75798C; }
.post-head__facts { font-size: 12px; color: #75798C; margin: 0; }
.post-head__dot { margin: 0 7px; }

.post-share { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.post-share__label { font-size: 12px; color: #75798C; margin-right: 2px; }
.post-share__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
	background: #F4EFE4;
	color: #4C3FD7;
	padding: 0;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.post-share__btn:hover { background: #6D5EF5; color: #FFF; }
.post-share__btn svg { width: 15px; height: 15px; }
/* confirmacao do "copiar link", que nao tem retorno visual proprio */
.post-share__copy { position: relative; }
.post-share__copy.is-copied { background: #6D5EF5; color: #FFF; }
.post-share__copy.is-copied::after {
	content: "Link copiado";
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	white-space: nowrap;
	background: #1A1A1A;
	color: #FFF;
	font-size: 11px;
	padding: 5px 9px;
	border-radius: 3px;
}

.post-cover { margin: 0 0 26px; border-radius: 4px; overflow: hidden; }
.post-cover img { width: 100%; height: auto; display: block; }

/* --- conteudo --- */
.post-main .entry-content { font-size: clamp(14px, 1.15vw, 16px); line-height: 175%; color: #3A352E; }
.post-main .entry-content p { margin: 0 0 18px; }
.post-main .entry-content h2 {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(21px, 2.1vw, 29px);
	line-height: 130%;
	color: #1A1A1A;
	margin: 34px 0 14px;
}
.post-main .entry-content h3 {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 135%;
	color: #1A1A1A;
	margin: 26px 0 12px;
}
.post-main .entry-content a { color: #4C3FD7; text-decoration: underline; }
.post-main .entry-content img { max-width: 100%; height: auto; border-radius: 4px; }
.post-main .entry-content ul,
.post-main .entry-content ol { margin: 0 0 20px; padding-left: 20px; }
.post-main .entry-content li { margin-bottom: 8px; }
.post-main .entry-content blockquote {
	margin: 24px 0;
	padding: 4px 0 4px 20px;
	border-left: solid 3px #6D5EF5;
	font-family: 'Satoshi', sans-serif;
	font-style: italic;
	color: #2E2A45;
}
.post-main .entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
	font-size: 14px;
}
.post-main .entry-content th,
.post-main .entry-content td {
	border: solid 1px #E6E4F7;
	padding: 12px 14px;
	text-align: left;
}
.post-main .entry-content th { background: #F5F5FC; font-weight: 600; color: #1A1A1A; }

.post-tags { font-size: 12px; color: #75798C; margin: 26px 0 0; }
.post-tags a { color: #4C3FD7; }

/* --- caixa do autor --- */
.post-bio {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6px 18px;
	align-items: center;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: clamp(18px, 2vw, 26px);
	margin-top: 34px;
}
.post-bio__avatar { width: 54px; height: 54px; border-radius: 50%; display: block; grid-row: span 2; }
.post-bio__label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #75798C; margin: 0 0 4px; }
.post-bio__name { font-family: 'Satoshi', sans-serif; font-size: 17px; color: #1A1A1A; margin: 0; }
.post-bio__role { font-size: 12px; color: #75798C; margin: 2px 0 0; }
.post-bio__text { grid-column: 2; font-size: 13px; line-height: 165%; color: #5C554B; margin: 10px 0 0; }

/* --- leia tambem --- */
.related { margin-top: 40px; margin-bottom: 12px; }
.related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.related__all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: #4C3FD7;
	text-decoration: none;
	white-space: nowrap;
}
.related__all svg { width: 14px; height: 14px; }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related__item { min-width: 0; }
.related__item > a {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.related__item > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.related__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.related__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related__body { display: block; padding: 14px 16px 16px; }
.related__cat {
	display: block;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin-bottom: 7px;
}
.related__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	line-height: 133%;
	color: #1A1A1A;
	margin-bottom: 9px;
}
.related__item > a:hover .related__title { color: #4C3FD7; }
.related__meta { display: block; font-size: 11px; color: #75798C; }

/* --- coluna lateral --- */
.post-aside { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 20px; }
.aside-box {
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: 20px;
}
.aside-box__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: #1A1A1A;
	margin: 0 0 16px;
}
.aside-tools__list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.aside-tools__list a {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 12px 14px;
	text-decoration: none;
	transition: border-color .2s ease;
}
.aside-tools__list a:hover { border-color: #A99CFF; }
.aside-tools__list a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: solid 1.5px #B9AFA0;
	border-right: solid 1.5px #B9AFA0;
	transform: rotate(45deg);
}
.aside-tools__icon { display: flex; color: #6D5EF5; }
.aside-tools__icon svg { width: 24px; height: 24px; }
.aside-tools__name { font-size: 13px; font-weight: 600; color: #1A1A1A; line-height: 1.3; }
.aside-tools__all { width: 100%; justify-content: center; padding: 11px 18px; }

.aside-feature__thumb {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 14px;
}
.aside-feature__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aside-feature__name {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: #1A1A1A;
	margin: 0 0 8px;
}
.aside-feature__desc { font-size: 12px; line-height: 160%; color: #5C5F72; margin: 0 0 14px; }
.aside-feature .tools-page__go { font-size: 12px; }

.aside-popular__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.aside-popular__list a {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 12px;
	align-items: center;
	text-decoration: none;
}
.aside-popular__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 3px; }
.aside-popular__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aside-popular__body { display: block; min-width: 0; }
.aside-popular__cat {
	display: block;
	font-size: 9px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin-bottom: 5px;
}
.aside-popular__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	line-height: 132%;
	color: #1A1A1A;
	margin-bottom: 5px;
}
.aside-popular__list a:hover .aside-popular__title { color: #4C3FD7; }
.aside-popular__date { display: block; font-size: 11px; color: #75798C; }

@media (max-width:991px) {
	.post-layout { grid-template-columns: 1fr; }
	.post-aside { position: static; }
	.related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:768px) {
	.post-head__meta { gap: 14px 20px; }
	.post-share { margin-left: 0; width: 100%; }
	.related__grid { grid-template-columns: 1fr; }
	.post-bio { grid-template-columns: 1fr; text-align: left; }
	.post-bio__avatar { grid-row: auto; }
	.post-bio__text { grid-column: 1; }
}

/* --- blocos dos shortcodes de conteudo --- */
.post-main .entry-content .tc-checklist {
	list-style: none;
	margin: 0 0 24px;
	padding: clamp(18px, 2vw, 26px);
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
}
.post-main .entry-content .tc-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 155%;
	color: #3A352E;
}
.post-main .entry-content .tc-checklist li:last-child { margin-bottom: 0; }
.tc-checklist__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 50%;
	background: #6D5EF5;
	color: #FFF;
}
.tc-checklist__mark svg { width: 13px; height: 13px; }

.post-main .entry-content .tc-tips { list-style: none; margin: 0 0 24px; padding: 0; }
.post-main .entry-content .tc-tips li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-bottom: 11px;
	font-size: 14px;
	line-height: 155%;
	color: #3A352E;
}
.tc-tips__mark { display: flex; flex-shrink: 0; color: #6D5EF5; margin-top: 2px; }
.tc-tips__mark svg { width: 15px; height: 15px; }

.post-main .entry-content .tc-info {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0 0 24px;
	padding: 15px 18px;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	font-size: 13px;
	line-height: 155%;
	color: #5C554B;
}
.tc-info__icon { display: flex; flex-shrink: 0; color: #6D5EF5; margin-top: 1px; }
.tc-info__icon svg { width: 17px; height: 17px; }

.post-main .entry-content .tc-cta {
	display: grid;
	grid-template-columns: 34% 1fr;
	align-items: stretch;
	gap: 0;
	margin: 30px 0;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	overflow: hidden;
}
.tc-cta__media { overflow: hidden; }
.tc-cta__media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
.tc-cta__body { padding: clamp(18px, 2vw, 28px); }
.tc-cta__badge {
	display: inline-block;
	background: #F0E7D5;
	color: #4C3FD7;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 3px;
	margin-bottom: 12px;
}
.post-main .entry-content .tc-cta__title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(17px, 1.7vw, 23px);
	line-height: 130%;
	color: #1A1A1A;
	margin: 0 0 8px;
}
.post-main .entry-content .tc-cta__text { font-size: 13px; line-height: 155%; color: #5C554B; margin: 0 0 18px; }
.post-main .entry-content .tc-cta .btn-gold { text-decoration: none; }

@media (max-width:600px) {
	.post-main .entry-content .tc-cta { grid-template-columns: 1fr; }
	.tc-cta__media { height: 170px; }
}

/* --- indice do post --- */
.aside-toc__list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 2px;
	/* fio vertical corrido a esquerda, ligando os topicos */
	border-left: solid 1px #E7DFCF;
}
.aside-toc__list li { margin: 0; }
.aside-toc__list a {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: baseline;
	gap: 6px;
	padding: 11px 4px 11px 14px;
	text-decoration: none;
	transition: color .2s ease;
}
.aside-toc__list li + li a { border-top: solid 1px #E6E4F7; }
.aside-toc__num {
	font-family: 'Satoshi', sans-serif;
	font-size: 13px;
	color: #B9AFA0;
	transition: color .2s ease;
}
.aside-toc__text {
	font-size: 13px;
	line-height: 145%;
	color: #2E2A45;
	transition: color .2s ease;
}
.aside-toc__list a:hover .aside-toc__num,
.aside-toc__list a:hover .aside-toc__text { color: #4C3FD7; }
.aside-toc__list a.is-active .aside-toc__num,
.aside-toc__list a.is-active .aside-toc__text { color: #6D5EF5; font-weight: 600; }

/* o link da ancora nao pode encostar no topo da janela */
.post-main .entry-content h2 { scroll-margin-top: 24px; }

/* --- conteudo legado: markup do editor classico --- */
.post-main .entry-content strong { font-weight: 600; color: #1A1A1A; }
.post-main .entry-content em { font-style: italic; }
.post-main .entry-content h4,
.post-main .entry-content h5,
.post-main .entry-content h6 {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 138%;
	color: #1A1A1A;
	margin: 22px 0 10px;
}
/* imagens vem soltas dentro de <p>, sem classe nem dimensoes */
.post-main .entry-content p > img {
	display: block;
	margin: 6px auto;
	border-radius: 4px;
}
.post-main .entry-content figure { margin: 24px 0; }
.post-main .entry-content figure img { border-radius: 4px; }
.post-main .entry-content figcaption,
.post-main .entry-content .wp-caption-text {
	font-size: 12px;
	line-height: 150%;
	color: #75798C;
	text-align: center;
	margin-top: 8px;
}
.post-main .entry-content .alignleft { float: left; margin: 4px 22px 14px 0; }
.post-main .entry-content .alignright { float: right; margin: 4px 0 14px 22px; }
.post-main .entry-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
/* o wpautop dos posts antigos deixa <p> vazio dentro das listas; zerar a
   margem tira o vao sem esconder nada que possa ter conteudo */
.post-main .entry-content ul > p,
.post-main .entry-content ol > p { margin: 0; }
/* as listas dos shortcodes ja tem marcador proprio; o :not evita o ponto duplo */
.post-main .entry-content ul:not(.tc-checklist):not(.tc-tips) { list-style: none; padding-left: 0; }
.post-main .entry-content ul:not(.tc-checklist):not(.tc-tips) > li {
	position: relative;
	padding-left: 20px;
}
.post-main .entry-content ul:not(.tc-checklist):not(.tc-tips) > li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: .62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #6D5EF5;
}
.post-main .entry-content ol { padding-left: 20px; }
.post-main .entry-content ol > li::marker { color: #4C3FD7; font-weight: 600; }
.post-main .entry-content iframe,
.post-main .entry-content embed,
.post-main .entry-content video { max-width: 100%; margin: 20px 0; border-radius: 4px; }
.post-main .entry-content hr { border: none; border-top: solid 1px #E6E4F7; margin: 30px 0; }
/* relacionados do Jetpack: o tema monta os proprios em "Leia tambem" */
.post-main .entry-content .jp-relatedposts { display: none; }

/* --- comentarios --- */
#comments { margin-top: 42px; }
#comments .comment-title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(19px, 1.9vw, 25px);
	line-height: 132%;
	color: #1A1A1A;
	margin: 0 0 8px;
}
#comments .comment-title-meta,
#comments .comment-title-meta-sep { color: #1A1A1A; }
#comments .comment-feed-link { font-size: 12px; color: #75798C; margin: 0 0 24px; }
#comments .comment-feed-link a { color: #4C3FD7; }

#comments .comment-list { list-style: none; margin: 0 0 36px; padding: 0; }
#comments .comment-list li.comment {
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: clamp(16px, 1.8vw, 22px);
	margin-bottom: 14px;
}
#comments .comment-list .children {
	list-style: none;
	margin: 14px 0 0;
	padding-left: clamp(16px, 2.4vw, 36px);
	border-left: solid 2px #E6E4F7;
}
#comments .comment-author {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 4px;
}
#comments .comment-author .avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: block;
}
#comments .commenter {
	font-style: normal;
	font-size: 14px;
	font-weight: 600;
	color: #1A1A1A;
}
#comments .comment-meta {
	font-size: 11px;
	color: #75798C;
	margin: 0 0 12px 49px;
}
#comments .comment-meta a { color: #75798C; text-decoration: none; }
#comments .comment-meta a:hover { color: #4C3FD7; }
#comments .comment-content { font-size: 14px; line-height: 165%; color: #3A352E; }
#comments .comment-content p { margin: 0 0 10px; }
#comments .comment-content p:last-child { margin-bottom: 0; }
#comments .comment-reply { margin-top: 12px; }
#comments .comment-reply-link {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: #4C3FD7;
	text-decoration: none;
}
#comments .comment-reply-link:hover { text-decoration: underline; }
#comments .navigation-links { border-top: solid 1px #E6E4F7; padding: 14px 0; font-size: 13px; }

/* --- formulario de comentario ---
   o #respond e irmao do #comments e aparece sozinho quando o post nao tem
   comentarios, entao precisa da margem propria para nao colar no bloco
   anterior ("Leia tambem") */
#respond {
	margin-top: 42px;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: clamp(18px, 2vw, 28px);
}
#respond .cancel-comment-reply { font-size: 12px; margin-bottom: 8px; }
#respond .cancel-comment-reply a { color: #4C3FD7; }
#respond #leave-a-reply {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(18px, 1.8vw, 23px);
	color: #1A1A1A;
	margin: 0 0 18px;
	border: none;
	padding: 0;
}
/* no markup do tema o <label> vem depois do campo; o column-reverse o
   traz para cima sem precisar mexer no comments.php */
#respond .form-section { display: flex; flex-direction: column-reverse; margin-bottom: 16px; }
#respond .form-section label {
	font-size: 12px;
	font-weight: 600;
	color: #2E2A45;
	margin-bottom: 6px;
	float: none;
	width: auto;
}
#respond .form-section label.required::after { content: " *"; color: #6D5EF5; }
#respond .form-section input[type=text],
#respond .form-section textarea {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #333;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 12px 14px;
	outline: none;
	transition: border-color .2s ease;
}
#respond .form-section input[type=text]:focus,
#respond .form-section textarea:focus { border-color: #6D5EF5; }
#respond .form-section textarea { min-height: 150px; line-height: 160%; resize: vertical; }
#respond #form-section-actions { display: block; text-align: left; margin-bottom: 0; }
#respond button#submit,
#respond input#submit {
	background: #6D5EF5;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	padding: 14px 30px;
	cursor: pointer;
	transition: background .2s ease;
}
#respond button#submit:hover,
#respond input#submit:hover { background: #4C3FD7; color: #FFF; }
#respond #allowed-tags { font-size: 11px; color: #75798C; margin-top: 10px; }

@media (max-width:600px) {
	#comments .comment-meta { margin-left: 0; }
	.post-main .entry-content .alignleft,
	.post-main .entry-content .alignright { float: none; margin: 14px auto; }
}

/* ==========================================================================
   Categoria
   ========================================================================== */

.cat-hero {
	position: relative;
	background: #1D1A16;
	overflow: hidden;
	margin-bottom: clamp(22px, 2.6vw, 34px);
}
.cat-hero--plain { background: #2A241E; }
.cat-hero__bg { position: absolute; inset: 0; }
.cat-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12,10,8,.9) 0%, rgba(12,10,8,.75) 34%, rgba(12,10,8,.35) 62%, rgba(12,10,8,.15) 100%);
}
.cat-hero__container {
	position: relative;
	z-index: 2;
	padding-top: clamp(34px, 4.4vw, 60px);
	padding-bottom: clamp(30px, 3.6vw, 50px);
}
/* precisa do #content para vencer a regra antiga, que centraliza o breadcrumb */
#content .cat-hero .rank-math-breadcrumb,
#content .cat-hero .rank-math-breadcrumb a {
	max-width: none;
	margin: 0 0 14px;
	text-align: left;
	font-style: normal;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,.72);
}
#content .cat-hero .rank-math-breadcrumb a:hover { color: #A99CFF; }
.cat-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 115%;
	color: #FFF;
	margin: 0 0 14px;
}
.cat-hero__text {
	font-size: clamp(13px, 1.1vw, 15px);
	line-height: 165%;
	color: rgba(255,255,255,.85);
	max-width: 34em;
	margin: 0 0 18px;
}
.cat-hero__text p { margin: 0; }
.cat-hero__count {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: rgba(255,255,255,.8);
	margin: 0;
}
.cat-hero__count svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- abas das subcategorias --- */
.cat-tabs { border-bottom: solid 1px #E6E4F7; margin-bottom: clamp(18px, 2vw, 26px); }
.cat-tabs ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(14px, 2vw, 30px);
	margin: 0;
	padding: 0;
}
.cat-tabs a {
	display: block;
	padding: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #5C5F72;
	text-decoration: none;
	border-bottom: solid 2px transparent;
	transition: color .2s ease, border-color .2s ease;
}
.cat-tabs a:hover { color: #4C3FD7; border-bottom-color: #A99CFF; }
.cat-tabs .is-current a { color: #4C3FD7; border-bottom-color: #6D5EF5; }

/* --- barra de ordenacao e busca --- */
.cat-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: clamp(16px, 1.8vw, 22px);
}
.cat-order select {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1A1A1A;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 10px 34px 10px 14px;
	cursor: pointer;
	outline: none;
	/* seta propria, ja que o select nativo varia entre navegadores */
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23926221' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 11px center;
	background-size: 14px;
}
.cat-search { display: flex; align-items: center; border-bottom: solid 1px #E3DCD1; }
.cat-search input {
	border: none;
	outline: none;
	background: transparent;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #333;
	padding: 9px 6px 9px 2px;
	width: clamp(150px, 18vw, 230px);
}
.cat-search input::placeholder { color: #9A96AE; }
.cat-search button {
	border: none;
	background: transparent;
	color: #4C3FD7;
	padding: 4px;
	cursor: pointer;
	display: flex;
}
.cat-search button svg { width: 17px; height: 17px; }

/* --- destaque: card grande + tres linhas --- */
.cat-featured {
	display: grid;
	grid-template-columns: 48fr 52fr;
	gap: 14px;
	margin-bottom: 14px;
}
.cat-featured__main { min-width: 0; }
.cat-featured__main > a {
	position: relative;
	display: block;
	height: 100%;
	min-height: 300px;
	overflow: hidden;
	border-radius: 4px;
	text-decoration: none;
}
.cat-featured__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.cat-featured__main > a:hover img { transform: scale(1.03); }
.cat-featured__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12,10,8,0) 34%, rgba(12,10,8,.55) 64%, rgba(12,10,8,.9) 100%);
}
.cat-featured__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	padding: clamp(16px, 1.8vw, 26px);
}
.cat-featured__cat {
	display: block;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #A99CFF;
	margin-bottom: 8px;
}
.cat-featured__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(18px, 1.8vw, 26px);
	line-height: 130%;
	color: #FFF;
	margin-bottom: 8px;
}
.cat-featured__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 13px;
	line-height: 155%;
	color: rgba(255,255,255,.85);
	margin-bottom: 10px;
}
.cat-featured__meta { display: block; font-size: 11px; color: rgba(255,255,255,.7); }

.cat-featured__list { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 14px; min-width: 0; }
.cat-featured__item { min-width: 0; }
.cat-featured__item > a {
	display: grid;
	grid-template-columns: 38% 1fr;
	gap: 14px;
	align-items: center;
	height: 100%;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.cat-featured__item > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.cat-featured__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; height: 100%; }
.cat-featured__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-featured__info { display: block; min-width: 0; padding: 12px 16px 12px 0; }
.cat-featured__info .cat-featured__cat { color: #6D5EF5; }
.cat-featured__subtitle {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(14px, 1.2vw, 17px);
	line-height: 132%;
	color: #1A1A1A;
	margin-bottom: 8px;
}
.cat-featured__item > a:hover .cat-featured__subtitle { color: #4C3FD7; }
.cat-featured__info .cat-featured__meta { color: #75798C; }

/* --- grade --- */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: clamp(24px, 3vw, 40px);
}
.cat-card { min-width: 0; }
.cat-card > a {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.cat-card > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.cat-card__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.cat-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card__body { display: block; padding: 13px 15px 16px; }
.cat-card__cat {
	display: block;
	font-size: 9px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6D5EF5;
	margin-bottom: 7px;
}
.cat-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	line-height: 132%;
	color: #1A1A1A;
	margin-bottom: 9px;
}
.cat-card > a:hover .cat-card__title { color: #4C3FD7; }
.cat-card__meta { display: block; font-size: 11px; color: #75798C; }

/* --- paginacao --- */
.post-main .page-numbers {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 0;
}
.post-main .page-numbers li { margin: 0; }
.post-main .page-numbers a,
.post-main .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 11px;
	border-radius: 50px;
	font-size: 13px;
	color: #2E2A45;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}
.post-main .page-numbers a:hover { background: #F4EFE4; color: #4C3FD7; }
.post-main .page-numbers .current { background: #6D5EF5; color: #FFF; font-weight: 600; }
.post-main .page-numbers .dots { color: #9A96AE; }
.post-main .page-numbers .next,
.post-main .page-numbers .prev { font-weight: 600; color: #4C3FD7; }

.cat-empty { text-align: center; padding: 50px 0; }
.cat-empty h2 { font-family: 'Satoshi', sans-serif; font-weight: 400; font-size: 24px; color: #1A1A1A; margin: 0 0 8px; }
.cat-empty p { font-size: 14px; color: #5C5F72; margin: 0 0 18px; }

/* --- guias na coluna lateral --- */
.aside-guides__list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.aside-guides__list a {
	display: grid;
	grid-template-columns: 52px 1fr auto;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.aside-guides__thumb {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 4px;
	background: #E6E4F7;
}
.aside-guides__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aside-guides__label { font-size: 13px; line-height: 138%; color: #1A1A1A; }
.aside-guides__list a:hover .aside-guides__label { color: #4C3FD7; }
.aside-guides__list a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: solid 1.5px #B9AFA0;
	border-right: solid 1.5px #B9AFA0;
	transform: rotate(45deg);
}
.aside-guides__all { width: 100%; justify-content: center; padding: 11px 18px; }

@media (max-width:1199px) {
	.cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width:991px) {
	.cat-featured { grid-template-columns: 1fr; }
	.cat-featured__main > a { min-height: 260px; }
	.cat-featured__list { grid-template-rows: none; }
	.cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width:600px) {
	.cat-toolbar { flex-direction: column; align-items: stretch; }
	.cat-search { width: 100%; }
	.cat-search input { width: 100%; }
	.cat-grid { grid-template-columns: 1fr; }
	.cat-featured__item > a { grid-template-columns: 36% 1fr; }
}

/* ==========================================================================
   Ferramentas
   ========================================================================== */

/* --- indice --- */
.tools-page { max-width: 1180px; margin: 0 auto; padding: 10px 0 46px; }
.tools-page__head {
	display: flex;
	align-items: center;
	gap: clamp(24px, 5vw, 64px);
	margin-bottom: clamp(32px, 4.5vw, 56px);
}
.tools-page__head-text { flex: 0 1 480px; }
.tools-page__head-image { flex: 1 1 480px; }
.tools-page__head-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}
.tools-page__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 122%;
	color: #1A1A1A;
	margin: 0 0 16px;
}
.tools-page__text {
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 165%;
	color: #5C5F72;
	margin: 0;
	max-width: 34em;
}
.tools-page__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.tools-index__empty { font-size: 13px; color: #5C5F72; padding: 30px 0; text-align: center; }
.tools-page__grid a {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 8px;
	padding: clamp(20px, 2.2vw, 30px);
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.tools-page__grid a:hover { border-color: #A99CFF; box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.tools-page__icon { display: flex; color: #6D5EF5; margin-bottom: 14px; }
.tools-page__icon svg { width: 44px; height: 44px; }
.tools-page__name {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 130%;
	color: #1A1A1A;
	margin-bottom: 8px;
}
.tools-page__desc { font-size: 13px; line-height: 160%; color: #5C5F72; margin-bottom: 16px; }
.tools-page__go {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 12px;
	font-weight: 600;
	color: #4C3FD7;
}
.tools-page__go svg { width: 15px; height: 15px; }
.tools-page__content { max-width: 760px; margin: 40px auto 0; }

/* --- pagina de uma ferramenta --- */
.tool-page { max-width: 860px; margin: 0 auto; padding: 10px 0 46px; }
.tool-head { margin-bottom: clamp(18px, 2vw, 26px); }
.tool-head__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: #4C3FD7;
	text-decoration: none;
	margin-bottom: 14px;
}
.tool-head__back svg { width: 15px; height: 15px; }
.tool-head__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(25px, 2.8vw, 38px);
	line-height: 122%;
	color: #1A1A1A;
	margin: 0 0 10px;
}
.tool-head__text { font-size: clamp(13px, 1.1vw, 15px); line-height: 165%; color: #5C5F72; margin: 0; max-width: 44em; }

.tool-card {
	position: relative;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 8px;
	padding: clamp(18px, 2.2vw, 30px);
}
.tool-page__content { max-width: 760px; margin: 36px auto 0; }

/* gate de e-mail sobre a ferramenta */
.tool-gate {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
	background: rgba(255, 255, 255, .97);
	border-radius: 8px;
}
.tool-gate[hidden] { display: none; }

.tool-gate__box { width: 100%; max-width: 340px; text-align: center; }
.tool-gate__title { font-size: 20px; line-height: 128%; color: #1A1A1A; margin: 0 0 8px; }
.tool-gate__text { font-size: 13px; line-height: 160%; color: #5C5F72; margin: 0 0 20px; }

.tool-gate__form { display: flex; flex-direction: column; gap: 10px; }
.tool-gate__form input {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #1A1A1A;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 12px 14px;
	outline: none;
	text-align: center;
	transition: border-color .2s ease;
}
.tool-gate__form input:focus { border-color: #6D5EF5; }
.tool-gate__form button {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #FFF;
	background: #6D5EF5;
	border: none;
	border-radius: 4px;
	padding: 13px 20px;
	cursor: pointer;
	transition: background .2s ease;
}
.tool-gate__form button:hover { background: #4C3FD7; }
.tool-gate__form.is-loading button { opacity: .6; pointer-events: none; }

.tool-gate__msg { font-size: 12px; color: #e05555; margin: 12px 0 0; min-height: 14px; }

/* campos */
.tool-fields { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.tool-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 220px; min-width: 0; }
.tool-field--small { flex: 0 1 190px; }
.tool-field--qtd { flex: 0 1 120px; }
.tool-field--inline { flex-direction: row; align-items: center; gap: 12px; margin: 18px 0; }
.tool-field--inline label { margin: 0; white-space: nowrap; }
.tool-field--inline input { max-width: 170px; }
.tool-field label { font-size: 12px; font-weight: 600; color: #2E2A45; }
.tool-field__hint { font-size: 11px; color: #75798C; }
.tool-field input,
.tool-field select {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #1A1A1A;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 12px 14px;
	outline: none;
	width: 100%;
	transition: border-color .2s ease;
}
.tool-field input:focus,
.tool-field select:focus { border-color: #6D5EF5; }

.tool-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #2E2A45; margin-bottom: 22px; cursor: pointer; }
.tool-check input { width: 17px; height: 17px; accent-color: #6D5EF5; }

.tool-note { font-size: 12px; line-height: 160%; color: #75798C; margin: 18px 0 0; }

/* tabela do orcamento */
.tool-table-wrap { overflow-x: auto; }
.tool-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tool-table th,
.tool-table td { border-bottom: solid 1px #E6E4F7; padding: 12px 14px; text-align: left; }
.tool-table thead th { background: #F5F5FC; font-weight: 600; color: #1A1A1A; font-size: 12px; }
.tool-table__pct { color: #75798C; white-space: nowrap; }
.tool-table__val { text-align: right; font-weight: 600; color: #1A1A1A; white-space: nowrap; }
.tool-table tfoot td { border-top: solid 1px #E3DCD1; color: #2E2A45; }
.tool-table__total td { font-weight: 700; color: #4C3FD7; border-bottom: none; }

/* progresso do checklist */
.tool-progress { margin-bottom: 26px; }
.tool-progress__bar {
	height: 8px;
	background: #F0EAE0;
	border-radius: 50px;
	overflow: hidden;
	margin-bottom: 10px;
}
.tool-progress__bar span {
	display: block;
	height: 100%;
	width: 0;
	background: #6D5EF5;
	border-radius: 50px;
	transition: width .3s ease;
}
.tool-progress__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; color: #5C5F72; }
.tool-progress__reset {
	border: none;
	background: none;
	color: #4C3FD7;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}
.tool-progress__reset:hover { text-decoration: underline; }

.tool-stage + .tool-stage { margin-top: 24px; }
.tool-stage__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #1A1A1A;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: solid 1px #E6E4F7;
}
.tool-stage__list { list-style: none; margin: 0; padding: 0; }
.tool-stage__list li { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; }
.tool-stage__list input { width: 18px; height: 18px; margin-top: 1px; accent-color: #6D5EF5; flex-shrink: 0; cursor: pointer; }
.tool-stage__list label { font-size: 14px; line-height: 155%; color: #3A352E; cursor: pointer; }
.tool-stage__list li.is-done label { color: #9A96AE; text-decoration: line-through; }

/* convidados */
.tool-guest-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; margin-bottom: 22px; }
.tool-guest-form .btn-gold { border: none; cursor: pointer; padding: 13px 24px; font-family: 'Inter', sans-serif; }

.tool-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.tool-summary__item {
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: 14px;
	text-align: center;
}
.tool-summary__num { display: block; font-family: 'Satoshi', sans-serif; font-size: 22px; color: #4C3FD7; line-height: 1.1; margin-bottom: 4px; }
.tool-summary__label { display: block; font-size: 11px; color: #75798C; }

.tool-guests { list-style: none; margin: 0; padding: 0; }
.tool-guest {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 12px;
	padding: 11px 0;
	border-bottom: solid 1px #F0EAE0;
}
.tool-guest__info { display: flex; flex-direction: column; min-width: 0; }
.tool-guest__info strong { font-size: 14px; font-weight: 600; color: #1A1A1A; }
.tool-guest__info small { font-size: 11px; color: #75798C; }
.tool-guest__status {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #2E2A45;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 7px 10px;
	cursor: pointer;
	outline: none;
}
.tool-guest.is-confirmado .tool-guest__status { border-color: #6D5EF5; color: #4C3FD7; }
.tool-guest.is-recusado .tool-guest__info strong { color: #9A96AE; text-decoration: line-through; }
.tool-guest__remove {
	border: none;
	background: none;
	color: #B9AFA0;
	font-size: 20px;
	line-height: 1;
	padding: 2px 6px;
	cursor: pointer;
}
.tool-guest__remove:hover { color: #b32d2e; }

/* bebidas */
.tool-results { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tool-results li {
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 6px;
	padding: 16px;
}
.tool-results__label { display: block; font-size: 12px; font-weight: 600; color: #2E2A45; margin-bottom: 6px; }
.tool-results__value { display: block; font-family: 'Satoshi', sans-serif; font-size: 22px; color: #4C3FD7; line-height: 1.15; margin-bottom: 6px; }
.tool-results__hint { display: block; font-size: 11px; line-height: 150%; color: #75798C; }

@media (max-width:768px) {
	.tools-page__head { flex-direction: column-reverse; }
	.tools-page__grid { grid-template-columns: 1fr; }
	.tool-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tool-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tool-guest-form .btn-gold { width: 100%; justify-content: center; }
	.tool-field--inline { flex-direction: column; align-items: flex-start; }
	.tool-field--inline input { max-width: 100%; }
}

@media (max-width:480px) {
	.tool-results { grid-template-columns: 1fr; }
	.tool-guest { grid-template-columns: 1fr auto; row-gap: 8px; }
	.tool-guest__remove { grid-row: 1; grid-column: 2; }
	.tool-guest__status { grid-column: 1 / -1; }
}

/* =========================================================================
   Busca (search.php)
   ========================================================================= */

.srch-page { padding-top: clamp(14px, 1.8vw, 22px); }

/* migalha propria: o Rank Math imprime "Results for ..." na busca, o que
   duplicaria o titulo logo abaixo */
.srch-crumb { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: #75798C; margin-bottom: clamp(16px, 2vw, 24px); }
.srch-crumb a { color: #75798C; text-decoration: none; }
.srch-crumb a:hover { color: #4C3FD7; }
.srch-crumb__sep { color: #B9AFA0; }
.srch-crumb__current { color: #5C5F72; }

/* titulo a esquerda, campo de busca a direita */
.srch-hero {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 48px);
	align-items: center;
	margin-bottom: clamp(22px, 2.6vw, 32px);
}
.srch-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 118%;
	color: #1A1A1A;
	margin: 0 0 14px;
}
.srch-hero__term { color: #6D5EF5; }
.srch-hero__form {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 4px 4px 4px 18px;
	margin-bottom: 12px;
}
.srch-hero__form input {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #1A1A1A;
	padding: 12px 0;
}
.srch-hero__form input::placeholder { color: #9A96AE; }
.srch-hero__form button { border: none; background: transparent; color: #1A1A1A; padding: 11px 14px; cursor: pointer; display: flex; transition: color .2s ease; }
.srch-hero__form button:hover { color: #4C3FD7; }
.srch-hero__form button svg { width: 19px; height: 19px; }
.srch-hero__hint { font-size: 12px; line-height: 155%; color: #75798C; margin: 0; }
.srch-hero__count { font-size: 13px; color: #2E2A45; margin: 0; }
.srch-hero__count strong { color: #1A1A1A; }

/* --- abas de tipo de conteudo --- */
.srch-tabs { border-bottom: solid 1px #E6E4F7; margin-bottom: clamp(18px, 2vw, 26px); }
.srch-tabs ul { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(14px, 2.2vw, 32px); margin: 0; padding: 0; }
.srch-tabs a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #5C5F72;
	text-decoration: none;
	border-bottom: solid 2px transparent;
	transition: color .2s ease, border-color .2s ease;
}
.srch-tabs a svg { width: 16px; height: 16px; flex-shrink: 0; }
.srch-tabs a:hover { color: #4C3FD7; border-bottom-color: #A99CFF; }
.srch-tabs .is-current a { color: #4C3FD7; border-bottom-color: #6D5EF5; }

/* --- lista de resultados --- */
.srch-results { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.srch-result > a {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 20px;
	background: #FFF;
	border: solid 1px #F0EAE0;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease;
}
.srch-result > a:hover { box-shadow: 0 8px 22px rgba(0,0,0,.07); }
.srch-result__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #F0EAE0; }
.srch-result__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.srch-result__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 14px 20px 14px 0; }
.srch-result__cat { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #6D5EF5; margin-bottom: 8px; }
.srch-result__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 130%;
	color: #1A1A1A;
	margin-bottom: 8px;
}
.srch-result > a:hover .srch-result__title { color: #4C3FD7; }
.srch-result__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 13px;
	line-height: 155%;
	color: #5C5F72;
	margin-bottom: 10px;
}
.srch-result__meta { display: block; font-size: 11px; color: #75798C; }
.srch-result__dot { margin: 0 6px; }

.srch-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #F5F5FC;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 15px;
	font-size: 13px;
	font-weight: 600;
	color: #4C3FD7;
	text-decoration: none;
	margin-bottom: clamp(24px, 3vw, 40px);
	transition: background .2s ease;
}
.srch-more:hover { background: #F4EFE4; }
.srch-more svg { width: 16px; height: 16px; }

.srch-empty { padding: 40px 0 60px; color: #5C5F72; }
.srch-empty h2 { font-family: 'Satoshi', sans-serif; font-weight: 400; font-size: 22px; color: #1A1A1A; margin: 0 0 14px; }
.srch-empty ul { margin: 10px 0 0; padding-left: 20px; }
.srch-empty li { font-size: 13px; line-height: 180%; }

/* --- refine sua busca --- */
.srch-refine__group { margin-bottom: 20px; }
.srch-refine__group:last-child { margin-bottom: 0; }
.srch-refine__label { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #75798C; margin: 0 0 12px; }
.srch-refine__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.srch-refine__checks label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #333; cursor: pointer; }
.srch-refine__checks input[type="checkbox"] { width: 16px; height: 16px; accent-color: #6D5EF5; cursor: pointer; }
.srch-refine__checks span { flex: 1; }
.srch-refine__checks em { font-style: normal; font-size: 12px; color: #75798C; }
.srch-refine select {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1A1A1A;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 4px;
	padding: 10px 34px 10px 14px;
	cursor: pointer;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23926221' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 11px center;
	background-size: 14px;
}

.srch-popular__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.srch-popular__list a {
	display: inline-block;
	font-size: 12px;
	color: #2E2A45;
	background: #FFF;
	border: solid 1px #E6E4F7;
	border-radius: 20px;
	padding: 8px 14px;
	text-decoration: none;
	transition: border-color .2s ease, color .2s ease;
}
.srch-popular__list a:hover { border-color: #6D5EF5; color: #4C3FD7; }

@media (max-width:960px) {
	.srch-hero { grid-template-columns: 1fr; gap: 18px; align-items: start; }
	.srch-result > a { grid-template-columns: 1fr; }
	.srch-result__thumb { aspect-ratio: 16 / 9; }
	.srch-result__body { padding: 14px 16px 16px; }
}

@media (max-width:480px) {
	.srch-tabs ul { gap: 16px; }
	.srch-tabs a { font-size: 11px; }
}

/* Secao: Legal / Institutional page template (page-legal.php) */
.legal-hero { background: #F1F3FB; padding: clamp(48px, 6vw, 72px) 0; overflow: hidden; }
.legal-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.legal-hero__copy { max-width: 560px; }
.legal-hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.legal-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 112%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.legal-hero__subtitle { font-size: clamp(14px, 1.4vw, 17px); line-height: 160%; color: #5C5F72; margin: 0; max-width: 42em; }
.legal-hero__art { flex-shrink: 0; width: 220px; }
.legal-hero__art svg { width: 100%; height: auto; display: block; opacity: .9; }
.legal-hero__thumb {
	width: 220px;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 44px rgba(15,14,23,.12);
	display: block;
}

.legal-meta { border-bottom: solid 1px #ECEAF7; }
.legal-meta__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 16px 0; }
.legal-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #75798C; }
.legal-breadcrumb a { color: #75798C; text-decoration: none; transition: color .2s ease; }
.legal-breadcrumb a:hover { color: #6D5EF5; }
.legal-breadcrumb svg { width: 14px; height: 14px; color: #C7C5D9; }
.legal-breadcrumb span { color: #0F0E17; font-weight: 500; }
.legal-meta__updated { font-size: 13px; color: #75798C; margin: 0; }

.legal-body-section { padding: clamp(40px, 5vw, 60px) 0 clamp(70px, 8vw, 100px); }
.legal-layout { display: grid; grid-template-columns: 1fr 260px; align-items: start; gap: clamp(40px, 5vw, 70px); }

.legal-content { min-width: 0; }
.legal-content h2 {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 2.2vw, 26px);
	color: #0F0E17;
	scroll-margin-top: 24px;
	margin: 0 0 16px;
	padding-top: 32px;
	border-top: solid 1px #ECEAF7;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 17px; color: #0F0E17; margin: 24px 0 10px; }
.legal-content p { font-size: 15px; line-height: 172%; color: #5C5F72; margin: 0 0 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px; padding-left: 22px; color: #5C5F72; font-size: 15px; line-height: 172%; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: #6D5EF5; text-decoration: underline; }
.legal-content a:hover { color: #4C3FD7; }
.legal-content strong { color: #0F0E17; }

.page-content { max-width: 720px; margin: 0 auto; }

.legal-toc { position: sticky; top: calc(var(--wpadmin-offset) + 100px); }
.legal-toc__title { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0 0 14px; }
.legal-toc .aside-toc__list { border-left: solid 1px #ECEAF7; padding-left: 0; }
.legal-toc .aside-toc__list a {
	display: block;
	padding: 8px 0 8px 18px;
	position: relative;
	text-decoration: none;
}
.legal-toc .aside-toc__list a::before {
	content: '';
	position: absolute;
	left: -3.5px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ECEAF7;
	transition: background .2s ease;
}
.legal-toc .aside-toc__list li + li a { border-top: none; }
.legal-toc .aside-toc__text { font-size: 13px; line-height: 145%; color: #5C5F72; }
.legal-toc .aside-toc__list a:hover .aside-toc__text { color: #4C3FD7; }
.legal-toc .aside-toc__list a.is-active::before { background: #6D5EF5; }
.legal-toc .aside-toc__list a.is-active .aside-toc__text { color: #6D5EF5; font-weight: 600; }

@media (max-width:900px) {
	.legal-hero__art { display: none; }
	.legal-layout { grid-template-columns: 1fr; }
	.legal-toc { position: static; order: -1; border: solid 1px #ECEAF7; border-radius: 14px; padding: 16px 20px; }
}

/* Secao: How It Works (page-how-it-works.php) */
.hiw-hero { background: #F9F8FC; padding: clamp(56px, 6vw, 84px) 0 clamp(36px, 4vw, 48px); text-align: center; }
.hiw-hero__intro { max-width: 760px; margin: 0 auto; }
.hiw-hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.hiw-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.8vw, 44px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 18px;
}
.hiw-hero__subtitle { font-size: clamp(14px, 1.4vw, 16px); line-height: 165%; color: #5C5F72; margin: 0 0 30px; }
.hiw-hero__ctas { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.hiw-hero__note { font-size: 12px; color: #9A9DAC; margin: 0; }

/* Secao: 3 steps */
.hiw-steps { background: #FFF; padding: clamp(50px, 6vw, 76px) 0; }
.hiw-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.hiw-step { min-width: 0; }
.hiw-step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.hiw-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #EDE9FE;
	color: #6D5EF5;
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: 15px;
}
.hiw-step__head h3 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0; }
.hiw-step__desc { font-size: 13.5px; line-height: 165%; color: #5C5F72; margin: 0 0 18px; }

/* fake wp-admin mockup */
.hiw-admin { display: flex; border: solid 1px #ECEAF7; border-radius: 12px; overflow: hidden; background: #FFF; font-size: 10.5px; min-height: 260px; }
.hiw-admin__sidebar { flex-shrink: 0; width: 84px; background: #1D2327; color: #C3C4C7; padding: 10px 0; display: flex; flex-direction: column; }
.hiw-admin__sidebar span { padding: 6px 10px; }
.hiw-admin__sidebar span.is-active { background: #6D5EF5; color: #FFF; font-weight: 600; }
.hiw-admin__sidebar span.hiw-admin__sub { padding-left: 18px; font-size: 9.5px; color: #8C8F94; }
.hiw-admin__main { flex: 1; min-width: 0; padding: 12px; }
.hiw-admin__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hiw-admin__topbar h4 { font-size: 12px; font-weight: 700; color: #0F0E17; margin: 0; }
.hiw-admin__search, .hiw-admin__bulk {
	font-size: 9.5px;
	color: #5C5F72;
	background: #F5F5FA;
	border: solid 1px #ECEAF7;
	border-radius: 5px;
	padding: 4px 8px;
	display: flex;
	gap: 6px;
}
.hiw-admin__search b, .hiw-admin__bulk b { font-weight: 600; color: #0F0E17; }
.hiw-admin__plugin-card, .hiw-admin__plugin-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 8px;
	padding: 12px;
}
.hiw-admin__plugin-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 7px;
	background: #0F0E17;
	color: #FFF;
}
.hiw-admin__plugin-icon svg { width: 15px; height: 15px; }
.hiw-admin__checkbox { flex-shrink: 0; width: 13px; height: 13px; margin-top: 2px; border: solid 1px #C7C5D9; border-radius: 3px; }
.hiw-admin__plugin-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.hiw-admin__plugin-body strong { font-size: 11px; color: #0F0E17; display: flex; align-items: center; gap: 6px; }
.hiw-admin__plugin-desc { color: #5C5F72; }
.hiw-admin__plugin-meta { color: #9A9DAC; font-size: 9.5px; }
.hiw-admin__stars { color: #F97316; }
.hiw-admin__tag { background: #DCFCE7; color: #16A34A; font-size: 9px; font-weight: 700; padding: 1px 7px; border-radius: 999px; }
.hiw-admin__row-links { color: #6D5EF5; font-size: 9.5px; }
.hiw-admin__install-btn {
	flex-shrink: 0;
	align-self: flex-start;
	background: #0F0E17;
	color: #FFF;
	font-size: 9.5px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 5px;
}

/* step 3: content -> AI targets flow */
.hiw-flow { display: flex; flex-direction: column; align-items: center; gap: 14px; border: solid 1px #ECEAF7; border-radius: 12px; padding: 20px 14px; min-height: 260px; justify-content: center; }
.hiw-flow__doc {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: #F5F5FA;
	border: solid 1px #ECEAF7;
	border-radius: 10px;
	padding: 16px 20px;
	color: #6D5EF5;
	text-align: center;
}
.hiw-flow__doc svg { width: 22px; height: 22px; }
.hiw-flow__doc span { font-size: 11px; font-weight: 700; color: #0F0E17; }
.hiw-flow__doc small { font-size: 10px; font-weight: 400; color: #75798C; }
.hiw-flow__arrow { width: 18px; height: 18px; color: #C7C5D9; transform: rotate(90deg); }
.hiw-flow__targets { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.hiw-flow__target {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #0F0E17;
}
.hiw-flow__target img { width: 20px; height: 20px; border-radius: 5px; }

/* Secao: What AI sees (comparison) */
.hiw-compare { background: #F9F8FC; padding: clamp(56px, 6vw, 84px) 0; }
.hiw-compare__intro { max-width: 640px; margin: 0 auto; text-align: center; }
.hiw-compare__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.hiw-compare__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 3.2vw, 36px);
	color: #0F0E17;
	margin: 0 0 14px;
}
.hiw-compare__subtitle { font-size: 15px; line-height: 165%; color: #5C5F72; margin: 0; }

.hiw-compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: clamp(36px, 4vw, 48px); }
.hiw-compare__card { background: #FFF; border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; }
.hiw-compare__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.hiw-compare__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}
.hiw-compare__badge--off { background: #FEE2E2; color: #EF4444; }
.hiw-compare__badge--on { background: #DCFCE7; color: #16A34A; }
.hiw-compare__badge--on svg { width: 14px; height: 14px; }
.hiw-compare__head h3 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 4px; }
.hiw-compare__head p { font-size: 13px; color: #5C5F72; margin: 0; }

.hiw-mock { background: #FAF9FF; border: solid 1px #EFEDFA; border-radius: 12px; padding: 16px; }
.hiw-mock__bar { display: flex; gap: 5px; margin-bottom: 12px; }
.hiw-mock__bar span { width: 8px; height: 8px; border-radius: 50%; background: #D9D6EA; }
.hiw-mock__nav { display: flex; align-items: center; gap: 14px; background: #FFF; border: solid 1px #EFEDFA; border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; font-size: 11px; color: #75798C; }
.hiw-mock__nav strong { color: #0F0E17; font-size: 12px; margin-right: auto; }
.hiw-mock__hero { position: relative; height: 90px; background: linear-gradient(135deg,#B9C6E0,#8FA3C9); border-radius: 8px; margin-bottom: 10px; }
.hiw-mock__offer { position: absolute; right: 10px; bottom: 10px; background: rgba(15,14,23,.75); color: #FFF; font-size: 9.5px; font-weight: 700; text-align: center; padding: 8px 10px; border-radius: 6px; }
.hiw-mock__lines { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.hiw-mock__lines span { display: block; height: 8px; border-radius: 4px; background: #E5E2F5; width: 100%; }
.hiw-mock__label { font-size: 11px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.hiw-mock__popular { display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 8px 10px; margin-bottom: 14px; }
.hiw-mock__avatar { width: 22px; height: 22px; border-radius: 50%; background: #D9D6EA; }
.hiw-mock__pline { display: block; height: 7px; border-radius: 4px; background: #E5E2F5; }
.hiw-mock__code { margin: 0; background: #1D2327; color: #8FE388; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; font-size: 10px; line-height: 155%; padding: 10px 12px; border-radius: 8px; white-space: pre-wrap; }
.hiw-mock__article-title { font-family: 'Satoshi', sans-serif; font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 12px; }
.hiw-mock__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hiw-mock__bullets li { position: relative; height: 8px; border-radius: 4px; background: #E5E2F5; padding-left: 16px; }
.hiw-mock__bullets li::before { content: ''; position: absolute; left: 0; top: 1px; width: 6px; height: 6px; border-radius: 50%; background: #6D5EF5; }

/* Secao: final CTA + related links */
.hiw-final { background: #FFF; padding: clamp(56px, 6vw, 84px) 0; }
.hiw-final__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.hiw-final__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.hiw-final__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(26px, 3.2vw, 36px); color: #0F0E17; margin: 0 0 14px; }
.hiw-final__subtitle { font-size: 15px; line-height: 165%; color: #5C5F72; margin: 0 0 26px; max-width: 34em; }

.hiw-final__links { background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; }
.hiw-final__links-title { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #9A9DAC; margin: 0 0 16px; }
.hiw-final__link { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; padding: 10px 0; border-top: solid 1px #ECEAF7; }
.hiw-final__link:first-of-type { border-top: none; padding-top: 0; }
.hiw-final__link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #EDE9FE;
	color: #6D5EF5;
}
.hiw-final__link-icon svg { width: 16px; height: 16px; }
.hiw-final__link strong { display: block; font-size: 14px; font-weight: 700; color: #0F0E17; margin-bottom: 2px; }
.hiw-final__link span span { font-size: 12.5px; color: #75798C; }

@media (max-width:900px) {
	.hiw-steps__grid { grid-template-columns: 1fr; }
	.hiw-compare__grid { grid-template-columns: 1fr; }
	.hiw-final__grid { grid-template-columns: 1fr; }
}

/* Secao: Pricing (page-pricing.php) */
.pp-hero { background: #F9F8FC; padding: clamp(56px, 6vw, 80px) 0 clamp(40px, 5vw, 56px); text-align: center; }
.pp-hero__inner { max-width: 680px; margin: 0 auto; }
.pp-hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.pp-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 118%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.pp-hero__subtitle { font-size: clamp(14px, 1.4vw, 16px); line-height: 165%; color: #5C5F72; margin: 0; }

.pp-plans { background: #F9F8FC; padding: 0 0 clamp(56px, 6vw, 80px); }
.pp-plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pp-plan {
	position: relative;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 16px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
}
.pp-plan--featured { border-color: #6D5EF5; box-shadow: 0 16px 40px rgba(109,94,245,.14); }
.pp-plan__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #6D5EF5;
	color: #FFF;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
}
.pp-plan__name { font-family: 'Satoshi', sans-serif; font-size: 19px; font-weight: 800; color: #0F0E17; margin: 0 0 4px; }
.pp-plan__tagline { font-size: 13px; color: #75798C; margin: 0 0 18px; }
.pp-plan__price { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 34px; color: #0F0E17; margin: 0 0 20px; line-height: 1; }
.pp-plan__price span { font-size: 13px; font-weight: 500; color: #75798C; margin-left: 4px; }
.pp-plan__list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.pp-plan__list li { position: relative; padding-left: 26px; font-size: 13.5px; color: #3A3D4D; line-height: 145%; }
.pp-plan__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #DCFCE7;
}
.pp-plan__list li::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 6px;
	width: 8px;
	height: 4px;
	border-left: solid 2px #16A34A;
	border-bottom: solid 2px #16A34A;
	transform: rotate(-45deg);
}
.pp-plan__btn {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 0;
	border-radius: 10px;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}
.pp-plan__btn--outline { background: #F5F5FA; color: #0F0E17; }
.pp-plan__btn--outline:hover { background: #ECEAF7; }
.pp-plan__btn--primary { background: #0F0E17; color: #FFF; }
.pp-plan__btn--primary:hover { background: #2B2A38; color: #FFF; }

.pp-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(32px, 4vw, 44px); }
.pp-trust__item { display: flex; align-items: center; gap: 14px; }
.pp-trust__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; }
.pp-trust__icon svg { width: 19px; height: 19px; }
.pp-trust__icon--green { background: #DCFCE7; color: #16A34A; }
.pp-trust__icon--blue { background: #DCEBFE; color: #2563EB; }
.pp-trust__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.pp-trust__item strong { display: block; font-size: 14px; font-weight: 700; color: #0F0E17; margin-bottom: 2px; }
.pp-trust__item > span > span { font-size: 12.5px; color: #75798C; }

.pp-table-section { background: #FFF; padding: clamp(40px, 5vw, 60px) 0; }
.pp-table { border: solid 1px #ECEAF7; border-radius: 14px; overflow: hidden; }
.pp-table__row { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); align-items: center; }
.pp-table__row:not(:last-child) { border-bottom: solid 1px #ECEAF7; }
.pp-table__row--head { background: #F9F8FC; font-size: 13px; font-weight: 700; color: #0F0E17; }
.pp-table__row--head span { padding: 16px 20px; }
.pp-table__label { padding: 14px 20px; font-size: 14px; color: #3A3D4D; }
.pp-table__cell { padding: 14px 20px; text-align: center; color: #C7C5D9; }
.pp-table__cell svg { width: 18px; height: 18px; color: #16A34A; }
.pp-table__cell--text { font-size: 14px; font-weight: 700; color: #0F0E17; }
.pp-table__row:last-child .pp-table__label { font-weight: 700; color: #0F0E17; }

.pp-faq { background: #FFF; padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 6vw, 80px); }
.pp-faq__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.pp-faq__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.pp-faq__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 clamp(28px, 3vw, 40px); }
.pp-faq__list { text-align: left; display: grid; gap: 12px; }
.pp-faq__item { border: solid 1px #ECEAF7; border-radius: 12px; overflow: hidden; }
.pp-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #FFF;
	border: none;
	text-align: left;
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #0F0E17;
	padding: 16px 18px;
	cursor: pointer;
}
.pp-faq__question svg { width: 18px; height: 18px; color: #9A9DAC; flex-shrink: 0; transition: transform .2s ease; }
.pp-faq__item.is-open .pp-faq__question svg { transform: rotate(180deg); }
.pp-faq__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.pp-faq__answer p { margin: 0; padding: 0 18px 16px; font-size: 14px; line-height: 165%; color: #5C5F72; }
.pp-faq__item.is-open .pp-faq__answer { max-height: 200px; }

@media (max-width:900px) {
	.pp-plans__grid { grid-template-columns: 1fr; }
	.pp-trust { grid-template-columns: 1fr; }
	.pp-table__row { grid-template-columns: 1.3fr repeat(3, 1fr); font-size: 12px; }
	.pp-table__label { padding: 12px; font-size: 12.5px; }
	.pp-table__cell, .pp-table__row--head span { padding: 12px 6px; }
}
@media (max-width:600px) {
	.pp-table { overflow-x: auto; }
	.pp-table__row { grid-template-columns: 1.4fr repeat(3, 90px); min-width: 560px; }
}

/* Secao: WordPress SEO Plugin (page-seo-plugin.php) */
.sp-hero { background: #F9F8FC; padding: clamp(48px, 6vw, 72px) 0; overflow: hidden; }
.sp-hero__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.sp-hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.sp-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(30px, 3.6vw, 42px);
	line-height: 114%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 18px;
}
.sp-hero__lead { font-size: 16px; font-weight: 600; color: #0F0E17; line-height: 155%; margin: 0 0 14px; }
.sp-hero__subtitle { font-size: 14.5px; line-height: 168%; color: #5C5F72; margin: 0 0 26px; }
.sp-hero__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.sp-hero__note { font-size: 12.5px; color: #9A9DAC; margin: 0; }

.sp-hero__visual { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; }
.sp-hero__doc-wrap { position: relative; padding-bottom: 46px; }
.sp-hero__doc {
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	box-shadow: 0 20px 44px rgba(15,14,23,.1);
	padding: 14px;
}
.sp-hero__doc-bar { display: flex; gap: 5px; margin-bottom: 12px; }
.sp-hero__doc-bar span { width: 8px; height: 8px; border-radius: 50%; background: #E4E2EE; }
.sp-hero__doc-body { display: flex; flex-direction: column; gap: 9px; }
.sp-hero__doc-title { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0 0 4px; }
.sp-hero__doc-line { display: block; height: 8px; border-radius: 4px; background: #F1F0F5; }

.sp-hero__connector { width: 60px; height: 100%; min-height: 220px; overflow: visible; }
.sp-hero__targets { display: grid; gap: 14px; }
.sp-hero__target {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 12px;
	padding: 10px 14px;
	box-shadow: 0 10px 24px rgba(15,14,23,.06);
}
.sp-hero__target img { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.sp-hero__target strong { display: block; font-size: 13.5px; color: #0F0E17; }
.sp-hero__target span span { font-size: 11.5px; color: #9A9DAC; }

.sp-hero__caption {
	position: absolute;
	left: 6px;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-size: 12.5px;
	line-height: 130%;
	color: #75798C;
	max-width: 160px;
}
.sp-hero__caption svg { width: 26px; height: 26px; flex-shrink: 0; color: #C7C5D9; }

/* the problem */
.sp-problem { background: #FFF; padding: clamp(56px, 6vw, 80px) 0; }
.sp-problem__grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sp-problem__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.sp-problem__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 20px; }
.sp-problem__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.sp-problem__cols p { font-size: 14.5px; line-height: 172%; color: #5C5F72; margin: 0; }
.sp-problem__card { background: #F5F5FA; border: solid 1px #ECEAF7; border-radius: 14px; padding: 22px; }
.sp-problem__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #DCEBFE;
	color: #2563EB;
	margin-bottom: 14px;
}
.sp-problem__card-icon svg { width: 18px; height: 18px; }
.sp-problem__card h3 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.sp-problem__card p { font-size: 13.5px; line-height: 165%; color: #5C5F72; margin: 0; }

/* comparison table */
.sp-compare { background: #FFF; padding: 0 0 clamp(56px, 6vw, 80px); }
.sp-compare__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.sp-compare__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 10px; }
.sp-compare__subtitle { font-size: 14.5px; color: #5C5F72; margin: 0 0 28px; }

.sp-table { border: solid 1px #ECEAF7; border-radius: 14px; overflow: hidden; }
.sp-table__row { display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); align-items: center; }
.sp-table__row:not(:last-child) { border-bottom: solid 1px #ECEAF7; }
.sp-table__row--head { background: #F9F8FC; font-size: 13px; font-weight: 700; color: #0F0E17; }
.sp-table__row--head span { padding: 14px 18px; }
.sp-table__label { padding: 13px 18px; font-size: 13.5px; color: #3A3D4D; }
.sp-table__cell { padding: 13px 18px; text-align: center; color: #C7C5D9; }
.sp-table__cell svg { width: 17px; height: 17px; color: #16A34A; }
.sp-table__col--highlight { background: #F5F3FF; color: #6D5EF5; font-weight: 700; }

/* key features */
.sp-features { background: #F9F8FC; padding: clamp(48px, 5vw, 64px) 0; }
.sp-features__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 24px;
}
.sp-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-feature__icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; margin-bottom: 14px; }
.sp-feature__icon svg { width: 18px; height: 18px; }
.sp-feature__icon--blue { background: #DCEBFE; color: #2563EB; }
.sp-feature__icon--green { background: #DCFCE7; color: #16A34A; }
.sp-feature__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.sp-feature h3 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.sp-feature p { font-size: 13.5px; line-height: 165%; color: #5C5F72; margin: 0; }

/* testimonial */
.sp-testimonial { background: #FFF; padding: clamp(48px, 5vw, 64px) 0; }
.sp-testimonial__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 24px;
}
.sp-testimonial__card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	background: #F5F5FA;
	border: solid 1px #ECEAF7;
	border-radius: 16px;
	padding: 28px;
}
.sp-testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.sp-testimonial__quote { font-size: 16px; line-height: 155%; color: #0F0E17; margin: 0 0 12px; }
.sp-testimonial__name { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0; }
.sp-testimonial__role { font-size: 12.5px; color: #75798C; margin: 0; }
.sp-testimonial__aside { text-align: right; border-left: solid 1px #ECEAF7; padding-left: 24px; max-width: 160px; }
.sp-testimonial__stars { color: #F97316; font-size: 15px; display: block; margin-bottom: 8px; }
.sp-testimonial__aside p { font-size: 13px; font-style: italic; color: #5C5F72; margin: 0; }

/* final CTA */
.sp-final { background: #F5F5FA; padding: clamp(40px, 4.5vw, 56px) 0; }
.sp-final__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.sp-final__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 8px;
}
.sp-final__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(20px, 2.2vw, 26px); color: #0F0E17; margin: 0 0 6px; }
.sp-final__subtitle { font-size: 14px; color: #5C5F72; margin: 0; max-width: 30em; }
.sp-final__buttons { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.sp-final__actions { text-align: center; }

@media (max-width:900px) {
	.sp-hero__grid { grid-template-columns: 1fr; }
	.sp-hero__visual { display: none; }
	.sp-problem__grid { grid-template-columns: 1fr; }
	.sp-problem__cols { grid-template-columns: 1fr; }
	.sp-features__grid { grid-template-columns: 1fr; }
	.sp-testimonial__card { grid-template-columns: 1fr; text-align: center; }
	.sp-testimonial__aside { border-left: none; border-top: solid 1px #ECEAF7; padding: 16px 0 0; max-width: none; text-align: center; }
	.sp-final__inner { flex-direction: column; text-align: center; }
}
@media (max-width:600px) {
	.sp-table { overflow-x: auto; }
	.sp-table__row { grid-template-columns: 1.6fr repeat(4, 100px); min-width: 640px; }
}

/* Secao: GEO Guide (page-geo.php) */
.geo-hero__visual { width: 460px; flex-shrink: 0; }
.geo-hero__stack {
	position: absolute;
	left: -14px;
	top: -14px;
	right: 14px;
	bottom: 32px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	z-index: 0;
}
.geo-hero__doc { position: relative; z-index: 1; }
.geo-hero__doc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 6px auto 14px;
	border-radius: 50%;
	background: #DCEBFE;
	color: #2563EB;
}
.geo-hero__doc-icon svg { width: 20px; height: 20px; }

.sp-hero__note a { color: #6D5EF5; text-decoration: none; font-weight: 600; }
.sp-hero__note a:hover { text-decoration: underline; }

.geo-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 32px; }
.geo-compare__card { background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 14px; padding: 20px; }
.geo-compare__icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; margin-bottom: 12px; }
.geo-compare__icon svg { width: 16px; height: 16px; }
.geo-compare__icon--blue { background: #DCEBFE; color: #2563EB; }
.geo-compare__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.geo-compare__card h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 4px; }
.geo-compare__card > p { font-size: 13px; color: #5C5F72; margin: 0 0 12px; }
.geo-compare__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.geo-compare__card li { position: relative; padding-left: 18px; font-size: 13px; color: #3A3D4D; }
.geo-compare__card li::before { content: '\2022'; position: absolute; left: 2px; color: #6D5EF5; }

.geo-features__grid { margin: 20px 0 32px; }

.geo-table { margin-bottom: 32px; }
.geo-table .sp-table__row { grid-template-columns: 1fr 1.4fr 1.4fr; }
.geo-table__cell { padding: 13px 18px; font-size: 13.5px; color: #5C5F72; }
.geo-table__cell--highlight { background: #F5F3FF; color: #0F0E17; font-weight: 600; }

@media (max-width:900px) {
	.legal-hero__art, .geo-hero__visual { display: none; }
	.geo-compare { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
	.geo-table { overflow-x: auto; }
	.geo-table .sp-table__row { grid-template-columns: 130px 220px 220px; min-width: 570px; }
}

/* Secao: AEO Guide (page-aeo.php) */
.aeo-hero__visual { width: 480px; flex-shrink: 0; }
.aeo-hero__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(15,14,23,.06);
	padding: 12px 16px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #0F0E17;
}
.aeo-hero__search svg { width: 16px; height: 16px; color: #9A9DAC; flex-shrink: 0; }
.aeo-hero__doc-head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.aeo-hero__doc-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 26px; height: 26px; }
.aeo-hero__doc-icon img { width: 100%; height: 100%; border-radius: 7px; }
.aeo-hero__doc-head p { font-size: 12px; line-height: 155%; color: #3A3D4D; margin: 0; }

.aeo-engines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 20px 0 32px; }
.aeo-engine { background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 14px; padding: 20px; }
.aeo-engine__icon { display: flex; margin-bottom: 12px; }
.aeo-engine__icon img { width: 40px; height: 40px; border-radius: 10px; }
.aeo-engine h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 6px; }
.aeo-engine p { font-size: 13px; line-height: 160%; color: #5C5F72; margin: 0; }

@media (max-width:900px) {
	.aeo-hero__visual { display: none; }
	.aeo-engines { grid-template-columns: 1fr; }
}

/* Secao: AI Search Engine Optimization Guide (page-ai-seo.php) */
.aiseo-features__grid { grid-template-columns: repeat(5, 1fr); }

.aiseo-fail { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: start; margin: 16px 0 32px; }
.aiseo-fail__copy p { font-size: 15px; line-height: 172%; color: #5C5F72; margin: 0 0 16px; }
.aiseo-blockers { background: #FEF2F2; border: solid 1px #FECACA; border-radius: 14px; padding: 20px; }
.aiseo-blockers__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #FEE2E2;
	color: #EF4444;
	margin-bottom: 12px;
}
.aiseo-blockers__icon svg { width: 17px; height: 17px; }
.aiseo-blockers h4 { font-size: 14px; font-weight: 700; color: #B91C1C; margin: 0 0 12px; }
.aiseo-blockers ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.aiseo-blockers li { position: relative; padding-left: 22px; font-size: 13px; color: #7F1D1D; line-height: 145%; }
.aiseo-blockers li::before { content: '\2715'; position: absolute; left: 0; top: 0; color: #EF4444; font-size: 11px; font-weight: 700; }

.aiseo-checklist { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 20px 0 32px; }
.aiseo-checklist__item { min-width: 0; }
.aiseo-checklist__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #DCEBFE;
	color: #2563EB;
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: 13px;
	margin-bottom: 12px;
}
.aiseo-checklist__item h4 { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0 0 6px; }
.aiseo-checklist__item p { font-size: 12.5px; line-height: 158%; color: #5C5F72; margin: 0; }

@media (max-width:900px) {
	.aiseo-fail { grid-template-columns: 1fr; }
	.aiseo-checklist { grid-template-columns: repeat(2, 1fr); }
	.aiseo-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:600px) {
	.aiseo-checklist { grid-template-columns: 1fr; }
	.aiseo-features__grid { grid-template-columns: 1fr; }
}

/* Secao: FAQ (page-faq.php) */
.faq-hero { background: #F1F3FB; padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px); }
.faq-hero__eyebrow {
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 20px;
}
.faq-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.faq-hero__copy { max-width: 560px; }
.faq-hero__title {
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 114%;
	letter-spacing: -.01em;
	color: #0F0E17;
	margin: 0 0 16px;
}
.faq-hero__subtitle { font-size: clamp(14px, 1.4vw, 16px); line-height: 160%; color: #5C5F72; margin: 0 0 26px; }

.faq-hero__art { position: relative; flex-shrink: 0; width: 220px; height: 190px; }
.faq-hero__bubble {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	box-shadow: 0 16px 36px rgba(15,14,23,.1);
}
.faq-hero__bubble--main {
	left: 0;
	top: 0;
	width: 130px;
	height: 108px;
	border-radius: 24px 24px 24px 4px;
	color: #2563EB;
}
.faq-hero__bubble--main svg { width: 48px; height: 48px; }
.faq-hero__bubble--small {
	right: 0;
	top: 76px;
	width: 78px;
	height: 56px;
	border-radius: 18px 18px 4px 18px;
	gap: 4px;
}
.faq-hero__bubble--small span { width: 6px; height: 6px; border-radius: 50%; background: #C7C5D9; }
.faq-hero__caption {
	position: absolute;
	left: 6px;
	bottom: -8px;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-size: 12.5px;
	line-height: 130%;
	color: #75798C;
	max-width: 150px;
}
.faq-hero__caption svg { width: 26px; height: 26px; flex-shrink: 0; color: #C7C5D9; }

.faq-list-section { background: #FFF; padding: clamp(40px, 5vw, 60px) 0; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: solid 1px #ECEAF7; border-radius: 14px; overflow: hidden; background: #FFF; }
.faq-item.is-open { background: #F9F8FC; border-color: #E6E4F7; }
.faq-item__question {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 20px;
	cursor: pointer;
}
.faq-item__num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #EDE9FE;
	color: #6D5EF5;
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: 13px;
}
.faq-item__text { flex: 1; font-family: 'Satoshi', sans-serif; font-size: 16px; font-weight: 700; color: #0F0E17; }
.faq-item__question svg { width: 18px; height: 18px; color: #9A9DAC; flex-shrink: 0; transition: transform .2s ease; }
.faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item__answer p { margin: 0; padding: 0 20px 20px 66px; font-size: 14.5px; line-height: 170%; color: #5C5F72; }
.faq-item.is-open .faq-item__answer { max-height: 260px; }

@media (max-width:900px) {
	.faq-hero__inner { flex-direction: column; text-align: center; }
	.faq-hero__copy { max-width: none; }
	.faq-hero__art { display: none; }
}
@media (max-width:600px) {
	.faq-item__answer p { padding-left: 20px; }
}

/* Secao: LLMPress vs Yoast SEO (page-vs-yoast.php) */
.vy-hero__visual { flex-shrink: 0; width: 420px; }
.vy-hero__cards { position: relative; display: flex; align-items: stretch; gap: 24px; }
.vy-hero__card {
	position: relative;
	flex: 1;
	min-width: 0;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 16px;
	box-shadow: 0 16px 36px rgba(15,14,23,.08);
	padding: 20px;
	text-align: center;
}
.vy-hero__logo { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 22px; margin: 0 0 10px; }
.vy-hero__logo--yoast { color: #A4286A; }
.vy-hero__logo--llmpress { display: flex; align-items: center; justify-content: center; gap: 8px; color: #0F0E17; }
.vy-hero__logo--llmpress svg { width: 22px; height: 22px; }
.vy-hero__tagline { font-size: 13px; font-weight: 600; color: #5C5F72; line-height: 140%; margin: 0 0 14px; }
.vy-hero__badge { display: inline-flex; margin-bottom: 16px; }
.vy-hero__badge img { width: 30px; height: 30px; }
.vy-hero__logos { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.vy-hero__logos img { width: 26px; height: 26px; border-radius: 7px; }
.vy-hero__lines { display: flex; flex-direction: column; gap: 8px; }
.vy-hero__lines span { display: block; height: 7px; border-radius: 4px; background: #F1F0F5; }
.vy-hero__vs {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #FFF;
	border: solid 1px #ECEAF7;
	box-shadow: 0 6px 14px rgba(15,14,23,.1);
	font-size: 11px;
	font-weight: 800;
	color: #6D5EF5;
	z-index: 1;
}
.vy-hero__caption {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 18px 0 0;
	font-size: 12.5px;
	color: #75798C;
}
.vy-hero__caption svg { width: 16px; height: 16px; color: #C7C5D9; }
.vy-hero__caption svg:last-child { transform: scaleX(-1); }

.vy-content h2 { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 10px; border: none; padding: 0; }
.vy-content > p { font-size: 15px; color: #5C5F72; margin: 0 0 28px; }

.vy-table { border: solid 1px #ECEAF7; border-radius: 14px; overflow: hidden; margin-bottom: 32px; }
.vy-table__row { display: grid; grid-template-columns: 1.6fr 1.3fr 1.3fr 1fr; align-items: center; }
.vy-table__row:not(:last-child) { border-bottom: solid 1px #ECEAF7; }
.vy-table__row--head { font-size: 13px; font-weight: 700; color: #0F0E17; }
.vy-table__row--head span { padding: 14px 18px; background: #F9F8FC; }
.vy-table__row--head .vy-table__col--yoast { background: #FDF0F3; color: #A4286A; }
.vy-table__row--head .vy-table__col--llm { background: #EEF1FF; color: #4C3FD7; }
.vy-table__label { padding: 14px 18px; display: flex; flex-direction: column; gap: 3px; }
.vy-table__label strong { font-size: 14px; color: #0F0E17; }
.vy-table__label span { font-size: 12px; color: #9A9DAC; }
.vy-table__cell { padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
.vy-table__col--yoast { background: rgba(253,240,243,.5); }
.vy-table__col--llm { background: rgba(238,241,255,.6); }
.vy-table__status { display: flex; flex-shrink: 0; width: 22px; height: 22px; }
.vy-table__status svg { width: 100%; height: 100%; }
.vy-table__status--check { color: #16A34A; }
.vy-table__status--x { color: #EF4444; }
.vy-table__status--dash { color: #C7C5D9; }
.vy-table__text { font-size: 13px; color: #3A3D4D; line-height: 140%; }
.vy-table__text small { display: block; font-size: 11px; color: #9A9DAC; }
.vy-badge { display: inline-flex; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.vy-badge--yoast { background: #FDE4EC; color: #A4286A; }
.vy-badge--llm { background: #DCEBFE; color: #2563EB; }
.vy-badge--both { background: #F1F0F5; color: #3A3D4D; }

.vy-when { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vy-when__card { border-radius: 16px; padding: 22px; }
.vy-when__card--yoast { background: #FDF0F3; }
.vy-when__card--llm { background: #ECFDF5; }
.vy-when__card--both { background: #EEF6FF; }
.vy-when__card h4 { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 16px; }
.vy-when__card h4 img { width: 20px; height: 20px; }
.vy-when__card h4 svg { width: 20px; height: 20px; color: #16A34A; }
.vy-when__card--both h4 svg { color: #2563EB; }
.vy-when__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.vy-when__card li { position: relative; padding-left: 22px; font-size: 13.5px; line-height: 155%; color: #3A3D4D; }
.vy-when__card li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-weight: 700; }
.vy-when__card--yoast li::before { color: #D6497A; }
.vy-when__card--llm li::before { color: #16A34A; }
.vy-when__card--both li::before { color: #2563EB; }

@media (max-width:900px) {
	.legal-hero__inner { flex-direction: column; }
	.vy-hero__visual { width: 100%; }
	.vy-table { overflow-x: auto; }
	.vy-table__row { grid-template-columns: 1.4fr 1fr 1fr 90px; min-width: 620px; }
	.vy-when { grid-template-columns: 1fr; }
}

/* Secao: LLMPress vs Clearscope (page-vs-clearscope.php) */
.vc-hero__visual { width: 460px; }
.vc-hero__card { text-align: left; }
.vc-hero__logo--cs { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 22px; color: #1F2937; margin: 0 0 10px; }
.vc-hero__lines-top { margin-bottom: 14px; }
.vc-hero__score { display: flex; align-items: center; gap: 14px; }
.vc-hero__score-ring {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: solid 3px #16A34A;
	color: #16A34A;
	font-family: 'Satoshi', sans-serif;
	font-weight: 800;
	font-size: 15px;
}
.vc-hero__meters { flex: 1; display: grid; gap: 8px; }
.vc-hero__meter { display: block; }
.vc-hero__meter small { display: block; font-size: 10px; color: #9A9DAC; margin-bottom: 3px; }
.vc-hero__meter i { display: block; height: 5px; border-radius: 3px; }
.vc-hero__floating {
	position: absolute;
	right: -14px;
	bottom: -18px;
	display: grid;
	gap: 6px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(15,14,23,.1);
	padding: 8px;
}
.vc-hero__floating span { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: #0F0E17; white-space: nowrap; }
.vc-hero__floating img { width: 16px; height: 16px; border-radius: 4px; }

.vc-table__col--cs { background: rgba(219,234,254,.4); }
.vc-table__col--llm { background: rgba(220,252,231,.5); }
.vy-table__row--head .vc-table__col--cs { background: #EFF6FF; color: #2563EB; }
.vy-table__row--head .vc-table__col--llm { background: #F0FDF4; color: #16A34A; }
.vc-badge { display: inline-flex; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.vc-badge--cs { background: #DBEAFE; color: #2563EB; }
.vc-badge--llm { background: #DCFCE7; color: #16A34A; }
.vc-badge--diff { background: #F1F0F5; color: #3A3D4D; }

.vc-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0 40px; }
.vc-tool { border-radius: 16px; padding: 26px; background: #EFF6FF; }
.vc-tool--llm { background: #F0FDF4; }
.vc-tool__logo { margin: 0 0 6px; }
.vc-tool__label { font-size: 13px; font-weight: 700; margin: 0 0 14px; }
.vc-tool__label--cs { color: #2563EB; }
.vc-tool__label--llm { color: #16A34A; }
.vc-tool__desc { font-size: 13.5px; line-height: 168%; color: #3A3D4D; margin: 0 0 16px; }
.vc-tool__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.vc-tool__list li { position: relative; padding-left: 22px; font-size: 13.5px; color: #3A3D4D; }
.vc-tool__list li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-weight: 700; }
.vc-tool__list--cs li::before { color: #2563EB; }
.vc-tool__list--llm li::before { color: #16A34A; }

.vc-need { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 20px 0 28px; }
.vc-need__card { border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; }
.vc-need__icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; margin-bottom: 14px; }
.vc-need__icon svg { width: 18px; height: 18px; }
.vc-need__icon--cs { background: #DBEAFE; color: #2563EB; }
.vc-need__icon--llm { background: #DCFCE7; color: #16A34A; }
.vc-need__card h4 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 14px; }
.vc-need__card ul { list-style: disc; margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.vc-need__card li { font-size: 13.5px; line-height: 155%; color: #3A3D4D; }

.vc-tip { display: flex; align-items: flex-start; gap: 14px; background: #F5F3FF; border: solid 1px #E9E4FB; border-radius: 14px; padding: 18px 22px; }
.vc-tip__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: #EDE9FE; color: #6D5EF5; }
.vc-tip__icon svg { width: 15px; height: 15px; }
.vc-tip p { margin: 0; font-size: 13.5px; line-height: 160%; color: #4C3FD7; }
.vc-tip strong { color: #4C3FD7; }

@media (max-width:900px) {
	.vc-hero__visual { width: 100%; }
	.vc-table { overflow-x: auto; }
	.vc-tools { grid-template-columns: 1fr; }
	.vc-need { grid-template-columns: 1fr; }
}

/* Secao: LLMPress vs Rank Math (page-vs-rankmath.php) */
.vr-hero__logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 20px; color: #0F0E17; margin: 0 0 10px; }
.vr-hero__logo svg { width: 20px; height: 20px; color: #6D5EF5; }
.vr-hero__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; text-align: left; }
.vr-hero__list li { position: relative; padding-left: 22px; font-size: 12.5px; color: #3A3D4D; }
.vr-hero__list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #16A34A; font-weight: 700; }
.vr-hero__targets { display: grid; gap: 8px; margin-bottom: 14px; }
.vr-hero__targets span { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #0F0E17; background: #F9F8FC; border-radius: 8px; padding: 7px 10px; }
.vr-hero__targets img { width: 20px; height: 20px; border-radius: 6px; }

.vr-table__col--rm { background: rgba(237,233,254,.5); }
.vr-table__col--llm { background: rgba(219,234,254,.4); }
.vy-table__row--head .vr-table__col--rm { background: #F5F3FF; color: #6D5EF5; }
.vy-table__row--head .vr-table__col--llm { background: #EFF6FF; color: #2563EB; }
.vr-badge { display: inline-flex; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.vr-badge--rm { background: #EDE9FE; color: #6D5EF5; }
.vr-badge--llm { background: #DBEAFE; color: #2563EB; }
.vr-badge--both { background: #F1F0F5; color: #3A3D4D; }

.vr-strength__logo { display: flex; align-items: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 17px; color: #0F0E17; margin: 0 0 6px; }
.vr-strength__logo svg { width: 20px; height: 20px; }
.vr-strength--rm { background: #F5F3FF; }
.vr-strength--rm .vr-strength__logo svg { color: #6D5EF5; }
.vr-strength--llm { background: #EFF6FF; }
.vr-strength__list--rm li::before { color: #6D5EF5; }
.vr-strength__list--llm li::before { color: #2563EB; }

.vr-need__icon--rm { background: #F1F0F5; }
.vr-need__icon--rm img { width: 20px; height: 20px; }
.vr-need__icon--llm { background: #EDE9FE; color: #6D5EF5; }
.vr-need__icon--llm svg { width: 18px; height: 18px; }

.vr-tip { background: #F0FDF4; border-color: #DCFCE7; }
.vr-tip__icon { background: #DCFCE7; color: #16A34A; }
.vr-tip p, .vr-tip strong { color: #15803D; }

@media (max-width:900px) {
	.vr-table { overflow-x: auto; }
}

/* Secao: LLMPress vs Surfer SEO (page-vs-surfer.php) */
.vsf-hero__logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: .02em; color: #EA580C; margin: 0 0 10px; }
.vsf-hero__logo-icon { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 7px; background: #FFEDD5; color: #EA580C; }
.vsf-hero__logo-icon svg { width: 14px; height: 14px; }
.vsf-hero__score-ring { border-color: #EA580C; color: #EA580C; }
.vsf-hero__checks { display: grid; gap: 8px; }
.vsf-hero__checks span { position: relative; padding-left: 20px; font-size: 11.5px; color: #3A3D4D; }
.vsf-hero__checks span::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #16A34A; font-weight: 700; font-size: 12px; }

.vsf-table__col--sf { background: rgba(254,242,242,.6); }
.vy-table__row--head .vsf-table__col--sf { background: #FEF2F2; color: #DC2626; }

.vsf-tool { background: #FEF2F2; }
.vsf-tool__logo { justify-content: flex-start; }
.vsf-tool__label { color: #DC2626; }
.vsf-tool__list li::before { color: #DC2626; }

.vsf-steps { display: flex; align-items: stretch; gap: 16px; margin: 20px 0 32px; }
.vsf-step { flex: 1; min-width: 0; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 14px; padding: 20px; }
.vsf-step__icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; margin-bottom: 14px; }
.vsf-step__icon svg { width: 18px; height: 18px; }
.vsf-step__icon img { width: 20px; height: 20px; }
.vsf-step__icon--1 { background: #DBEAFE; color: #2563EB; }
.vsf-step__icon--2 { background: #EDE9FE; }
.vsf-step__icon--3 { background: #F1F0F5; color: #0F0E17; }
.vsf-step h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.vsf-step p { font-size: 13px; line-height: 158%; color: #5C5F72; margin: 0; }
.vsf-step__arrow { flex-shrink: 0; align-self: center; width: 20px; height: 20px; color: #C7C5D9; }

@media (max-width:900px) {
	.vsf-table { overflow-x: auto; }
	.vsf-steps { flex-direction: column; }
	.vsf-step__arrow { transform: rotate(90deg); align-self: center; }
}

/* Secao: LLMPress vs MarketMuse (page-vs-marketmuse.php) */
.mm-hero__logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 19px; color: #2563EB; margin: 0 0 10px; }
.mm-hero__logo svg { width: 18px; height: 18px; color: #6D5EF5; }
.mm-tool__logo { justify-content: flex-start; font-size: 17px; color: #0F0E17; }
.mm-tool__logo svg { color: #6D5EF5; }

.mm-hero__score { margin: 14px 0; text-align: left; }
.mm-hero__score-label { display: block; font-size: 11px; color: #9A9DAC; margin-bottom: 6px; }
.mm-hero__scorebar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.mm-hero__scorebar span { display: block; height: 100%; }
.mm-hero__score-num { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 15px; color: #0F0E17; }

/* Secao: LLMPress vs Outranking (page-vs-outranking.php) */
.vo-hero__logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 19px; color: #0F0E17; margin: 0 0 10px; }
.vo-hero__logo-icon { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg,#6D5EF5,#EC4899); color: #FFF; }
.vo-hero__logo-icon svg { width: 15px; height: 15px; }
.vo-hero__list { margin-top: 14px; }
.vo-tool__logo { justify-content: flex-start; }
.vo-tool__label { color: #6D5EF5; }
.vo-tool__list li::before { color: #6D5EF5; }

.vo-table__col--or { background: rgba(237,233,254,.5); }
.vy-table__row--head .vo-table__col--or { background: #F5F3FF; color: #6D5EF5; display: flex; align-items: center; gap: 6px; }
.vy-table__row--head .vo-table__col--or svg { width: 14px; height: 14px; }
.vo-badge { display: inline-flex; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.vo-badge--or { background: #EDE9FE; color: #6D5EF5; }
.vo-badge--llm { background: #DBEAFE; color: #2563EB; }
.vo-badge--diff { background: #F1F0F5; color: #3A3D4D; }

.vo-need__icon--or { background: #EDE9FE; color: #6D5EF5; }
.vo-need__icon--or svg { width: 18px; height: 18px; }

@media (max-width:900px) {
	.vo-table { overflow-x: auto; }
}

/* Secao: LLMPress vs NeuronWriter (page-vs-neuronwriter.php) */
.nw-hero__logo { display: flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: .01em; color: #2563EB; margin: 0 0 10px; }
.nw-hero__logo svg { width: 16px; height: 16px; color: #6D5EF5; }
.nw-tool__logo { justify-content: flex-start; }
.nw-hero__list { margin-top: 14px; }
.vc-tool__label--nw { color: #2563EB; margin-bottom: 2px; }
.vc-tool__label--sub { color: #75798C; font-size: 13px; font-weight: 400; margin-top: 0; }

/* Secao: LLMPress vs Frase (page-vs-frase.php) */
.frase-hero__logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 22px; color: #0F0E17; margin: 0 0 10px; }
.frase-hero__logo-icon { display: grid; grid-template-columns: repeat(2, 6px); grid-template-rows: repeat(2, 6px); gap: 2px; }
.frase-hero__logo-icon span:nth-child(1) { background: #16A34A; }
.frase-hero__logo-icon span:nth-child(2) { background: #F97316; }
.frase-hero__logo-icon span:nth-child(3) { background: #EF4444; }
.frase-hero__logo-icon span:nth-child(4) { background: #14B8A6; }
.frase-hero__logo-icon span { display: block; border-radius: 1px; }
.frase-hero__list { margin-top: 14px; }
.frase-tool__logo { justify-content: flex-start; }

/* Secao: For Bloggers (page-for-bloggers.php) */
.fb-hero { background: #F9F8FC; padding: clamp(48px, 6vw, 72px) 0; overflow: hidden; }
.fb-hero__visual { position: relative; flex-shrink: 0; width: 460px; }
.fb-hero__doc {
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	box-shadow: 0 20px 44px rgba(15,14,23,.08);
	padding: 20px;
}
.fb-hero__doc-title { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 15px; color: #0F0E17; margin: 0 0 12px; }
.fb-hero__doc .sp-hero__doc-line { margin-bottom: 9px; }
.fb-hero__quotes { display: grid; gap: 10px; margin-top: 16px; }
.fb-hero__quote {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 10px;
	padding: 10px 14px;
	box-shadow: 0 8px 20px rgba(15,14,23,.05);
}
.fb-hero__quote img { width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0; }
.fb-hero__quote strong { display: block; font-size: 13px; color: #0F0E17; margin-bottom: 2px; }
.fb-hero__quote span span { font-size: 11.5px; color: #75798C; line-height: 140%; }

.fb-section { background: #FFF; padding: clamp(48px, 5.5vw, 72px) 0; }
.fb-section--alt { background: #F9F8FC; }
.fb-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.fb-section__grid--rev { grid-template-columns: 1fr 1fr; }
.fb-section__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.fb-section__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 14px; }
.fb-section__desc { font-size: 14.5px; line-height: 172%; color: #5C5F72; margin: 0; }
.fb-section__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 600; color: #0F0E17; text-decoration: none; }
.fb-section__link svg { width: 16px; height: 16px; }
.fb-section__link:hover { color: #6D5EF5; }

.fb-problem { position: relative; display: flex; align-items: center; justify-content: center; min-height: 220px; }
.fb-problem__mock { width: 260px; background: #F5F5FA; border: solid 1px #ECEAF7; border-radius: 12px; padding: 14px; filter: blur(.4px); opacity: .8; }
.fb-problem__main { height: 60px; background: #E9E7F2; border-radius: 8px; margin-bottom: 8px; }
.fb-problem__side { height: 24px; width: 70%; background: #E9E7F2; border-radius: 6px; }
.fb-blocker {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 6px;
	background: #FEF2F2;
	color: #B91C1C;
	border: solid 1px #FECACA;
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
}
.fb-blocker::before { content: '\2715'; display: flex; align-items: center; justify-content: center; width: 15px; height: 15px; border-radius: 50%; background: #FEE2E2; font-size: 9px; }
.fb-blocker--left { left: 0; }
.fb-blocker--right { right: 0; }

.fb-solution { position: relative; padding-bottom: 40px; }
.fb-solution__mock {
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 14px;
	box-shadow: 0 20px 44px rgba(15,14,23,.08);
	padding: 18px;
	margin-bottom: 14px;
}
.fb-solution__title { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 16px; color: #0F0E17; margin: 0 0 12px; }
.fb-solution__mock .sp-hero__doc-line { margin-bottom: 9px; }
.fb-solution__checks { list-style: none; margin: 0; padding: 16px 18px; background: #F0FDF4; border: solid 1px #DCFCE7; border-radius: 12px; display: grid; gap: 9px; }
.fb-solution__checks li { position: relative; padding-left: 22px; font-size: 13.5px; color: #15803D; }
.fb-solution__checks li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #16A34A; font-weight: 700; }
.fb-solution__caption { position: absolute; left: 6px; bottom: 0; display: flex; align-items: flex-end; gap: 6px; font-size: 12.5px; line-height: 130%; color: #75798C; }
.fb-solution__caption svg { width: 24px; height: 24px; flex-shrink: 0; color: #C7C5D9; }

.fb-plans-section { background: #FFF; padding: clamp(48px, 5.5vw, 72px) 0; }
.fb-plans-section__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.fb-testimonial { margin-top: clamp(32px, 4vw, 44px); }
.fb-testimonial__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6D5EF5;
	margin: 0 0 14px;
}
.fb-testimonial__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); color: #0F0E17; margin: 0 0 20px; }
.fb-testimonial__card { display: flex; align-items: flex-start; gap: 16px; }
.fb-testimonial__card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.fb-testimonial__quote { font-size: 14.5px; line-height: 168%; color: #3A3D4D; margin: 0 0 10px; font-style: italic; }
.fb-testimonial__name { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0; }
.fb-testimonial__role { font-size: 12.5px; color: #75798C; margin: 0; }

.fb-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fb-plan { border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.fb-plan h4 { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 18px; color: #0F0E17; margin: 0 0 4px; }
.fb-plan__tagline { font-size: 12.5px; color: #75798C; margin: 0 0 18px; }
.fb-plan__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; flex: 1; }
.fb-plan__list li { position: relative; padding-left: 22px; font-size: 13px; color: #3A3D4D; line-height: 140%; }
.fb-plan__list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #16A34A; font-weight: 700; }
.fb-plan__pill { display: block; text-align: center; font-size: 13px; font-weight: 700; padding: 9px 0; border-radius: 999px; text-decoration: none; }
.fb-plan__pill--free { background: #DCFCE7; color: #16A34A; }
.fb-plan__pill--pro { background: #DBEAFE; color: #2563EB; }
.fb-plan__more { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: #6D5EF5; text-decoration: none; }
.fb-plan__more svg { width: 14px; height: 14px; }

@media (max-width:900px) {
	.legal-hero__inner { flex-direction: column; }
	.fb-hero__visual { width: 100%; }
	.fb-section__grid, .fb-section__grid--rev { grid-template-columns: 1fr; }
	.fb-section__grid--rev { display: flex; flex-direction: column-reverse; }
	.fb-plans-section__grid { grid-template-columns: 1fr; }
	.fb-plans { grid-template-columns: 1fr; }
	.fb-blocker { position: static; display: inline-flex; margin: 4px; }
	.fb-problem { flex-wrap: wrap; gap: 20px; flex-direction: column; }
}

/* Secao: For WooCommerce (page-for-woocommerce.php) */
.wc-hero__visual { position: relative; flex-shrink: 0; width: 460px; }
.wc-hero__caption--top {
	position: absolute;
	left: 0;
	top: -46px;
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 12.5px;
	line-height: 130%;
	color: #75798C;
}
.wc-hero__caption--top svg { width: 40px; height: 40px; flex-shrink: 0; color: #C7C5D9; }

.wc-card { display: flex; gap: 14px; background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; box-shadow: 0 20px 44px rgba(15,14,23,.08); padding: 18px; }
.wc-card__gallery { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.wc-card__gallery span { display: block; width: 30px; height: 30px; border-radius: 6px; background: #F1F0F5; }
.wc-card__body { flex: 1; min-width: 0; }
.wc-card__name { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 14px; color: #0F0E17; margin: 0 0 4px; }
.wc-card__stars { color: #F97316; font-size: 12px; margin: 0 0 6px; }
.wc-card__price { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 18px; color: #0F0E17; margin: 0 0 10px; }
.wc-card__btn { display: inline-block; background: #0F0E17; color: #FFF; font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 7px; margin-bottom: 12px; }
.wc-card__meta { display: flex; flex-direction: column; gap: 5px; font-size: 11px; color: #75798C; }
.wc-hero__quotes { margin-top: 16px; }

.wc-problem__mock { width: 280px; }
.wc-problem__bottle { width: 46px; height: 70px; background: #D9D6EA; border-radius: 10px; margin: 0 auto 10px; }
.wc-problem__bottle--clean { background: #0F0E17; margin: 0 0 12px; }
.wc-problem__caption { position: static; margin-top: 16px; justify-content: center; }

.wc-solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.wc-solution__mock { margin-bottom: 0; }
.wc-solution__desc { font-size: 12px; line-height: 155%; color: #5C5F72; margin: 10px 0; }
.wc-solution__table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.wc-solution__table td { padding: 5px 0; border-top: solid 1px #F1F0F5; color: #3A3D4D; }
.wc-solution__table td:first-child { color: #9A9DAC; width: 40%; }

.wc-stats { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.wc-stat { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #0F0E17; line-height: 130%; }
.wc-stat__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; }
.wc-stat__icon svg { width: 18px; height: 18px; }
.wc-stat__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.wc-stat__icon--green { background: #DCFCE7; color: #16A34A; }
.wc-stat__icon--orange { background: #FFE9DA; color: #F97316; }

.wc-testimonial { display: flex; gap: 16px; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 16px; padding: 24px; }
.wc-testimonial img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.wc-testimonial__quote { font-size: 14px; line-height: 165%; color: #3A3D4D; font-style: italic; margin: 0 0 12px; }
.wc-testimonial__name { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0; }
.wc-testimonial__role { font-size: 12.5px; color: #75798C; margin: 0 0 8px; }
.wc-testimonial__stars { color: #F97316; font-size: 14px; margin: 0; }

@media (max-width:900px) {
	.wc-hero__visual { width: 100%; margin-top: 40px; }
	.wc-solution__grid { grid-template-columns: 1fr; }
}

/* Secao: For Agencies (page-for-agencies.php) */
.ag-hero__visual { position: relative; flex-shrink: 0; width: 460px; }
.ag-hero__caption { top: -50px; }
.ag-card { background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; box-shadow: 0 20px 44px rgba(15,14,23,.08); overflow: hidden; }
.ag-card__head { padding: 12px 16px; border-bottom: solid 1px #F1F0F5; }
.ag-card__brand { display: flex; align-items: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 13px; color: #0F0E17; }
.ag-card__brand img { width: 18px; height: 18px; }
.ag-card__row { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr; align-items: center; padding: 9px 16px; font-size: 12px; color: #3A3D4D; }
.ag-card__row--head { font-weight: 700; color: #9A9DAC; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; background: #F9F8FC; }
.ag-card__row:not(.ag-card__row--head):not(:last-child) { border-bottom: solid 1px #F5F5FA; }
.ag-card__status { color: #16A34A; font-weight: 600; }
.ag-card__ready { color: #16A34A; font-weight: 700; }
.ag-hero__checklist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ag-hero__checklist span {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #FFF;
	border: solid 1px #ECEAF7;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #0F0E17;
	box-shadow: 0 6px 16px rgba(15,14,23,.05);
}
.ag-hero__checklist img { width: 16px; height: 16px; border-radius: 5px; }
.ag-hero__checklist b { color: #16A34A; }

.ag-stats-section { background: #FFF; padding: clamp(28px, 3vw, 40px) 0; border-bottom: solid 1px #ECEAF7; }
.ag-stats { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
.ag-stat { display: flex; align-items: center; gap: 12px; }
.ag-stat__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; }
.ag-stat__icon svg { width: 19px; height: 19px; }
.ag-stat__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.ag-stat__icon--green { background: #DCFCE7; color: #16A34A; }
.ag-stat__icon--orange { background: #FFE9DA; color: #F97316; }
.ag-stat__icon--blue { background: #DCEBFE; color: #2563EB; }
.ag-stat__icon--red { background: #FEE2E2; color: #EF4444; }
.ag-stat strong { display: block; font-size: 14px; font-weight: 700; color: #0F0E17; }
.ag-stat span span { font-size: 12.5px; color: #75798C; }

.ag-chat { position: relative; display: grid; gap: 12px; padding-bottom: 30px; }
.ag-chat__bubble { display: flex; align-items: center; gap: 10px; }
.ag-chat__bubble--in { justify-content: flex-start; margin-left: 30px; }
.ag-chat__bubble img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ag-chat__bubble span { background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 12px; padding: 8px 14px; font-size: 13px; color: #3A3D4D; }
.ag-chat__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-size: 12.5px;
	line-height: 130%;
	color: #75798C;
	text-align: right;
}
.ag-chat__caption svg { width: 24px; height: 24px; flex-shrink: 0; color: #C7C5D9; }

.ag-checks { margin: 18px 0; }
.ag-btn { display: inline-flex; align-items: center; gap: 8px; }
.ag-btn svg { width: 16px; height: 16px; }

.ag-stack { position: relative; display: grid; gap: 10px; padding-bottom: 34px; }
.ag-stack__item { display: flex; align-items: center; gap: 10px; background: #FFF; border: solid 1px #ECEAF7; border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 600; color: #0F0E17; }
.ag-stack__item--active { background: #EFF6FF; border-color: #BFDBFE; color: #2563EB; }
.ag-stack__check { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: #DCFCE7; color: #16A34A; font-size: 11px; font-weight: 700; }
.ag-stack__check--active { background: #DBEAFE; color: #2563EB; }
.ag-stack__caption {
	position: absolute;
	right: 10px;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-size: 12.5px;
	line-height: 130%;
	color: #75798C;
	text-align: right;
	margin: 0;
}
.ag-stack__caption svg { width: 24px; height: 24px; flex-shrink: 0; color: #C7C5D9; }

.ag-two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ag-white-label, .ag-unlimited { border-radius: 16px; padding: 26px; }
.ag-white-label { background: #F5F3FF; position: relative; }
.ag-unlimited { background: #F0FDF4; }
.ag-white-label__icon, .ag-unlimited__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	margin-bottom: 14px;
}
.ag-white-label__icon svg, .ag-unlimited__icon svg { width: 18px; height: 18px; }
.ag-white-label__icon { background: #EDE9FE; color: #6D5EF5; }
.ag-unlimited__icon { background: #DCFCE7; color: #16A34A; }
.ag-white-label__badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #6D5EF5; background: #EDE9FE; border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }
.ag-white-label h4, .ag-unlimited h4 { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 20px; color: #0F0E17; margin: 0 0 10px; }
.ag-white-label p, .ag-unlimited p { font-size: 14px; line-height: 165%; color: #3A3D4D; margin: 0 0 20px; }
.ag-notify-btn { display: inline-flex; align-items: center; gap: 8px; background: #FFF; border: solid 1px #E4E2EE; color: #0F0E17; font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 10px; text-decoration: none; }
.ag-notify-btn svg { width: 16px; height: 16px; }
.ag-unlimited__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ag-unlimited__btn { display: inline-flex; align-items: center; gap: 8px; background: #16A34A; color: #FFF; font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 10px; text-decoration: none; }
.ag-unlimited__btn svg { width: 16px; height: 16px; }
.ag-unlimited__btn:hover { background: #128038; }

.ag-trust { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: clamp(28px, 3vw, 36px); align-items: stretch; }
.ag-trust__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ag-trust__stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; padding: 18px 10px; }
.ag-trust__stat strong { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 15px; color: #0F0E17; }
.ag-trust__stat span:last-child { font-size: 11.5px; color: #75798C; }

@media (max-width:900px) {
	.ag-hero__visual { width: 100%; margin-top: 40px; }
	.ag-two-cards { grid-template-columns: 1fr; }
	.ag-trust { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
	.ag-trust__stats { grid-template-columns: 1fr; }
}

/* Secao: AI-Friendly Content guide (page-ai-friendly-content.php) */
.afc-hero__visual { flex-shrink: 0; width: 460px; }
.afc-hero__pages { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.afc-page { flex: 1; min-width: 0; background: #FFF; border: solid 1px #ECEAF7; border-radius: 12px; padding: 14px; }
.afc-page--clean { border-color: #BBF7D0; box-shadow: 0 12px 28px rgba(15,14,23,.06); }
.afc-page__label { font-size: 10.5px; font-weight: 700; color: #9A9DAC; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 10px; }
.afc-page__label--clean { color: #16A34A; }
.afc-page__thumb { display: block; height: 34px; background: #F1F0F5; border-radius: 6px; margin-bottom: 9px; }
.afc-page .sp-hero__doc-line { margin-bottom: 8px; }
.afc-page__blockers { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.afc-page__blockers li { background: #FEE2E2; color: #B91C1C; font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
.afc-hero__arrow { flex-shrink: 0; width: 20px; height: 20px; color: #C7C5D9; }
.afc-hero__targets { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; margin-bottom: 10px; }
.afc-hero__targets span { display: flex; align-items: center; gap: 6px; background: #FFF; border: solid 1px #ECEAF7; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; color: #0F0E17; box-shadow: 0 6px 16px rgba(15,14,23,.05); }
.afc-hero__targets img { width: 16px; height: 16px; border-radius: 5px; }
.afc-hero__caption { display: flex; align-items: flex-end; justify-content: flex-end; gap: 6px; text-align: right; font-size: 12.5px; line-height: 130%; color: #75798C; margin: 0; }
.afc-hero__caption svg { width: 26px; height: 26px; flex-shrink: 0; color: #C7C5D9; }

.afc-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.afc-principles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 20px 0 32px; text-align: center; }
.afc-principle__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px; }
.afc-principle__icon svg { width: 20px; height: 20px; }
.afc-principle__icon--blue { background: #DCEBFE; color: #2563EB; }
.afc-principle__icon--green { background: #DCFCE7; color: #16A34A; }
.afc-principle__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.afc-principle__icon--orange { background: #FFE9DA; color: #F97316; }
.afc-principle__icon--red { background: #FEE2E2; color: #EF4444; }
.afc-principle h4 { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.afc-principle p { font-size: 12.5px; line-height: 155%; color: #5C5F72; margin: 0; }

.afc-flow { display: flex; align-items: center; gap: 12px; margin: 20px 0 32px; }
.afc-flow__step { flex: 1; min-width: 0; text-align: center; }
.afc-flow__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px; }
.afc-flow__icon svg { width: 20px; height: 20px; }
.afc-flow__icon--blue { background: #DCEBFE; color: #2563EB; }
.afc-flow__icon--green { background: #DCFCE7; color: #16A34A; }
.afc-flow__icon--purple { background: #EDE9FE; color: #6D5EF5; }
.afc-flow__icon--orange { background: #FFE9DA; color: #F97316; }
.afc-flow__step h4 { font-size: 14px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.afc-flow__step p { font-size: 12.5px; line-height: 155%; color: #5C5F72; margin: 0; }
.afc-flow__arrow { flex-shrink: 0; width: 18px; height: 18px; color: #C7C5D9; margin-top: -30px; }

.afc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0 32px; }
.afc-compare__card { border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; background: #F9F8FC; }
.afc-compare__card--ai { background: #F0FDF4; border-color: #DCFCE7; }
.afc-compare__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 12px; }
.afc-compare__icon svg { width: 19px; height: 19px; }
.afc-compare__icon--human { background: #DCEBFE; color: #2563EB; }
.afc-compare__icon--ai { background: #DCFCE7; color: #16A34A; }
.afc-compare__card h4 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 14px; }
.afc-compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.afc-compare__list li { position: relative; padding-left: 22px; font-size: 13.5px; color: #3A3D4D; line-height: 145%; }
.afc-compare__list li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-weight: 700; }
.afc-compare__list--blue li::before { color: #2563EB; }
.afc-compare__list--green li::before { color: #16A34A; }

@media (max-width:900px) {
	.legal-hero__inner { flex-direction: column; }
	.afc-hero__visual { width: 100%; margin-top: 30px; }
	.afc-principles { grid-template-columns: repeat(2, 1fr); }
	.afc-flow { flex-direction: column; }
	.afc-flow__arrow { transform: rotate(90deg); margin-top: 0; }
	.afc-compare { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
	.afc-principles { grid-template-columns: 1fr; }
	.afc-hero__pages { flex-direction: column; }
	.afc-hero__arrow { transform: rotate(90deg); }
}

/* Secao: Optimize for ChatGPT guide (page-optimize-chatgpt.php) */
.cg-hero__visual { flex-shrink: 0; width: 440px; }
.cg-chat { background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; box-shadow: 0 20px 44px rgba(15,14,23,.08); padding: 18px; }
.cg-chat__head { display: flex; align-items: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 15px; color: #0F0E17; margin-bottom: 14px; }
.cg-chat__head img { width: 22px; height: 22px; border-radius: 6px; }
.cg-chat__bubble { display: inline-block; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 10px; padding: 9px 14px; font-size: 13px; color: #3A3D4D; margin: 0 0 14px; }
.cg-chat__result { display: flex; gap: 10px; margin-bottom: 12px; }
.cg-chat__thumb { flex-shrink: 0; width: 56px; height: 56px; border-radius: 8px; background: linear-gradient(135deg,#93C5FD,#60A5FA); }
.cg-chat__title { font-size: 13.5px; font-weight: 700; color: #2563EB; margin: 0 0 4px; }
.cg-chat__desc { font-size: 11.5px; line-height: 145%; color: #75798C; margin: 0; }
.cg-hero__caption { display: flex; align-items: flex-start; gap: 6px; margin-top: 14px; font-size: 12.5px; line-height: 130%; color: #75798C; }
.cg-hero__caption svg { width: 26px; height: 26px; flex-shrink: 0; color: #C7C5D9; }

.cg-basics__desc { margin-bottom: 20px; }
.cg-basics__visual { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; margin-bottom: 32px; }
.cg-code { background: #FFF; border: solid 1px #ECEAF7; border-radius: 12px; padding: 14px; }
.cg-code__pre { margin: 0; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; font-size: 12px; line-height: 165%; color: #4B4E60; white-space: pre-wrap; }
.cg-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.cg-checklist li { position: relative; padding-left: 24px; font-size: 13.5px; color: #3A3D4D; }
.cg-checklist li::before { position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cg-checklist--yes::before { content: '\2713'; background: #DCFCE7; color: #16A34A; }
.cg-checklist--no::before { content: '\2715'; background: #FEE2E2; color: #EF4444; }

.cg-problem { min-height: 200px; margin: 16px 0 28px; }

.cg-blockers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 0 0 32px; }
.cg-blocker { border: solid 1px #ECEAF7; border-radius: 12px; padding: 18px 14px; text-align: center; }
.cg-blocker__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: #0F0E17; margin-bottom: 12px; }
.cg-blocker__icon svg { width: 24px; height: 24px; }
.cg-blocker__x { position: absolute; right: -4px; bottom: -2px; display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: #EF4444; color: #FFF; font-size: 9px; }
.cg-blocker p { font-size: 12.5px; font-weight: 600; color: #0F0E17; line-height: 140%; margin: 0; }

.cg-steps { display: flex; align-items: flex-start; gap: 14px; margin: 20px 0 32px; }
.cg-step { flex: 1; min-width: 0; text-align: center; }
.cg-step__icon { position: relative; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #DCEBFE; color: #2563EB; margin: 0 auto 14px; }
.cg-step__icon svg { width: 22px; height: 22px; }
.cg-step__icon img { width: 22px; height: 22px; }
.cg-step__icon b {
	position: absolute;
	top: -4px;
	right: -4px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #2563EB;
	color: #FFF;
	font-size: 11px;
	font-weight: 700;
	border: solid 2px #FFF;
}
.cg-step h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.cg-step p { font-size: 12.5px; line-height: 155%; color: #5C5F72; margin: 0; }
.cg-step__arrow { margin-top: 16px; }

.cg-verify { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.cg-search { background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; box-shadow: 0 16px 36px rgba(15,14,23,.08); padding: 18px; }
.cg-search__head { display: flex; align-items: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 14px; color: #0F0E17; margin-bottom: 12px; }
.cg-search__head img { width: 20px; height: 20px; border-radius: 6px; }
.cg-search__bar { display: flex; align-items: center; gap: 10px; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 999px; padding: 6px 6px 6px 16px; }
.cg-search__bar span:first-child { flex: 1; font-size: 12.5px; color: #5C5F72; }
.cg-search__btn { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: #0F0E17; }
.cg-search__btn svg { width: 15px; height: 15px; }
.cg-verify__note { font-size: 12.5px; color: #75798C; margin: 12px 0 0; text-align: center; }

.cg-final__eyebrow { display: flex; align-items: center; gap: 8px; }
.cg-final__eyebrow svg { width: 18px; height: 18px; color: #6D5EF5; }

@media (max-width:900px) {
	.legal-hero__inner { flex-direction: column; }
	.cg-hero__visual { width: 100%; margin-top: 30px; }
	.cg-basics__visual { grid-template-columns: 1fr; }
	.cg-blockers { grid-template-columns: repeat(2, 1fr); }
	.cg-steps { flex-direction: column; }
	.cg-step__arrow { display: none; }
	.cg-verify { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
	.cg-blockers { grid-template-columns: 1fr; }
}

/* Secao: Optimize for Perplexity guide (page-optimize-perplexity.php) */
.px-hero__visual { position: relative; flex-shrink: 0; width: 440px; }
.px-hero__caption { display: flex; align-items: flex-start; gap: 6px; font-size: 12.5px; line-height: 130%; color: #75798C; margin: 0; }
.px-hero__caption svg { width: 30px; height: 30px; flex-shrink: 0; color: #C7C5D9; }
.px-hero__caption--top { position: absolute; right: 0; top: -46px; text-align: right; flex-direction: row-reverse; }
.px-hero__caption--bottom { position: absolute; right: -6px; bottom: -46px; color: #16A34A; font-weight: 600; }
.px-hero__caption--bottom svg { color: #86EFAC; }

.px-card { background: #FFF; border: solid 1px #ECEAF7; border-radius: 14px; box-shadow: 0 20px 44px rgba(15,14,23,.08); padding: 18px; }
.px-card__head { display: flex; align-items: center; gap: 8px; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 15px; color: #0F0E17; margin: 0 0 12px; }
.px-card__head img { width: 20px; height: 20px; border-radius: 6px; }
.px-card__search { display: flex; align-items: center; gap: 10px; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 999px; padding: 8px 8px 8px 14px; margin-bottom: 14px; }
.px-card__search span:first-child { flex: 1; font-size: 12px; color: #5C5F72; }
.px-card__search-btn { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: #F1F0F5; color: #75798C; flex-shrink: 0; }
.px-card__search-btn svg { width: 13px; height: 13px; }
.px-card__label { font-size: 10.5px; font-weight: 700; color: #9A9DAC; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 8px; }
.px-card__answer { font-size: 12px; line-height: 155%; color: #3A3D4D; margin: 0 0 12px; }
.px-card__results { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.px-card__results li { display: flex; align-items: center; gap: 8px; }
.px-card__num { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: #F1F0F5; color: #75798C; font-size: 9px; font-weight: 700; }
.px-card__thumb { flex-shrink: 0; width: 32px; height: 32px; border-radius: 6px; background: linear-gradient(135deg,#93C5FD,#60A5FA); }
.px-card__results strong { display: block; font-size: 11.5px; color: #0F0E17; }
.px-card__results span span { font-size: 10px; color: #9A9DAC; }
.px-card__source { display: flex; align-items: center; gap: 10px; background: #F9F8FC; border: solid 1px #ECEAF7; border-radius: 10px; padding: 10px 12px; }
.px-card__source-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: #2563EB; }
.px-card__source-icon img { width: 16px; height: 16px; }
.px-card__source strong { display: block; font-size: 12px; color: #0F0E17; }
.px-card__source span span { font-size: 11px; color: #75798C; }

.px-basics { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; margin: 16px 0 32px; }
.px-principles { grid-template-columns: repeat(3, 1fr); margin: 20px 0 0; }
.px-cited .fb-solution__mock { margin-bottom: 12px; }

.cg-blockers--6 { grid-template-columns: repeat(6, 1fr); }

.px-solution__grid { grid-template-columns: repeat(4, 1fr); margin: 20px 0; }
.px-solution__grid h4 { font-size: 14px; }

.px-compare { position: relative; display: flex; align-items: center; gap: 14px; margin: 0 0 32px; padding-bottom: 34px; }
.px-compare__page { flex: 1; min-width: 0; background: #FFF; border: solid 1px #ECEAF7; border-radius: 12px; padding: 14px; }
.px-compare__page--clean { border-color: #BBF7D0; }
.px-compare__page .sp-hero__doc-line { margin-bottom: 8px; }
.px-compare__caption { position: absolute; right: 0; bottom: 0; text-align: right; justify-content: flex-end; }

@media (max-width:900px) {
	.legal-hero__inner { flex-direction: column; }
	.px-hero__visual { width: 100%; margin-top: 40px; }
	.px-hero__caption--top, .px-hero__caption--bottom { position: static; margin-bottom: 10px; text-align: left; flex-direction: row; }
	.px-basics { grid-template-columns: 1fr; }
	.px-principles { grid-template-columns: 1fr; }
	.cg-blockers--6 { grid-template-columns: repeat(2, 1fr); }
	.px-solution__grid { grid-template-columns: repeat(2, 1fr); }
	.px-compare { flex-direction: column; }
}
@media (max-width:600px) {
	.cg-blockers--6 { grid-template-columns: 1fr; }
	.px-solution__grid { grid-template-columns: 1fr; }
}

/* Secao: Optimize for Claude guide (page-optimize-claude.php) */
.cl-hero__visual { width: 460px; }
.cl-hero__caption { color: #F97316; }
.cl-hero__caption svg { color: #FDBA74; }
.cl-card .px-card__head img { border-radius: 6px; }

.cl-final { background: #FFF7ED; }
.cl-final__eyebrow { display: flex; align-items: center; gap: 8px; color: #EA580C; }
.cl-final__eyebrow svg { width: 16px; height: 16px; color: #F97316; }

/* Secao: Optimize for Gemini & Google AI guide (page-optimize-gemini.php) */
.gm-hero__visual { width: 460px; }
.gm-hero__caption { color: #2563EB; }
.gm-hero__caption svg { color: #93C5FD; }
.gm-card .px-card__head img { border-radius: 6px; }
.gm-card__spark { width: 16px; height: 16px; color: #2563EB; flex-shrink: 0; }
.gm-card__spark--sm { width: 13px; height: 13px; }
.gm-card__answer { display: flex; align-items: flex-start; gap: 6px; }
.gm-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 32px; height: 32px; border-radius: 6px; font-size: 11px; font-weight: 700; color: #FFF; }
.gm-icon--notion { background: #0F0E17; }
.gm-icon--asana { background: linear-gradient(135deg,#F06A6A,#F5A623); }
.gm-icon--trello { background: #2563EB; }
.gm-card__source { position: relative; }
.gm-card__chevron { width: 15px; height: 15px; color: #C7C5D9; flex-shrink: 0; }
.gm-final__eyebrow { display: flex; align-items: center; gap: 8px; color: #2563EB; }
.gm-final__eyebrow svg { width: 16px; height: 16px; color: #93C5FD; }

@media (max-width:900px) {
	.gm-hero__visual { width: 100%; margin-top: 40px; }
}

/* Secao: About (page-about.php) */
.ab-values { background: #FFF; padding: clamp(40px, 4.5vw, 56px) 0 clamp(56px, 6vw, 76px); }
.ab-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; padding-bottom: clamp(36px, 4vw, 48px); border-bottom: solid 1px #ECEAF7; }
.ab-value__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #F1F0F5; color: #0F0E17; margin: 0 auto 16px; }
.ab-value__icon svg { width: 22px; height: 22px; }
.ab-value h4 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 8px; }
.ab-value p { font-size: 13.5px; line-height: 160%; color: #75798C; margin: 0; }

.ab-story { background: #FFF; padding: 0 0 clamp(56px, 6vw, 84px); }
.ab-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ab-story__visual { position: relative; border-radius: 20px; background: linear-gradient(135deg,#EDEBFB,#F7F3EE); padding: 40px 30px; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.ab-story__screen { background: #0F0E17; border-radius: 14px; padding: 30px 26px; text-align: center; box-shadow: 0 30px 60px rgba(15,14,23,.25); max-width: 260px; }
.ab-story__screen img { width: 30px; height: 30px; margin: 0 auto 12px; display: block; }
.ab-story__screen p { color: #FFF; font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 15px; line-height: 138%; margin: 0; }
.ab-story__stack { position: absolute; bottom: 22px; right: 22px; background: #FFF; border-radius: 12px; padding: 14px 16px; box-shadow: 0 12px 28px rgba(15,14,23,.12); display: grid; gap: 9px; }
.ab-story__stack span { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; color: #0F0E17; white-space: nowrap; }
.ab-story__stack span::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: #6D5EF5; flex-shrink: 0; }
.ab-story__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); color: #0F0E17; margin: 0 0 16px; }
.ab-story__text { font-size: 14.5px; line-height: 172%; color: #5C5F72; margin: 0 0 14px; }
.ab-founder { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.ab-founder__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ab-founder__name { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0; }
.ab-founder__role { font-size: 13px; color: #75798C; margin: 0; }
.ab-founder__quote { margin: 14px 0 0; padding-top: 14px; border-top: solid 1px #ECEAF7; font-size: 13.5px; font-style: italic; color: #5C5F72; }

.ab-stats { background: #F9F8FC; padding: clamp(40px, 4.5vw, 56px) 0; }
.ab-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ab-stat { display: flex; align-items: flex-start; gap: 14px; }
.ab-stat__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #FFF; border: solid 1px #ECEAF7; color: #0F0E17; }
.ab-stat__icon svg { width: 18px; height: 18px; }
.ab-stat h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 4px; }
.ab-stat p { font-size: 12.5px; line-height: 150%; color: #75798C; margin: 0; }

@media (max-width:900px) {
	.ab-values__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
	.ab-story__grid { grid-template-columns: 1fr; }
	.ab-story__visual { order: -1; }
	.ab-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width:600px) {
	.ab-values__grid { grid-template-columns: 1fr; }
	.ab-stats__grid { grid-template-columns: 1fr; }
}

/* Secao: Docs (CPT: llmp_doc) + Support (page-support.php) */
.docs-hero__search { max-width: 480px; margin-top: 8px; }
.docs-hero__search .srch-hero__form { margin-bottom: 8px; }

.docs-body { padding: clamp(40px, 5vw, 60px) 0 clamp(70px, 8vw, 100px); }
.docs-layout { display: grid; grid-template-columns: 220px 1fr; align-items: start; gap: clamp(32px, 4vw, 56px); }
.docs-layout--single { grid-template-columns: 220px 1fr 220px; }

.docs-nav { position: sticky; top: calc(var(--wpadmin-offset) + 100px); }
.docs-nav__group + .docs-nav__group { margin-top: 22px; }
.docs-nav__label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #9A9DAC; margin: 0 0 10px; }
.docs-nav__list { list-style: none; margin: 0; padding: 0; border-left: solid 1px #ECEAF7; }
.docs-nav__list a {
	display: block;
	padding: 7px 0 7px 16px;
	position: relative;
	font-size: 13.5px;
	line-height: 145%;
	color: #5C5F72;
	text-decoration: none;
}
.docs-nav__list a::before {
	content: '';
	position: absolute;
	left: -3.5px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ECEAF7;
	transition: background .2s ease;
}
.docs-nav__list a:hover { color: #4C3FD7; }
.docs-nav__list a.is-active { color: #6D5EF5; font-weight: 600; }
.docs-nav__list a.is-active::before { background: #6D5EF5; }

.docs-section-title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(18px, 2vw, 22px); color: #0F0E17; margin: 0 0 4px; }
.docs-section-sub { font-size: 13.5px; color: #75798C; margin: 0 0 20px; }

.docs-cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 clamp(36px, 4vw, 48px); }
.docs-cat { display: block; text-decoration: none; border: solid 1px #ECEAF7; border-radius: 16px; padding: 22px; transition: border-color .2s ease, box-shadow .2s ease; }
.docs-cat:hover { border-color: #D9D6EA; box-shadow: 0 12px 28px rgba(15,14,23,.06); }
.docs-cat__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: #EDE9FE; color: #6D5EF5; margin-bottom: 14px; }
.docs-cat__icon svg { width: 20px; height: 20px; }
.docs-cat h3 { font-size: 16px; font-weight: 700; color: #0F0E17; margin: 0 0 6px; }
.docs-cat p { font-size: 13px; line-height: 160%; color: #75798C; margin: 0 0 12px; }
.docs-cat__count { font-size: 12px; font-weight: 700; color: #6D5EF5; }

.docs-list { display: grid; border: solid 1px #ECEAF7; border-radius: 16px; overflow: hidden; }
.docs-list__item { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #FFF; padding: 18px 22px; text-decoration: none; transition: background .2s ease; }
.docs-list__item:hover { background: #F9F8FC; }
.docs-list__item + .docs-list__item { border-top: solid 1px #ECEAF7; }
.docs-list__body { min-width: 0; }
.docs-list__body h4 { font-size: 15px; font-weight: 700; color: #0F0E17; margin: 0 0 4px; }
.docs-list__body p { font-size: 13px; line-height: 155%; color: #75798C; margin: 0; }
.docs-list__meta { font-size: 11px; font-weight: 700; color: #6D5EF5; text-transform: uppercase; letter-spacing: .03em; flex-shrink: 0; }
.docs-list__arrow { width: 16px; height: 16px; color: #C7C5D9; flex-shrink: 0; }

.docs-empty { text-align: center; padding: 40px 0; color: #75798C; font-size: 14px; }
.docs-empty a { color: #6D5EF5; }

.docs-single__cat { display: inline-block; font-size: 12px; font-weight: 700; color: #6D5EF5; background: #EDE9FE; border-radius: 999px; padding: 4px 12px; margin-bottom: 14px; }
.docs-single__title { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: #0F0E17; margin: 0 0 24px; line-height: 122%; }

@media (max-width:900px) {
	.docs-layout, .docs-layout--single { grid-template-columns: 1fr; }
	.docs-nav { position: static; order: -1; border: solid 1px #ECEAF7; border-radius: 14px; padding: 16px 20px; }
	.docs-layout--single .legal-toc { order: 2; }
	.docs-cats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:600px) {
	.docs-cats__grid { grid-template-columns: 1fr; }
	.docs-list__item { flex-direction: column; align-items: flex-start; gap: 6px; }
}
