:root {
	--dg-navy: #020b19;
	--dg-navy-2: #071a31;
	--dg-navy-3: #0b2645;
	--dg-blue: #0877ff;
	--dg-blue-dark: #0453cb;
	--dg-blue-soft: #eaf3ff;
	--dg-yellow: #ffc928;
	--dg-yellow-dark: #efa900;
	--dg-yellow-soft: #fff6d8;
	--dg-green: #10c77f;
	--dg-coral: #ff704d;
	--dg-ink: #0a1729;
	--dg-muted: #5c6b7f;
	--dg-line: #e2e8f1;
	--dg-soft: #f5f7fb;
	--dg-white: #fff;
	--dg-radius: 20px;
	--dg-shadow: 0 22px 55px rgba(4, 20, 38, .14);
	--dg-shell: min(1600px, calc(100% - 40px));
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
	overflow-x: hidden;
}

/*
 * O WordPress adiciona uma margem superior própria quando a barra
 * administrativa está ativa. O tema controla esse espaço diretamente para
 * impedir que a altura da barra seja somada ao deslocamento do header sticky.
 */
html:root {
	margin-top: 0 !important;
}

body {
	margin: 0;
	color: var(--dg-ink);
	background: var(--dg-white);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.shell {
	width: var(--dg-shell);
	margin-inline: auto;
}

.shell--article {
	max-width: 820px;
}

.dg-icon {
	width: 1em;
	height: 1em;
	display: inline-block;
	flex: 0 0 auto;
	vertical-align: -.125em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	color: var(--dg-ink);
	background: var(--dg-yellow);
	border-radius: 8px;
	font-weight: 800;
}

/* Cabeçalho */
.header {
	position: sticky;
	z-index: 100;
	top: 0;
	color: var(--dg-white);
	background: rgba(2, 11, 25, .94);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 10px 30px rgba(2, 11, 25, .08);
	backdrop-filter: blur(16px);
}

.admin-bar .header {
	top: 32px;
	margin-top: 0;
	margin-bottom: 32px;
}

.header__inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	flex: 0 0 auto;
	color: var(--dg-white);
	font-weight: 950;
	letter-spacing: -.04em;
	line-height: 1;
	text-transform: uppercase;
}

.brand__drop {
	color: var(--dg-white);
	font-size: 13px;
	letter-spacing: .12em;
}

.brand__name {
	color: var(--dg-yellow);
	font-size: 25px;
}

.brand__image {
	width: auto;
	max-width: 210px;
	max-height: 48px;
	display: block;
	object-fit: contain;
}

.nav {
	margin-left: auto;
}

.nav__list {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: clamp(17px, 2vw, 30px);
	list-style: none;
}

.nav__list li {
	position: relative;
}

.nav__list a {
	position: relative;
	padding: 13px 0;
	display: block;
	color: #d8e2ef;
	font-size: 13px;
	font-weight: 750;
}

.nav__list > li > a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 3px;
	border-radius: 99px;
	background: var(--dg-yellow);
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible,
.nav__list .current-menu-item > a {
	color: var(--dg-white);
}

.nav__list > li > a:hover::after,
.nav__list > li > a:focus-visible::after,
.nav__list > .current-menu-item > a::after {
	transform: scaleX(1);
}

.nav__list .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -18px;
	min-width: 210px;
	margin: 0;
	padding: 10px;
	color: var(--dg-ink);
	background: var(--dg-white);
	border: 1px solid var(--dg-line);
	border-radius: 14px;
	box-shadow: var(--dg-shadow);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s ease;
}

.nav__list li:hover > .sub-menu,
.nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nav__list .sub-menu a {
	padding: 9px 10px;
	color: var(--dg-ink);
	border-radius: 8px;
}

.nav__list .sub-menu a:hover {
	color: var(--dg-blue);
	background: var(--dg-blue-soft);
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 9px;
}

.login-button {
	min-height: 42px;
	padding: 0 23px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dg-ink);
	background: var(--dg-yellow);
	font-size: 13px;
	font-weight: 900;
	transition: transform .2s ease, background .2s ease;
}

.login-button:hover {
	color: var(--dg-ink);
	background: #ffd95f;
	transform: translateY(-2px);
}

.cart-button {
	position: relative;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
	display: grid;
	place-items: center;
	color: var(--dg-white);
	background: rgba(255, 255, 255, .06);
}

.cart-button .dg-icon {
	width: 20px;
	height: 20px;
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 19px;
	height: 19px;
	padding: 0 4px;
	border: 2px solid var(--dg-navy);
	border-radius: 99px;
	display: grid;
	place-items: center;
	color: var(--dg-ink);
	background: var(--dg-yellow);
	font-size: 9px;
	font-weight: 950;
}

.menu-button {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 11px;
	display: none;
	place-items: center;
	color: var(--dg-white);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 2px;
	border-radius: 99px;
	display: block;
	background: currentColor;
	content: "";
	transform-origin: center;
	transition: opacity .2s ease, transform .2s ease;
}

.menu-button span {
	transform: translate(-50%, -50%);
}

.menu-button::before {
	transform: translate(-50%, calc(-50% - 6px));
}

.menu-button::after {
	transform: translate(-50%, calc(-50% + 6px));
}

.menu-button[aria-expanded="true"] span {
	opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	color: var(--dg-white);
	background:
		radial-gradient(circle at 78% 33%, rgba(8, 119, 255, .25), transparent 25%),
		radial-gradient(circle at 20% 55%, rgba(255, 201, 40, .1), transparent 22%),
		linear-gradient(140deg, var(--dg-navy), #04182e 62%, #082845);
	overflow: hidden;
}

.hero::after {
	position: absolute;
	right: -8%;
	bottom: -16%;
	width: 52%;
	height: 50%;
	border: 2px solid rgba(8, 119, 255, .25);
	border-radius: 50%;
	content: "";
	transform: rotate(-12deg);
	box-shadow: 0 0 0 34px rgba(8, 119, 255, .03), 0 0 0 68px rgba(8, 119, 255, .02);
}

.hero__grid {
	position: relative;
	z-index: 2;
	min-height: 530px;
	padding: 58px 0 155px;
	display: grid;
	grid-template-columns: .98fr 1.02fr;
	align-items: center;
	gap: clamp(38px, 5vw, 76px);
}

.eyebrow,
.kicker {
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--dg-yellow);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
	width: 26px;
	height: 3px;
	border-radius: 99px;
	background: currentColor;
	content: "";
}

.hero h1 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(44px, 5.2vw, 76px);
	font-weight: 950;
	letter-spacing: -.055em;
	line-height: .96;
	text-transform: uppercase;
}

.hero h1 span {
	display: block;
	color: var(--dg-yellow);
}

.hero__lead {
	max-width: 610px;
	margin: 22px 0 0;
	color: #d7e1ed;
	font-size: 17px;
	line-height: 1.48;
}

.pills {
	max-width: 610px;
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pill {
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #eef4fb;
	background: rgba(255, 255, 255, .075);
	font-size: 10px;
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
}

.pill .dg-icon {
	color: var(--dg-yellow);
	font-size: 15px;
}

.hero__visual {
	position: relative;
	min-height: 360px;
	display: grid;
	place-items: center;
}

.dashboard {
	position: relative;
	z-index: 3;
	width: min(100%, 620px);
	color: var(--dg-ink);
	background: #f7f9fc;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 18px;
	box-shadow: 0 34px 70px rgba(0, 0, 0, .34), 0 0 32px rgba(8, 119, 255, .14);
	overflow: hidden;
	transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard__bar {
	min-height: 45px;
	padding: 0 17px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--dg-white);
	background: linear-gradient(90deg, #0d2541, #061425);
	font-size: 10px;
}

.dashboard__bar strong {
	display: flex;
	align-items: center;
	gap: 7px;
}

.dashboard__bar strong::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--dg-yellow);
	box-shadow: 0 0 12px var(--dg-yellow);
	content: "";
}

.online {
	padding: 4px 7px;
	color: #087a50;
	background: #caffeb;
	border-radius: 99px;
	font-size: 7px;
	font-weight: 900;
	text-transform: uppercase;
}

.dashboard__content {
	padding: 17px;
}

.dashboard__welcome small,
.dashboard__welcome strong {
	display: block;
}

.dashboard__welcome small {
	color: #789;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.dashboard__welcome strong {
	font-size: 18px;
}

.metrics {
	margin-top: 13px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}

.metric,
.chart,
.channels {
	background: var(--dg-white);
	border: 1px solid #e7ebf2;
	border-radius: 10px;
}

.metric {
	padding: 11px;
}

.metric span,
.metric strong,
.metric small {
	display: block;
}

.metric span {
	color: #758398;
	font-size: 8px;
	font-weight: 700;
}

.metric strong {
	margin: 2px 0;
	font-size: 20px;
	line-height: 1.15;
}

.metric small {
	color: #0aaa6f;
	font-size: 7px;
	font-weight: 800;
}

.dashboard__panels {
	margin-top: 9px;
	display: grid;
	grid-template-columns: 1.45fr .75fr;
	gap: 9px;
}

.chart,
.channels {
	min-height: 112px;
	padding: 11px;
}

.panel-title {
	color: #637185;
	font-size: 8px;
	font-weight: 850;
}

.bars {
	height: 72px;
	margin-top: 8px;
	display: flex;
	align-items: flex-end;
	gap: 7px;
	border-bottom: 1px solid #edf0f5;
}

.bar {
	flex: 1;
	min-width: 6px;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, #11c982, #0877ff);
	box-shadow: 0 4px 10px rgba(8, 119, 255, .16);
}

.channel {
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #526176;
	font-size: 7px;
	font-weight: 700;
}

.channel b {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	display: grid;
	place-items: center;
	color: var(--dg-white);
	background: var(--dg-blue);
	font-size: 6px;
}

.channel b.channel--orange {
	background: var(--dg-coral);
}

.channel b.channel--purple {
	background: #7457e8;
}

.orbit {
	position: absolute;
	z-index: 1;
	width: 85%;
	aspect-ratio: 1;
	border: 1px dashed rgba(8, 119, 255, .7);
	border-radius: 50%;
	animation: dg-spin 36s linear infinite;
}

.floating {
	position: absolute;
	z-index: 5;
}

.floating--icon {
	width: 70px;
	height: 70px;
	border: 2px solid currentColor;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 34px;
	box-shadow: 0 0 28px currentColor, inset 0 0 20px rgba(255, 255, 255, .07);
	backdrop-filter: blur(8px);
}

.floating--icon .dg-icon {
	width: 38px;
	height: 38px;
}

.floating--box {
	top: 0;
	left: 3%;
	color: var(--dg-yellow);
	background: rgba(52, 43, 6, .45);
	transform: rotate(-8deg);
}

.floating--cart {
	top: 32px;
	right: 0;
	color: #00baff;
	background: rgba(0, 42, 79, .5);
	transform: rotate(7deg);
}

.floating--stat {
	right: 2%;
	bottom: 0;
	width: 165px;
	padding: 13px 14px;
	color: var(--dg-white);
	background: rgba(2, 11, 25, .87);
	border: 1px solid rgba(255, 201, 40, .7);
	border-radius: 11px;
	box-shadow: 0 0 22px rgba(255, 201, 40, .18);
	backdrop-filter: blur(10px);
}

.floating--stat span,
.floating--stat strong {
	display: block;
}

.floating--stat span {
	color: #bcc8d7;
	font-size: 8px;
}

.floating--stat strong {
	margin-top: 5px;
	color: var(--dg-green);
	font-size: 14px;
}

@keyframes dg-spin {
	to { transform: rotate(360deg); }
}

/* Entradas e confiança */
.audiences {
	position: relative;
	z-index: 10;
	margin-top: -118px;
}

.audiences__grid {
	max-width: 920px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.audience {
	min-height: 210px;
	padding: 28px;
	border-radius: 18px;
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 17px;
	box-shadow: 0 22px 50px rgba(3, 24, 52, .19);
	transition: transform .2s ease, box-shadow .2s ease;
}

.audience:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 58px rgba(3, 24, 52, .24);
}

.audience--seller {
	background: linear-gradient(135deg, #ffb810, #ffca31);
}

.audience--supplier {
	color: var(--dg-white);
	background: linear-gradient(135deg, #0877ff, #0758d4);
}

.audience__icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-white);
	font-size: 28px;
}

.audience__icon .dg-icon {
	width: 29px;
	height: 29px;
}

.audience small {
	display: block;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .06em;
	opacity: .65;
	text-transform: uppercase;
}

.audience h2 {
	margin: 1px 0 4px;
	font-size: 27px;
	line-height: 1.12;
}

.audience p {
	margin: 0;
	font-size: 11px;
	line-height: 1.5;
	opacity: .8;
}

.audience__button {
	width: fit-content;
	min-height: 39px;
	margin-top: 16px;
	padding: 0 14px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--dg-white);
	background: var(--dg-navy);
	font-size: 10px;
	font-weight: 850;
}

.audience__button .dg-icon {
	font-size: 16px;
}

.trust {
	padding: 28px 0 30px;
	background: var(--dg-soft);
	border-bottom: 1px solid var(--dg-line);
}

.trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.trust__item {
	display: flex;
	align-items: center;
	gap: 11px;
}

.trust__icon {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-white);
	box-shadow: 0 7px 18px rgba(8, 119, 255, .11);
}

.trust__icon .dg-icon {
	width: 18px;
	height: 18px;
}

.trust__item > span:last-child,
.trust__item strong,
.trust__item strong + span {
	display: block;
}

.trust__item strong {
	font-size: 11px;
}

.trust__item strong + span {
	color: var(--dg-muted);
	font-size: 9px;
}

/* Seções */
.section {
	padding: 78px 0;
	background: var(--dg-white);
}

.section--soft {
	background: var(--dg-soft);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.section-heading .kicker {
	justify-content: center;
	color: var(--dg-blue);
}

.section-heading h2,
.faq__intro h2,
.benefits__intro h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 950;
	letter-spacing: -.045em;
	line-height: 1;
	text-transform: uppercase;
}

.section-heading h2 span,
.faq__intro h2 span {
	color: var(--dg-blue);
}

.section-heading > p:last-child,
.faq__intro > p:last-child {
	margin: 15px auto 0;
	color: var(--dg-muted);
	font-size: 14px;
}

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

.journey {
	padding: 29px 22px;
	background: var(--dg-blue-soft);
	border: 1px solid #d9e8ff;
	border-radius: 18px;
}

.journey--seller {
	background: var(--dg-yellow-soft);
	border-color: #f7e7b3;
}

.journey h3 {
	margin: 0 0 25px;
	color: var(--dg-blue);
	font-size: 14px;
	font-weight: 950;
	text-align: center;
	text-transform: uppercase;
}

.journey--seller h3 {
	color: var(--dg-yellow-dark);
}

.steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 9px;
}

.step {
	position: relative;
	text-align: center;
}

.step:not(:last-child)::after {
	position: absolute;
	top: 24px;
	right: -8px;
	color: var(--dg-blue);
	content: "›";
	font-size: 20px;
	font-weight: 900;
}

.journey--seller .step:not(:last-child)::after {
	color: var(--dg-yellow-dark);
}

.step__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 9px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-white);
	box-shadow: 0 7px 20px rgba(8, 119, 255, .09);
}

.journey--seller .step__icon {
	color: var(--dg-yellow-dark);
}

.step__icon .dg-icon {
	width: 23px;
	height: 23px;
}

.step strong,
.step > span:last-child {
	display: block;
}

.step strong {
	font-size: 9px;
	line-height: 1.3;
}

.step > span:last-child {
	margin-top: 4px;
	color: var(--dg-muted);
	font-size: 7px;
	line-height: 1.3;
}

.categories {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 10px;
}

.category {
	min-height: 108px;
	padding: 15px 8px;
	border: 1px solid var(--dg-line);
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	color: var(--dg-ink);
	background: var(--dg-white);
	box-shadow: 0 10px 22px rgba(7, 30, 58, .07);
	font-size: 9px;
	font-weight: 800;
	text-align: center;
	transition: .2s ease;
}

.category:hover {
	color: var(--dg-blue);
	border-color: rgba(8, 119, 255, .35);
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(8, 119, 255, .12);
}

.category__icon {
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	font-size: 30px;
}

.category__icon .dg-icon {
	width: 30px;
	height: 30px;
}

.category--all .category__icon {
	color: var(--dg-yellow-dark);
}

.benefits {
	position: relative;
	padding: 58px 0;
	color: var(--dg-white);
	background: linear-gradient(115deg, var(--dg-navy), #062545);
	overflow: hidden;
}

.benefits::after {
	position: absolute;
	right: -30px;
	bottom: -50px;
	width: 260px;
	height: 90px;
	background: linear-gradient(150deg, transparent 35%, var(--dg-yellow) 36% 48%, var(--dg-blue) 49% 65%, transparent 66%);
	content: "";
	transform: rotate(-5deg);
}

.benefits__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.7fr repeat(5, 1fr);
	align-items: center;
	gap: 18px;
}

.benefits__intro small {
	color: var(--dg-yellow);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.benefits__intro h2 {
	margin-top: 8px;
	font-size: clamp(29px, 3vw, 42px);
}

.benefits__intro h2 span {
	color: var(--dg-yellow);
}

.benefits__intro p {
	margin: 13px 0 0;
	color: #b8c6d6;
	font-size: 11px;
}

.benefit {
	text-align: center;
}

.benefit__icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 10px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--dg-white);
	background: rgba(255, 255, 255, .08);
	font-size: 26px;
}

.benefit__icon .dg-icon {
	width: 26px;
	height: 26px;
}

.benefit strong {
	display: block;
	color: var(--dg-yellow);
	font-size: 9px;
}

.benefit p {
	margin: 5px 0 0;
	color: #d8e1eb;
	font-size: 8px;
	line-height: 1.45;
}

.profile-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.profile-card {
	padding: 28px;
	background: var(--dg-white);
	border: 1px solid var(--dg-line);
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(7, 30, 58, .07);
}

.profile-card > span {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-blue-soft);
	font-size: 27px;
}

.profile-card:nth-child(2) > span {
	color: #087a50;
	background: #e8fff5;
}

.profile-card:nth-child(3) > span {
	color: #8b6200;
	background: var(--dg-yellow-soft);
}

.profile-card h3 {
	margin: 17px 0 6px;
	font-size: 18px;
}

.profile-card p {
	margin: 0;
	color: var(--dg-muted);
	font-size: 13px;
}

.faq {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: clamp(45px, 8vw, 110px);
}

.faq__intro .eyebrow {
	color: var(--dg-blue);
}

.faq__list {
	display: grid;
	gap: 10px;
}

.faq details {
	background: var(--dg-white);
	border: 1px solid var(--dg-line);
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(7, 30, 58, .05);
}

.faq summary {
	position: relative;
	padding: 17px 48px 17px 18px;
	font-size: 12px;
	font-weight: 850;
	list-style: none;
	cursor: pointer;
}

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

.faq summary::after {
	position: absolute;
	top: 50%;
	right: 17px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-blue-soft);
	content: "+";
	font-size: 17px;
	transform: translateY(-50%);
}

.faq details[open] summary::after {
	content: "−";
}

.faq details p {
	margin: 0;
	padding: 0 18px 18px;
	color: var(--dg-muted);
	font-size: 12px;
}

.final-cta {
	padding: 58px 0;
	color: var(--dg-white);
	background: linear-gradient(110deg, #0759dd, #0795fa 58%, #0bb879);
}

.final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.final-cta h2 {
	max-width: 740px;
	margin: 0;
	font-size: clamp(31px, 4vw, 51px);
	font-weight: 950;
	letter-spacing: -.04em;
	line-height: 1.02;
}

.final-cta__actions {
	display: flex;
	gap: 9px;
	flex: 0 0 auto;
}

.cta-button,
.dg-button {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--dg-yellow);
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dg-ink);
	background: var(--dg-yellow);
	font-size: 11px;
	font-weight: 900;
}

.cta-button--outline,
.dg-button--outline {
	color: var(--dg-white);
	background: transparent;
	border-color: rgba(255, 255, 255, .65);
}

/* Rodapé */
.footer {
	padding: 52px 0 20px;
	color: #b9c5d3;
	background: var(--dg-navy);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 36px;
}

.footer__brand-column p,
.footer__contact p {
	max-width: 260px;
	margin: 17px 0 0;
	color: #8f9dae;
	font-size: 11px;
}

.footer h2 {
	margin: 0 0 14px;
	color: var(--dg-white);
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.footer-menu {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
	list-style: none;
}

.footer-menu a {
	color: #9eacbd;
	font-size: 10px;
}

.footer-menu a:hover {
	color: var(--dg-yellow);
}

.footer__contact-button {
	margin-top: 13px;
	display: inline-block;
	color: var(--dg-yellow);
	font-size: 10px;
	font-weight: 800;
	word-break: break-word;
}

.footer__bottom {
	margin-top: 42px;
	padding-top: 19px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	justify-content: center;
	gap: 4px;
	color: #718197;
	font-size: 9px;
}

/* Páginas e posts */
.site-main {
	min-height: 55vh;
}

.front-page-content > :first-child {
	margin-top: 0;
}

.front-page-content > :last-child {
	margin-bottom: 0;
}

.front-page-empty {
	min-height: 55vh;
	padding: 90px 0;
	display: grid;
	align-items: center;
	background: var(--dg-soft);
}

.front-page-empty h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(35px, 5vw, 62px);
	line-height: 1.05;
}

.front-page-empty p:last-child {
	max-width: 680px;
	color: var(--dg-muted);
}

.content-shell {
	padding-bottom: 80px;
}

.page-hero {
	margin: 0;
	padding: 62px 0 46px;
	background:
		radial-gradient(circle at 75% 20%, rgba(8, 119, 255, .2), transparent 25%),
		linear-gradient(130deg, var(--dg-navy), var(--dg-navy-3));
	color: var(--dg-white);
}

.content-shell > .page-hero {
	margin-inline: calc((100vw - 100%) / -2);
	padding-inline: max(20px, calc((100vw - 1600px) / 2));
}

.page-hero .kicker {
	color: var(--dg-yellow);
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 950;
	letter-spacing: -.045em;
	line-height: 1.04;
}

.archive-description {
	max-width: 720px;
	margin-top: 15px;
	color: #c6d3e2;
}

.entry-content {
	padding-top: 54px;
	padding-bottom: 70px;
	font-size: 16px;
}

.entry-content > * {
	max-width: 1600px;
	margin-right: auto;
	margin-left: auto;
}

.entry-content > .alignwide {
	max-width: 1600px;
}

.entry-content > .alignfull {
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.8em;
	line-height: 1.2;
}

.entry-content a {
	color: var(--dg-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 20px 24px;
	border-left: 4px solid var(--dg-yellow);
	color: #32445a;
	background: var(--dg-yellow-soft);
	border-radius: 0 12px 12px 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--dg-line);
	text-align: left;
}

.entry-featured {
	max-width: 100%;
	margin-top: -25px;
}

.entry-featured img {
	width: 100%;
	border-radius: 18px;
	box-shadow: var(--dg-shadow);
}

.entry-meta {
	margin: 0 0 9px;
	display: flex;
	gap: 12px;
	color: #aebdd0;
	font-size: 11px;
	font-weight: 750;
}

.posts-grid {
	padding-top: 42px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.post-card {
	border: 1px solid var(--dg-line);
	border-radius: 16px;
	background: var(--dg-white);
	box-shadow: 0 12px 30px rgba(7, 30, 58, .07);
	overflow: hidden;
}

.post-card__image {
	aspect-ratio: 16 / 9;
	display: block;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.04);
}

.post-card__body {
	padding: 22px;
}

.post-card .entry-meta {
	color: var(--dg-muted);
}

.post-card h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
}

.post-card__excerpt {
	color: var(--dg-muted);
	font-size: 13px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 850;
}

.text-link .dg-icon {
	font-size: 16px;
}

.navigation.pagination,
.post-navigation {
	margin-top: 34px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--dg-line);
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-size: 12px;
	font-weight: 800;
}

.page-numbers.current {
	color: var(--dg-white);
	background: var(--dg-blue);
	border-color: var(--dg-blue);
}

.post-navigation-wrap {
	padding-bottom: 50px;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.post-navigation a {
	padding: 18px;
	border: 1px solid var(--dg-line);
	border-radius: 12px;
	display: block;
}

.search-form {
	max-width: 760px;
	margin: 35px auto 0;
	display: flex;
	gap: 9px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 0 15px;
	border: 1px solid #ccd6e2;
	border-radius: 10px;
	background: var(--dg-white);
}

.search-submit {
	min-height: 48px;
	padding: 0 17px;
	border: 0;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--dg-white);
	background: var(--dg-blue);
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
}

.comments-area {
	padding-top: 20px;
	padding-bottom: 60px;
}

.comments-title {
	font-size: 24px;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-body {
	margin-bottom: 12px;
	padding: 18px;
	border: 1px solid var(--dg-line);
	border-radius: 12px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccd6e2;
	border-radius: 9px;
}

.comment-form .submit {
	padding: 12px 18px;
	border: 0;
	border-radius: 9px;
	color: var(--dg-white);
	background: var(--dg-blue);
	font-weight: 850;
}

.empty-state,
.error-page__inner {
	max-width: 740px;
	margin-inline: auto;
	padding: 80px 20px;
	text-align: center;
}

.empty-state > span {
	width: 72px;
	height: 72px;
	margin: 0 auto;
	border-radius: 20px;
	display: grid;
	place-items: center;
	color: var(--dg-blue);
	background: var(--dg-blue-soft);
	font-size: 34px;
}

.error-page {
	color: var(--dg-white);
	background:
		radial-gradient(circle at center, rgba(8, 119, 255, .28), transparent 34%),
		var(--dg-navy);
}

.error-code {
	color: var(--dg-yellow);
	font-size: clamp(90px, 18vw, 190px);
	font-weight: 950;
	letter-spacing: -.08em;
	line-height: .8;
}

.error-page .kicker {
	margin-top: 35px;
	justify-content: center;
}

.error-page h1 {
	margin: 0;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
}

.error-page p:not(.kicker) {
	color: #bdc9d7;
}

.error-page__actions {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	gap: 9px;
}

/* Responsividade */
@media (max-width: 1080px) {
	.nav__list {
		gap: 14px;
	}

	.nav__list a {
		font-size: 12px;
	}

	.categories {
		grid-template-columns: repeat(5, 1fr);
	}

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

	.benefit:nth-child(n+5) {
		display: none;
	}

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

	.footer__contact {
		grid-column: 2 / -1;
	}
}

@media (max-width: 900px) {
	.header__inner {
		position: relative;
		min-height: 70px;
		gap: 16px;
	}

	.menu-button {
		display: grid;
	}

	.nav {
		position: absolute;
		z-index: 101;
		top: calc(100% + 1px);
		right: auto;
		bottom: auto;
		left: 50%;
		width: 100vw;
		max-height: calc(100vh - 70px);
		max-height: calc(100dvh - 70px);
		margin: 0;
		padding: 14px max(20px, calc((100vw - 1600px) / 2)) 20px;
		display: block;
		background:
			radial-gradient(circle at 92% 0, rgba(8, 119, 255, .18), transparent 35%),
			linear-gradient(145deg, #061426, #071d36);
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		border-radius: 0 0 18px 18px;
		box-shadow: 0 24px 45px rgba(0, 0, 0, .34);
		opacity: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		pointer-events: none;
		transform: translate(-50%, -10px);
		visibility: hidden;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
		-webkit-overflow-scrolling: touch;
	}

	.nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translate(-50%, 0);
		visibility: visible;
	}

	.admin-bar .nav {
		max-height: calc(100vh - 102px);
		max-height: calc(100dvh - 102px);
	}

	.nav__list {
		width: min(100%, 540px);
		margin-inline: auto;
		align-items: stretch;
		flex-direction: column;
		gap: 5px;
	}

	.nav__list a {
		padding: 13px 14px;
		border: 1px solid transparent;
		border-radius: 10px;
		font-size: 14px;
		line-height: 1.25;
	}

	.nav__list a:hover,
	.nav__list a:focus-visible,
	.nav__list .current-menu-item > a {
		color: var(--dg-white);
		background: rgba(255, 255, 255, .07);
		border-color: rgba(255, 255, 255, .09);
	}

	.nav__list > li > a::after {
		display: none;
	}

	.nav__list .sub-menu {
		position: static;
		min-width: 0;
		margin: 3px 0 5px;
		padding: 4px 0 4px 12px;
		color: var(--dg-white);
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav__list .sub-menu a {
		padding-block: 11px;
		color: #aab9ca;
	}

	body.menu-open::before {
		position: fixed;
		z-index: 90;
		inset: 0;
		background: rgba(2, 11, 25, .58);
		content: "";
	}

	.hero__grid {
		padding: 46px 0 175px;
		grid-template-columns: 1fr;
		gap: 62px;
	}

	.hero__copy {
		max-width: 680px;
	}

	.hero__visual {
		width: min(100%, 640px);
		margin-inline: auto;
	}

	.audiences {
		margin-top: -125px;
	}

	.audiences__grid,
	.journeys,
	.faq {
		grid-template-columns: 1fr;
	}

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

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

	.benefits__intro {
		grid-column: 1 / -1;
	}

	.benefit:nth-child(n) {
		display: block;
	}

	.profile-cards,
	.posts-grid {
		grid-template-columns: 1fr 1fr;
	}

	.final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.footer__brand-column,
	.footer__contact {
		grid-column: auto;
	}
}

@media (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
		margin-top: 0;
		margin-bottom: 46px;
	}

	.admin-bar .nav {
		max-height: calc(100vh - 116px);
		max-height: calc(100dvh - 116px);
	}
}

@media (max-width: 600px) {
	:root {
		--dg-shell: min(100% - 28px, 1600px);
	}

	.admin-bar .header {
		top: 0;
		margin-top: 46px;
		margin-bottom: 0;
	}

	.header__inner {
		gap: 8px;
	}

	.header__actions {
		margin-left: auto;
		flex: 0 0 auto;
		gap: 6px;
	}

	.brand {
		min-width: 0;
		overflow: hidden;
	}

	.brand__drop {
		display: inline;
		font-size: 11px;
		letter-spacing: .08em;
	}

	.brand__name {
		font-size: 21px;
	}

	.brand__image {
		max-width: 145px;
		max-height: 40px;
	}

	.login-button {
		min-height: 40px;
		padding: 0 12px;
		font-size: 12px;
		line-height: 1;
		text-align: center;
		white-space: nowrap;
	}

	.cart-button {
		width: 40px;
		height: 40px;
	}

	.menu-button {
		width: 42px;
		height: 40px;
	}

	.nav {
		padding: 12px 14px 18px;
		border-radius: 0 0 14px 14px;
	}

	.hero h1 {
		font-size: clamp(38px, 12vw, 54px);
	}

	.hero__lead {
		font-size: 16px;
	}

	.dashboard {
		width: 100%;
		transform: none;
	}

	.hero__visual {
		min-height: 315px;
	}

	.floating--icon {
		width: 62px;
		height: 62px;
	}

	.floating--box {
		left: 0;
	}

	.floating--cart {
		right: 0;
	}

	.floating--stat {
		right: 6px;
		bottom: -22px;
	}

	.audience {
		padding: 23px 20px;
		grid-template-columns: 48px 1fr;
		gap: 13px;
	}

	.audience__icon {
		width: 48px;
		height: 48px;
	}

	.audience h2 {
		font-size: 23px;
	}

	.trust__grid,
	.benefits__grid,
	.profile-cards,
	.posts-grid,
	.footer__grid {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.step {
		padding: 10px;
		border-radius: 13px;
		display: grid;
		grid-template-columns: 50px 1fr;
		align-items: center;
		gap: 3px 12px;
		background: rgba(255, 255, 255, .67);
		text-align: left;
	}

	.step:not(:last-child)::after {
		display: none;
	}

	.step__icon {
		width: 48px;
		height: 48px;
		margin: 0;
		grid-row: 1 / 3;
	}

	.step strong {
		font-size: 11px;
	}

	.step > span:last-child {
		margin: 0;
		font-size: 9px;
	}

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

	.category--all {
		grid-column: 1 / -1;
	}

	.benefits__grid {
		gap: 26px;
	}

	.final-cta__actions,
	.error-page__actions {
		width: 100%;
		flex-direction: column;
	}

	.cta-button,
	.dg-button {
		width: 100%;
	}

	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.page-hero {
		padding: 46px 0 37px;
	}

	.search-form {
		flex-direction: column;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 300px) {
	:root {
		--dg-shell: min(100% - 16px, 1600px);
	}

	.cart-button {
		display: none;
	}

	.brand__drop {
		font-size: 9px;
		letter-spacing: .06em;
	}

	.brand__name {
		font-size: 17px;
	}

	.login-button {
		padding-inline: 10px;
	}
}

@media (max-width: 220px) {
	.brand {
		display: none;
	}

	.header__actions {
		width: 100%;
	}

	.login-button {
		margin-left: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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