@font-face {
	font-family: "DG Archivo";
	src: url("../fonts/archivo-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
}

@font-face {
	font-family: "DG Space Mono";
	src: url("../fonts/space-mono-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "DG Space Mono";
	src: url("../fonts/space-mono-bold-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@keyframes dg-marquee {
	to { transform: translateX(-50%); }
}

@keyframes dg-pulse {
	0%, 100% { box-shadow: 0 12px 26px rgba(229, 52, 43, .28); }
	50% { box-shadow: 0 18px 42px rgba(229, 52, 43, .46); }
}

@keyframes dg-dash {
	from { stroke-dashoffset: 45; }
	to { stroke-dashoffset: 18; }
}

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

.dg-landing {
	--dg-bg: #f6f7f9;
	--dg-bg-2: #ebeef1;
	--dg-ink: #242a2b;
	--dg-ink-2: #5b6364;
	--dg-muted: #646c6f;
	--dg-line: #e0e4e9;
	--dg-red: #e5342b;
	--dg-red-dark: #be2a22;
	--dg-dark: #202728;
	--dg-dark-2: #1b2021;
	--dg-white: #fff;
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin-left: 0;
	color: var(--dg-ink);
	background: var(--dg-bg);
	font-family: "DG Archivo", Archivo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

/* Shortcodes modulares usados dentro dos containers do Elementor. Eles mantêm
 * a identidade visual do plugin sem impor o fundo ou a largura da LP completa. */
.dg-embed {
	min-width: 0;
	background: transparent;
	overflow-x: clip;
	overflow-y: visible;
}

.dg-embed--form .dg-form-card,
.dg-embed--ranking .dg-ranking-grid { width: 100%; }

.dg-embed--ranking .dg-ranking-status { margin-top: 0; }

.dg-landing [hidden] { display: none !important; }

.dg-landing *,
.dg-landing *::before,
.dg-landing *::after { box-sizing: inherit; }

.dg-landing h1,
.dg-landing h2,
.dg-landing h3,
.dg-landing p,
.dg-landing ul,
.dg-landing fieldset { margin: 0; }

.dg-landing ul { padding: 0; list-style: none; }
.dg-landing img { display: block; max-width: 100%; }
.dg-landing button,
.dg-landing input { font: inherit; }
.dg-landing a { color: inherit; text-decoration: none; }

.dg-landing :focus-visible {
	outline: 3px solid rgba(229, 52, 43, .35);
	outline-offset: 3px;
}

.dg-form-step__heading h3:focus,
.dg-success h3:focus,
.dg-landing section[tabindex="-1"]:focus { outline: none; }

.dg-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--dg-white);
	color: var(--dg-ink);
	font-weight: 800;
	transform: translateY(-150%);
	transition: transform .2s ease;
}

.dg-skip-link:focus { transform: translateY(0); }

.dg-instance-warning {
	padding: 12px 14px;
	border-left: 4px solid #be2a22;
	background: #fff1f0;
	color: #70201b;
	font-weight: 700;
}

.dg-shell {
	width: min(1220px, calc(100% - 56px));
	margin-inline: auto;
}

/* The campaign starts directly in the marquee and form; keep removed legacy blocks hidden
 * if an older cached shortcode is rendered while WordPress refreshes it. */
.dg-header,
.dg-gauge-card,
.dg-how { display: none; }

.dg-header {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid rgba(224, 228, 233, .9);
	background: rgba(246, 247, 249, .9);
	box-shadow: 0 5px 22px rgba(36, 42, 43, .04);
	backdrop-filter: saturate(140%) blur(13px);
}

.dg-header__inner {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 24px;
}

.dg-brand { flex: 0 0 auto; }
.dg-brand img { width: auto; height: 54px; }

.dg-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.dg-nav a {
	position: relative;
	color: var(--dg-ink);
	font-size: 14px;
	font-weight: 700;
}

.dg-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--dg-red);
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease;
}

.dg-nav a:hover::after { transform: scaleX(1); }

.dg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	gap: 14px;
	padding: 14px 26px;
	border: 1px solid var(--dg-red-dark);
	border-radius: 999px;
	background: var(--dg-red-dark);
	box-shadow: 0 12px 26px rgba(229, 52, 43, .28);
	color: var(--dg-white) !important;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dg-button:hover {
	border-color: #a8241e;
	background: #a8241e;
	box-shadow: 0 16px 32px rgba(229, 52, 43, .35);
	transform: translateY(-2px);
}

.dg-button--small {
	min-height: 44px;
	margin-left: 6px;
	padding: 10px 20px;
	font-size: 14px;
	animation: dg-pulse 3.2s ease-in-out infinite;
}

.dg-hero {
	position: relative;
	padding: 42px 0 88px;
	background:
		radial-gradient(900px 600px at 88% -8%, #fff 0%, transparent 64%),
		linear-gradient(180deg, #f6f7f9 0%, #f3f5f7 100%);
	overflow: hidden;
}

.dg-hero__glow {
	position: absolute;
	top: -190px;
	right: -120px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(229, 52, 43, .13), transparent 66%);
	pointer-events: none;
}

.dg-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
	align-items: center;
	gap: clamp(44px, 6vw, 88px);
}

.dg-hero__copy {
	min-width: 0;
	width: 100%;
}

.dg-hero__logo {
	display: block;
	width: fit-content;
	margin-bottom: 30px;
}

.dg-hero__logo img {
	width: auto;
	height: 68px;
}

.dg-hero__media {
	position: relative;
	min-width: 0;
	width: 100%;
	min-height: 540px;
	aspect-ratio: .93;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 28px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .24), transparent 42%),
		linear-gradient(155deg, #dfe3e6 0%, #c7cdd0 100%);
	box-shadow: 0 30px 70px rgba(36, 42, 43, .18);
	overflow: hidden;
	isolation: isolate;
}

.dg-hero__media::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 58%, rgba(25, 31, 32, .18));
	content: "";
	pointer-events: none;
}

.dg-hero__media > img,
.dg-hero__media picture,
.dg-hero__media picture img {
	display: block;
	width: 100%;
	height: 100%;
}

.dg-hero__media > img,
.dg-hero__media picture img {
	object-fit: cover;
	object-position: center;
}

.dg-hero__image-placeholder,
.dg-hero__media-placeholder,
.dg-hero__media.is-placeholder {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 72% 24%, rgba(229, 52, 43, .22), transparent 30%),
		linear-gradient(145deg, #303839, #1f2526);
	color: rgba(255, 255, 255, .72);
}

.dg-hero__image-placeholder,
.dg-hero__media-placeholder {
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 34px;
	font-family: "DG Space Mono", ui-monospace, monospace;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: center;
	text-transform: uppercase;
}

.dg-hero__image-placeholder span,
.dg-hero__media-placeholder span {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dg-hero__image-placeholder span::before,
.dg-hero__media-placeholder span::before {
	display: block;
	width: 88px;
	height: 64px;
	margin: 0 auto 16px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 12px;
	background:
		linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, .22) 48% 52%, transparent 53%),
		radial-gradient(circle at 68% 28%, rgba(229, 52, 43, .9) 0 6px, transparent 7px);
	content: "";
}

.dg-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--dg-red-dark);
	font-family: "DG Space Mono", ui-monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.dg-eyebrow > span {
	display: inline-block;
	width: 24px;
	height: 2px;
	background: currentColor;
}

.dg-eyebrow--light { color: #f5a79f; }

.dg-hero h1 {
	max-width: 720px;
	margin-top: 22px;
	color: var(--dg-ink);
	font-size: clamp(42px, 5.1vw, 70px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: .99;
}

.dg-hero h1::after {
	display: block;
	width: 94px;
	height: 7px;
	margin-top: 26px;
	border-radius: 8px;
	background: var(--dg-red);
	content: "";
}

.dg-hero__lead {
	max-width: 650px;
	margin-top: 26px !important;
	color: var(--dg-ink-2);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.55;
}

.dg-hero__actions {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-top: 34px;
}

.dg-text-link {
	border-bottom: 1px solid var(--dg-ink);
	color: var(--dg-ink);
	font-size: 16px;
	font-weight: 800;
	transition: color .2s ease, border-color .2s ease;
}

.dg-text-link:hover { color: var(--dg-red-dark); border-color: var(--dg-red-dark); }

.dg-hero__actions .dg-text-link { display: none; }

.dg-hero__facts {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-top: 46px !important;
	padding-top: 25px !important;
	border-top: 1px solid var(--dg-line);
}

.dg-hero__facts li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 0 22px;
	border-right: 1px solid var(--dg-line);
}

.dg-hero__facts li:first-child { padding-left: 0; }
.dg-hero__facts li:last-child { padding-right: 0; border-right: 0; }
.dg-hero__facts strong { color: var(--dg-red); font-size: 31px; line-height: 1; }
.dg-hero__facts span { max-width: 100px; color: var(--dg-ink-2); font-size: 12px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }

.dg-gauge-card {
	position: relative;
	min-height: 490px;
	padding: 27px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .035) 25%, transparent 25%) 0 0 / 18px 18px,
		linear-gradient(315deg, rgba(255, 255, 255, .025) 25%, transparent 25%) 0 0 / 18px 18px,
		var(--dg-dark);
	box-shadow: 0 30px 70px rgba(36, 42, 43, .24);
	color: var(--dg-white);
	overflow: hidden;
}

.dg-gauge-card::after {
	position: absolute;
	right: -80px;
	bottom: -110px;
	width: 310px;
	height: 310px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(229, 52, 43, .23), transparent 66%);
	content: "";
}

.dg-gauge-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, .7);
	font-family: "DG Space Mono", ui-monospace, monospace;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.dg-gauge-card__top i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #50b77a;
	box-shadow: 0 0 0 7px rgba(80, 183, 122, .12);
}

.dg-gauge { position: relative; margin: 44px auto 26px; }
.dg-gauge svg { width: 100%; height: auto; overflow: visible; }
.dg-gauge path { fill: none; stroke-linecap: round; stroke-width: 18; }
.dg-gauge__track { stroke: rgba(255, 255, 255, .12); }
.dg-gauge__value { stroke: var(--dg-red); stroke-dasharray: 72 100; animation: dg-dash 2s cubic-bezier(.16, 1, .3, 1) both; }
.dg-gauge line { stroke: #fff; stroke-linecap: round; stroke-width: 7; }
.dg-gauge circle { fill: var(--dg-red); stroke: #fff; stroke-width: 5; }

.dg-gauge__readout {
	position: absolute;
	bottom: 8px;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.dg-gauge__readout strong { font-family: "DG Space Mono", ui-monospace, monospace; font-size: 54px; line-height: .9; }
.dg-gauge__readout span { margin-top: 9px; color: rgba(255, 255, 255, .55); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }

.dg-gauge-card__footer {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.dg-gauge-card__footer span {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 17px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 13px;
	background: rgba(255, 255, 255, .045);
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
	font-weight: 600;
}

.dg-gauge-card__footer b { color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 18px; }

.dg-marquee {
	border-top: 1px solid var(--dg-line);
	border-bottom: 1px solid var(--dg-line);
	background: var(--dg-white);
	overflow: hidden;
}

.dg-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: dg-marquee 24s linear infinite;
}

.dg-marquee span {
	padding: 18px 0;
	color: var(--dg-ink-2);
	font-family: "DG Space Mono", ui-monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.dg-marquee i { width: 6px; height: 6px; margin: 0 28px; border-radius: 50%; background: var(--dg-red); }

.dg-how {
	padding: 104px 0;
	background:
		radial-gradient(720px 520px at 96% 6%, rgba(229, 52, 43, .055), transparent 60%),
		var(--dg-bg);
	scroll-margin-top: 82px;
}

.dg-section-heading { max-width: 720px; }
.dg-section-heading h2,
.dg-score-band h2,
.dg-form-intro h2 {
	margin-top: 18px;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.05;
}

.dg-section-heading > p:last-child {
	max-width: 620px;
	margin-top: 18px;
	color: var(--dg-ink-2);
	font-size: 18px;
}

.dg-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 52px;
}

.dg-step-card {
	position: relative;
	min-height: 238px;
	padding: 30px;
	border: 1px solid var(--dg-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 16px 38px rgba(36, 42, 43, .045);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	overflow: hidden;
}

.dg-step-card:hover { border-color: rgba(229, 52, 43, .35); box-shadow: 0 22px 48px rgba(36, 42, 43, .09); transform: translateY(-5px); }
.dg-step-card::after { position: absolute; top: -45px; right: -42px; width: 130px; height: 130px; border: 1px solid rgba(229, 52, 43, .13); border-radius: 50%; content: ""; }

.dg-step-card__number { color: var(--dg-red-dark); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 14px; font-weight: 700; letter-spacing: .1em; }
.dg-step-card h3 { margin-top: 45px; font-size: 23px; font-weight: 800; letter-spacing: -.02em; }
.dg-step-card p { margin-top: 11px; color: var(--dg-ink-2); font-size: 15px; }

.dg-score-band {
	padding: 96px 0;
	background:
		radial-gradient(540px 390px at 90% 10%, rgba(229, 52, 43, .18), transparent 65%),
		var(--dg-dark);
	color: var(--dg-white);
	scroll-margin-top: 82px;
}

.dg-score-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	align-items: center;
	gap: 80px;
}

.dg-score-band h2 { max-width: 720px; }
.dg-score-band p:last-child { max-width: 700px; margin-top: 20px; color: rgba(255, 255, 255, .72); font-size: 18px; }

.dg-score-meter {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	background: rgba(255, 255, 255, .055);
}

.dg-score-meter__value { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.dg-score-meter__value strong { color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 58px; line-height: 1; }
.dg-score-meter__value span { max-width: 92px; color: rgba(255, 255, 255, .55); font-size: 12px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.dg-score-meter__bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 25px; }
.dg-score-meter__bar i { height: 9px; border-radius: 9px; background: var(--dg-red); }
.dg-score-meter small { display: block; margin-top: 12px; color: rgba(255, 255, 255, .55); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; }

.dg-form-section {
	position: relative;
	padding: 104px 0;
	background:
		linear-gradient(100deg, rgba(12, 15, 15, .94) 0%, rgba(18, 21, 21, .82) 52%, rgba(10, 12, 12, .9) 100%),
		url("../images/pegada-background.webp") center top / cover no-repeat,
		var(--dg-dark-2);
	color: #fff;
	overflow: hidden;
	scroll-margin-top: 82px;
}

.dg-form-section::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(620px 520px at 14% 45%, rgba(229, 52, 43, .16), transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 24%, rgba(0, 0, 0, .2));
	content: "";
	pointer-events: none;
}

.dg-form-section__orb {
	position: absolute;
	top: -240px;
	left: -190px;
	width: 650px;
	height: 650px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 50%;
	box-shadow: 0 0 0 80px rgba(255, 255, 255, .018), 0 0 0 160px rgba(255, 255, 255, .012);
	pointer-events: none;
}

.dg-form-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(360px, 1fr) minmax(520px, 1fr);
	align-items: start;
	gap: clamp(44px, 5vw, 68px);
}

.dg-form-intro { position: sticky; top: 72px; max-width: 520px; }
.dg-form-intro__seal {
	width: min(76%, 350px);
	height: auto;
	margin: -20px auto 8px;
	filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .42));
}
.dg-form-intro__copy { position: relative; z-index: 1; max-width: 500px; }
.dg-form-intro h2 { margin-top: 0; text-shadow: 0 3px 18px rgba(0, 0, 0, .36); }
.dg-form-intro__copy > p:last-of-type { margin-top: 22px; color: rgba(255, 255, 255, .76); font-size: 18px; }
.dg-form-intro ul { display: grid; gap: 13px; margin-top: 34px; }
.dg-form-intro li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .82); font-size: 15px; font-weight: 650; }
.dg-form-intro li span { display: inline-grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(229, 52, 43, .45); border-radius: 50%; background: rgba(229, 52, 43, .12); color: #f5a79f; font-size: 12px; }

.dg-form-card {
	min-width: 0;
	padding: 34px;
	border-radius: 22px;
	background: var(--dg-white);
	box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
	color: var(--dg-ink);
	scroll-margin-top: 100px;
}

@media (min-width: 1025px) {
	.dg-form-layout { align-items: stretch; }
	.dg-form-intro { display: flex; flex-direction: column; justify-content: center; }
}

.dg-form-progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; margin-bottom: 38px; }
.dg-form-progress__item { display: flex; align-items: center; gap: 10px; color: var(--dg-muted); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.dg-form-progress__item b { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--dg-line); border-radius: 50%; background: var(--dg-bg); font-size: 12px; }
.dg-form-progress__item.is-active { color: var(--dg-ink); }
.dg-form-progress__item.is-active b,
.dg-form-progress__item.is-complete b { border-color: var(--dg-red-dark); background: var(--dg-red-dark); color: #fff; }
.dg-form-progress__line { height: 2px; margin: 0 14px; background: var(--dg-line); overflow: hidden; }
.dg-form-progress__line i { display: block; width: 0; height: 100%; background: var(--dg-red); transition: width .35s ease; }
.dg-form-progress__line i.is-complete { width: 100%; }

.dg-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.dg-form__alert {
	margin-bottom: 22px;
	padding: 13px 15px;
	border: 1px solid #f2b8b5;
	border-radius: 10px;
	background: #fff1f0;
	color: #9b221c;
	font-size: 14px;
	font-weight: 700;
}

.dg-form-step[hidden],
.dg-success[hidden] { display: none !important; }
.dg-form-step.is-active { animation: dg-step-in .35s cubic-bezier(.16, 1, .3, 1); }

@keyframes dg-step-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

.dg-form-step__heading { margin-bottom: 28px; }
.dg-form-step__heading > span { color: var(--dg-red-dark); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dg-form-step__heading h3 { margin-top: 7px; font-size: clamp(25px, 3vw, 32px); font-weight: 850; letter-spacing: -.025em; line-height: 1.15; }
.dg-form-step__heading p { margin-top: 8px; color: var(--dg-ink-2); font-size: 14px; }

.dg-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dg-field { margin-bottom: 18px; }
.dg-field__control { position: relative; }
.dg-field__icon {
	position: absolute;
	top: 50%;
	left: 15px;
	z-index: 1;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: #798185;
	pointer-events: none;
	transform: translateY(-50%);
	transition: color .2s ease;
}
.dg-field__icon svg { display: block; width: 19px; height: 19px; }
.dg-field__control:focus-within .dg-field__icon { color: var(--dg-red-dark); }
.dg-field label,
.dg-question--numeric > label {
	display: block;
	margin-bottom: 7px;
	color: var(--dg-ink);
	font-size: 13px;
	font-weight: 800;
}

.dg-field input,
.dg-question--numeric input {
	display: block;
	width: 100%;
	height: 51px;
	padding: 0 14px;
	border: 1px solid #d7dce2;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
	color: var(--dg-ink);
	font-size: 16px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.dg-field__control input { padding-left: 48px; }

.dg-field input::placeholder,
.dg-question--numeric input::placeholder { color: #687174; opacity: 1; }
.dg-field input:focus,
.dg-question--numeric input:focus { border-color: var(--dg-red); box-shadow: 0 0 0 3px rgba(229, 52, 43, .12); }
.dg-field input.is-invalid,
.dg-question--numeric input.is-invalid { border-color: #c52c24; background: #fff7f6; }
.dg-field small { display: block; margin-top: 6px; color: var(--dg-muted); font-size: 11px; }

.dg-category {
	min-width: 0;
	margin: 0 0 18px !important;
	padding: 0;
	border: 0;
}

.dg-category legend {
	width: 100%;
	margin-bottom: 8px;
	padding: 0;
	color: var(--dg-ink);
	font-size: 13px;
	font-weight: 800;
}

.dg-category__options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dg-category__option {
	position: relative;
	display: flex;
	min-height: 51px;
	align-items: center;
	gap: 11px;
	padding: 11px 14px;
	border: 1px solid #d7dce2;
	border-radius: 10px;
	background: #fff;
	color: var(--dg-ink);
	font-size: 14px;
	font-weight: 750;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.dg-category__option input { position: absolute; opacity: 0; pointer-events: none; }
.dg-category__mark { position: relative; flex: 0 0 auto; width: 20px; height: 20px; border: 1.5px solid #aeb5bd; border-radius: 50%; background: #fff; }
.dg-category__option:has(input:checked),
.dg-category__option.is-selected { border-color: var(--dg-red); background: #fff8f7; }
.dg-category__option:has(input:checked) .dg-category__mark,
.dg-category__option.is-selected .dg-category__mark { border: 6px solid var(--dg-red-dark); }
.dg-category__option:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(229, 52, 43, .15); }
.dg-category.is-invalid .dg-category__option { border-color: #c52c24; background: #fff7f6; }

.dg-consent {
	position: relative;
	display: grid;
	grid-template-columns: 21px 1fr;
	align-items: start;
	gap: 11px;
	margin: 3px 0 24px;
	padding: 14px;
	border: 1px solid var(--dg-line);
	border-radius: 10px;
	background: var(--dg-bg);
	color: var(--dg-ink-2);
	font-size: 12px;
	line-height: 1.45;
	cursor: pointer;
}

.dg-consent input { position: absolute; opacity: 0; pointer-events: none; }
.dg-consent__box { position: relative; width: 21px; height: 21px; border: 1.5px solid #b9c0c8; border-radius: 5px; background: #fff; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.dg-consent input:checked + .dg-consent__box { border-color: var(--dg-red); background: var(--dg-red); }
.dg-consent input:checked + .dg-consent__box::after { position: absolute; top: 3px; left: 6px; width: 6px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; content: ""; transform: rotate(45deg); }
.dg-consent input:focus-visible + .dg-consent__box { box-shadow: 0 0 0 3px rgba(229, 52, 43, .18); }
.dg-consent.is-invalid { border-color: #c52c24; background: #fff7f6; }

.dg-button--wide { width: 100%; border-radius: 11px; }

.dg-question {
	min-width: 0;
	margin: 0 0 26px;
	padding: 0 0 26px;
	border: 0;
	border-bottom: 1px solid var(--dg-line);
}

.dg-question:last-of-type { margin-bottom: 0; }
fieldset.dg-question + fieldset.dg-question { padding-top: 0; }
fieldset.dg-question + fieldset.dg-question > legend { padding-top: 28px; }
.dg-question legend,
.dg-question--numeric > label { width: 100%; margin-bottom: 14px; padding: 0; color: var(--dg-ink); font-size: 16px; font-weight: 800; line-height: 1.4; }
.dg-question legend span,
.dg-question--numeric > label span { display: inline-grid; width: 26px; height: 26px; margin-right: 9px; place-items: center; border-radius: 50%; background: rgba(229, 52, 43, .1); color: var(--dg-red-dark); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; vertical-align: 1px; }
.dg-question.is-invalid legend { color: #a5231d; }

.dg-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.dg-option { position: relative; display: grid; grid-template-columns: 34px 1fr 20px; align-items: center; gap: 10px; min-height: 57px; padding: 10px 13px; border: 1px solid #dce0e5; border-radius: 11px; background: #fff; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.dg-option:hover { border-color: #aeb5bd; transform: translateY(-1px); }
.dg-option input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dg-option__letter { display: grid; width: 33px; height: 33px; place-items: center; border-radius: 8px; background: var(--dg-bg-2); color: var(--dg-ink-2); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 12px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.dg-option__text { color: var(--dg-ink); font-size: 14px; font-weight: 700; }
.dg-option__check { color: var(--dg-red-dark); font-size: 15px; font-weight: 900; opacity: 0; transform: scale(.6); transition: opacity .2s ease, transform .2s ease; }
.dg-option:has(input:checked),
.dg-option.is-selected { border-color: var(--dg-red); background: #fff8f7; }
.dg-option:has(input:checked) .dg-option__letter,
.dg-option.is-selected .dg-option__letter { background: var(--dg-red-dark); color: #fff; }
.dg-option:has(input:checked) .dg-option__check,
.dg-option.is-selected .dg-option__check { opacity: 1; transform: scale(1); }
.dg-option:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(229, 52, 43, .15); }

.dg-form-actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-top: 30px; }
.dg-button--ghost { min-width: 118px; border-color: var(--dg-line); border-radius: 11px; background: #fff; box-shadow: none; color: var(--dg-ink) !important; }
.dg-button--ghost:hover { border-color: #aab1b9; background: var(--dg-bg); box-shadow: none; }
.dg-button--submit { width: 100%; border-radius: 11px; }
.dg-button[disabled] { opacity: .7; cursor: wait; transform: none; }

.dg-spinner { display: none; width: 19px; height: 19px; border: 2px solid rgba(255, 255, 255, .45); border-top-color: #fff; border-radius: 50%; animation: dg-spin .75s linear infinite; }
.dg-button.is-loading .dg-spinner { display: block; }

.dg-success { padding: 22px 5px 8px; text-align: center; animation: dg-step-in .45s cubic-bezier(.16, 1, .3, 1); }
.dg-success__icon { display: grid; width: 70px; height: 70px; margin: 0 auto 26px; place-items: center; border-radius: 50%; background: var(--dg-red); box-shadow: 0 12px 34px rgba(229, 52, 43, .3); color: #fff; font-size: 31px; font-weight: 800; }
.dg-success .dg-eyebrow { justify-content: center; }
.dg-success h3 { margin-top: 12px; font-size: clamp(28px, 4vw, 38px); font-weight: 850; letter-spacing: -.03em; }
.dg-success > p:not(.dg-eyebrow):not(.dg-success__note) { max-width: 460px; margin: 12px auto 0; color: var(--dg-ink-2); }
.dg-success__summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.dg-success__summary > div { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px; border: 1px solid var(--dg-line); border-radius: 12px; background: var(--dg-bg); }
.dg-success__summary span { color: var(--dg-muted); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dg-success__summary strong { color: var(--dg-ink); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 20px; }
.dg-success__summary strong b { color: var(--dg-red-dark); }
.dg-success__summary [data-dg-placement-wrap] { border-color: rgba(229, 52, 43, .28); background: #fff6f5; }
.dg-success__summary [data-dg-placement] { color: var(--dg-red-dark); font-size: 27px; }
.dg-success__summary [data-dg-success-category] { color: var(--dg-ink); font: inherit; text-transform: none; }
.dg-success__breakdown {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	max-width: none !important;
	margin: 12px auto 0 !important;
	padding: 12px 16px;
	border: 1px solid var(--dg-line);
	border-radius: 10px;
	background: #fff;
	color: var(--dg-ink-2) !important;
	font-size: 13px;
}
.dg-success__breakdown b {
	color: var(--dg-ink);
	font-family: "DG Space Mono", ui-monospace, monospace;
}
.dg-success__note { margin-top: 16px !important; color: var(--dg-muted); font-size: 12px; }

.dg-prizes {
	position: relative;
	padding: 104px 0;
	background:
		radial-gradient(720px 480px at 94% 0%, rgba(229, 52, 43, .09), transparent 64%),
		linear-gradient(135deg, #f4f2ee, #e9ecef);
	overflow: hidden;
	scroll-margin-top: 82px;
}

.dg-prizes::after {
	position: absolute;
	top: -180px;
	right: -160px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(190, 42, 34, .1);
	border-radius: 50%;
	box-shadow: 0 0 0 70px rgba(190, 42, 34, .025), 0 0 0 140px rgba(190, 42, 34, .018);
	content: "";
	pointer-events: none;
}

.dg-prizes .dg-shell { position: relative; z-index: 1; }
.dg-prizes__heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr); align-items: end; gap: clamp(42px, 8vw, 110px); }
.dg-prizes h2,
.dg-ranking-section h2 { margin-top: 18px; font-size: clamp(36px, 5vw, 58px); font-weight: 880; letter-spacing: -.04em; line-height: 1; }
.dg-prizes__summary { padding-left: 26px; border-left: 4px solid var(--dg-red); }
.dg-prizes__summary strong { display: block; color: var(--dg-ink); font-size: clamp(18px, 2.2vw, 23px); line-height: 1.28; }
.dg-prizes__summary p { margin-top: 10px; color: var(--dg-ink-2); font-size: 15px; }
.dg-prizes__categories { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 54px; }

.dg-prize-category {
	position: relative;
	padding: 27px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 46%),
		#202526;
	box-shadow: 0 24px 60px rgba(30, 34, 35, .16);
	color: #fff;
	overflow: hidden;
}
.dg-prize-category::after { position: absolute; top: -55px; right: -50px; width: 170px; height: 170px; border: 1px solid rgba(229, 52, 43, .22); border-radius: 50%; content: ""; }
.dg-prize-category header { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; }
.dg-prize-category header > span { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(241, 90, 81, .72); border-radius: 50%; background: rgba(229, 52, 43, .14); color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 14px; font-weight: 700; box-shadow: 0 8px 20px rgba(0, 0, 0, .16); }
.dg-prize-category header small { display: block; color: rgba(255, 255, 255, .7); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dg-prize-category h3 { margin-top: 2px; font-size: 25px; font-weight: 850; }
.dg-prize-places { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 25px; }
.dg-prize-place {
	display: grid;
	min-width: 0;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: start;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 13px;
	background: rgba(255, 255, 255, .04);
	text-align: left;
}
.dg-prize-place__medal { display: block; width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .28)); }
.dg-prize-place__body { min-width: 0; }
.dg-prize-place__body > strong { display: block; color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 18px; line-height: 1.15; }
.dg-prize-place__body > p { margin-top: 7px; color: rgba(255, 255, 255, .79); font-size: 13px; font-weight: 650; line-height: 1.48; }
.dg-prize-place--featured {
	grid-template-columns: minmax(175px, .76fr) minmax(0, 1.24fr);
	gap: 0;
	padding: 0;
	border-color: rgba(234, 176, 42, .52);
	background: linear-gradient(135deg, rgba(234, 176, 42, .22), rgba(255, 255, 255, .045));
	overflow: hidden;
}
.dg-prize-place__visual {
	position: relative;
	display: flex;
	min-height: 278px;
	margin: 0;
	padding: 19px 16px 14px;
	border-right: 1px solid rgba(234, 176, 42, .2);
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background:
		radial-gradient(circle at 50% 42%, rgba(234, 176, 42, .17), transparent 58%),
		rgba(7, 9, 9, .38);
}
.dg-prize-place__visual::before { position: absolute; inset: 13px; border: 1px solid rgba(242, 201, 94, .16); border-radius: 11px; content: ""; pointer-events: none; }
.dg-prize-place__visual img { position: relative; z-index: 1; display: block; width: min(100%, 164px); height: 223px; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .34)); }
.dg-prize-place__visual figcaption { position: relative; z-index: 1; margin-top: 7px; color: rgba(255, 255, 255, .48); font-size: 8px; font-style: normal; letter-spacing: .04em; line-height: 1.35; text-align: center; text-transform: uppercase; }
.dg-prize-place--featured .dg-prize-place__body { display: flex; padding: 26px 24px; flex-direction: column; justify-content: center; }
.dg-prize-place__heading { display: flex; align-items: center; gap: 13px; }
.dg-prize-place__heading .dg-prize-place__medal { width: 64px; height: 64px; flex: 0 0 auto; }
.dg-prize-place__heading small { display: block; color: rgba(255, 255, 255, .56); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dg-prize-place__heading strong { display: block; margin-top: 3px; color: #f2c95e; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 21px; line-height: 1.1; }
.dg-prize-place__items { display: grid; gap: 8px; margin: 18px 0 0; padding: 17px 0 0 !important; border-top: 1px solid rgba(242, 201, 94, .18); list-style: none !important; }
.dg-prize-place__items li { position: relative; margin: 0; padding-left: 16px; color: rgba(255, 255, 255, .86); font-size: 12px; font-weight: 650; line-height: 1.38; }
.dg-prize-place__items li::before { position: absolute; top: .48em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #f2c95e; box-shadow: 0 0 0 3px rgba(242, 201, 94, .1); content: ""; }
.dg-prize-place--2 .dg-prize-place__body > strong { color: #d9dce0; }
.dg-prize-place--3 .dg-prize-place__body > strong { color: #d99564; }
.dg-prizes__regulation { display: inline-flex; margin-top: 30px; }

.dg-ranking-section {
	position: relative;
	padding: 104px 0 112px;
	background:
		linear-gradient(105deg, rgba(18, 21, 21, .97), rgba(27, 31, 32, .94)),
		url("../images/pegada-background.webp") center / cover no-repeat,
		#171b1c;
	color: #fff;
	overflow: hidden;
	scroll-margin-top: 82px;
}
.dg-ranking-section::before { position: absolute; inset: 0; background: repeating-linear-gradient(118deg, transparent 0 62px, rgba(255, 255, 255, .014) 62px 63px); content: ""; pointer-events: none; }
.dg-ranking-section .dg-shell { position: relative; z-index: 1; }
.dg-ranking-section__head { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(34px, 5vw, 72px); }
.dg-ranking-section__title > p:last-child { max-width: 650px; margin-top: 20px; color: rgba(255, 255, 255, .66); font-size: 17px; }
.dg-ranking-formula { display: grid; grid-template-columns: minmax(130px, .82fr) 38px minmax(180px, 1.18fr); align-items: stretch; gap: 12px; padding: 16px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; background: rgba(255, 255, 255, .055); box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.dg-ranking-formula__term { display: flex; min-width: 0; min-height: 112px; padding: 18px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 13px; flex-direction: column; justify-content: center; background: rgba(255, 255, 255, .045); }
.dg-ranking-formula__term--quiz { border-color: rgba(229, 52, 43, .34); background: linear-gradient(145deg, rgba(229, 52, 43, .18), rgba(255, 255, 255, .035)); }
.dg-ranking-formula strong { display: block; color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: clamp(22px, 2.3vw, 31px); line-height: 1.05; overflow-wrap: anywhere; }
.dg-ranking-formula__term--quiz strong { color: #ff6e64; font-size: clamp(34px, 4vw, 48px); }
.dg-ranking-formula span { display: block; margin-top: 10px; color: rgba(255, 255, 255, .68); font-size: 11px; font-weight: 750; letter-spacing: .035em; line-height: 1.35; text-transform: uppercase; }
.dg-ranking-formula__plus { display: grid !important; align-self: center; width: 36px; height: 36px; margin: 0 !important; border: 1px solid rgba(229, 52, 43, .46); border-radius: 50%; place-items: center; background: rgba(229, 52, 43, .12); color: #ff6258 !important; font-family: "DG Archivo", Archivo, system-ui, sans-serif; font-size: 25px !important; font-weight: 800 !important; line-height: 1 !important; }
.dg-ranking-formula > p { grid-column: 1 / -1; padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .72); font-size: 13px; font-weight: 700; text-align: center; }
.dg-ranking-status { min-height: 1.5em; margin-top: 42px !important; color: rgba(255, 255, 255, .42); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.dg-ranking-status[data-state="loading"] { color: rgba(255, 255, 255, .7); }
.dg-ranking-status[data-state="error"] { color: #ff8f86; }
.dg-ranking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 12px; }
.dg-ranking-panel { min-width: 0; border: 1px solid rgba(255, 255, 255, .1); border-radius: 19px; background: #f8f8f7; box-shadow: 0 28px 80px rgba(0, 0, 0, .27); color: var(--dg-ink); overflow: hidden; }
.dg-ranking-panel__header { display: flex; align-items: center; gap: 13px; padding: 22px 24px 18px; border-bottom: 1px solid #e1e4e6; background: linear-gradient(100deg, #fff, #f2f3f2); }
.dg-ranking-panel__badge { display: grid; flex: 0 0 auto; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--dg-red-dark); color: #fff; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 14px; font-weight: 700; box-shadow: 0 8px 19px rgba(190, 42, 34, .28); }
.dg-ranking-panel__header small { display: block; color: var(--dg-red-dark); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dg-ranking-panel__header h3 { margin-top: 1px; font-size: 24px; font-weight: 860; }
.dg-ranking-panel__columns,
.dg-ranking-entry { display: grid; grid-template-columns: 68px minmax(0, 1fr) minmax(78px, auto); align-items: center; gap: 10px; }
.dg-ranking-panel__columns { padding: 13px 22px; border-bottom: 1px solid #e6e8e9; background: #eceeed; color: #596164; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dg-ranking-panel__columns span:last-child { text-align: right; }
.dg-form-progress__item span,
.dg-form-step__heading > span,
.dg-prize-category header small,
.dg-ranking-panel__header small,
.dg-ranking-panel__columns {
	font-family: "DG Space Mono", ui-monospace, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.dg-ranking-list { margin: 0; padding: 0 !important; list-style: none !important; }
.dg-ranking-entry { min-height: 62px; padding: 10px 22px; border-bottom: 1px solid #e7e9ea; }
.dg-ranking-entry:last-child { border-bottom: 0; }
.dg-ranking-entry__position { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #727a7d; font-family: "DG Space Mono", ui-monospace, monospace; font-size: 13px; font-weight: 700; }
.dg-ranking-entry__name { min-width: 0; color: var(--dg-ink); font-size: 14px; font-weight: 780; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.dg-ranking-entry__score { color: var(--dg-ink); font-family: "DG Space Mono", ui-monospace, monospace; font-size: 13px; text-align: right; }
.dg-ranking-entry[data-position="1"] { background: linear-gradient(90deg, #fff4c9, #fffaf0 72%); box-shadow: inset 4px 0 #d4a017; }
.dg-ranking-entry[data-position="2"] { background: linear-gradient(90deg, #e8ecef, #f8f9fa 72%); box-shadow: inset 4px 0 #929aa0; }
.dg-ranking-entry[data-position="3"] { background: linear-gradient(90deg, #f4dccb, #fff8f3 72%); box-shadow: inset 4px 0 #b96d3c; }
.dg-ranking-entry[data-position="1"] .dg-ranking-entry__position { background: #d4a017; color: #fff; }
.dg-ranking-entry[data-position="2"] .dg-ranking-entry__position { background: #929aa0; color: #fff; }
.dg-ranking-entry[data-position="3"] .dg-ranking-entry__position { background: #b96d3c; color: #fff; }
.dg-ranking-entry[data-position="1"] .dg-ranking-entry__score { color: #8d6700; }
.dg-ranking-entry[data-position="2"] .dg-ranking-entry__score { color: #626b70; }
.dg-ranking-entry[data-position="3"] .dg-ranking-entry__score { color: #8f4e26; }
.dg-ranking-empty { padding: 42px 24px; color: var(--dg-ink-2); font-size: 14px; text-align: center; }

.dg-faq {
	padding: 104px 0;
	background:
		radial-gradient(680px 520px at 0% 20%, rgba(229, 52, 43, .055), transparent 58%),
		var(--dg-bg-2);
	scroll-margin-top: 82px;
}

.dg-faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 90px; }
.dg-faq__items { border-top: 1px solid #d5d9de; }
.dg-faq details { border-bottom: 1px solid #d5d9de; }
.dg-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 2px; color: var(--dg-ink); font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.dg-faq summary::-webkit-details-marker { display: none; }
.dg-faq summary span { position: relative; flex: 0 0 auto; width: 25px; height: 25px; border: 1px solid #bdc3ca; border-radius: 50%; }
.dg-faq summary span::before,
.dg-faq summary span::after { position: absolute; top: 11px; left: 6px; width: 11px; height: 1px; background: var(--dg-ink); content: ""; transition: transform .2s ease; }
.dg-faq summary span::after { transform: rotate(90deg); }
.dg-faq details[open] summary span { border-color: var(--dg-red); background: var(--dg-red); }
.dg-faq details[open] summary span::before,
.dg-faq details[open] summary span::after { background: #fff; }
.dg-faq details[open] summary span::after { transform: rotate(0); }
.dg-faq details p { max-width: 680px; padding: 0 42px 22px 2px; color: var(--dg-ink-2); font-size: 15px; }

.dg-footer {
	padding: 56px 0 32px;
	background: #171b1c;
	color: #fff;
}

.dg-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas:
		"brand"
		"meta";
	align-items: center;
	gap: 34px;
}

.dg-footer__inner > * { min-width: 0; }

.dg-footer__brand,
.dg-footer__meta {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.dg-footer__brand {
	grid-area: brand;
	width: min(100%, 720px);
	max-width: 720px;
	justify-self: center;
	align-items: center;
	text-align: center;
}

.dg-footer img {
	width: auto;
	max-width: 100%;
	height: 49px;
	object-fit: contain;
	object-position: center;
}

.dg-footer__brand > img,
.dg-footer__brand .dg-footer__logo,
.dg-footer__logo--gomes { height: 58px; }

.dg-footer__brand p,
.dg-footer__text {
	max-width: 590px;
	margin-top: 18px;
	color: rgba(255, 255, 255, .66);
	font-size: 14px;
	line-height: 1.65;
}

.dg-footer__meta {
	grid-area: meta;
	width: 100%;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px 28px;
}

.dg-footer__copyright-group {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 18px;
}

.dg-footer .dg-footer__nonna {
	flex: 0 0 auto;
	width: auto;
	max-width: 96px;
	height: 24px;
}

.dg-footer__meta p,
.dg-footer__copyright,
.dg-footer__inner > p {
	margin: 0;
	color: rgba(255, 255, 255, .48);
	font-size: 13px;
	line-height: 1.55;
}

.dg-footer a { color: #f5a79f; font-size: 13px; font-weight: 700; }
.dg-footer a:hover { color: #fff; }

@media (max-width: 1024px) {
	.dg-hero { padding-top: 40px; }
	.dg-hero__grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
		gap: 42px;
	}
	.dg-hero__copy { max-width: 620px; }
	.dg-hero__media { min-height: 470px; }
	.dg-gauge-card { width: min(620px, 100%); min-height: 430px; }
	.dg-gauge { max-width: 420px; margin-top: 25px; margin-bottom: 8px; }
	.dg-score-band__grid { grid-template-columns: 1fr 340px; gap: 50px; }
	.dg-form-layout { grid-template-columns: 1fr; }
	.dg-form-intro {
		position: static;
		display: grid;
		max-width: none;
		grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
		align-items: center;
		gap: 18px 40px;
	}
	.dg-form-intro__seal { width: min(100%, 300px); margin: -18px auto 0; }
	.dg-form-intro__copy { max-width: 600px; }
	.dg-form-intro ul { grid-template-columns: 1fr; }
	.dg-faq__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
	.dg-header__inner { min-height: 74px; }
	.dg-nav { display: none; }
	.dg-header .dg-button { margin-left: auto; }
	.dg-brand img { height: 47px; }
	.dg-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.dg-hero__copy { max-width: 760px; }
	.dg-hero__media {
		width: min(680px, 100%);
		min-height: 0;
		margin-top: 8px;
		aspect-ratio: 4 / 3;
	}
	.dg-steps { grid-template-columns: 1fr; }
	.dg-step-card { min-height: auto; }
	.dg-step-card h3 { margin-top: 28px; }
	.dg-score-band__grid { grid-template-columns: 1fr; }
	.dg-score-meter { width: min(430px, 100%); }
	.dg-form-intro ul { grid-template-columns: 1fr; }
	.dg-prizes__heading,
	.dg-ranking-section__head { grid-template-columns: 1fr; align-items: start; gap: 32px; }
	.dg-prizes__summary { max-width: 680px; }
	.dg-ranking-formula { width: min(100%, 560px); }
	.dg-prizes__categories,
	.dg-ranking-grid { grid-template-columns: 1fr; }
	.dg-footer__inner { gap: 32px; }
}

@media (max-width: 600px) {
	.dg-shell { width: min(100% - 40px, 1220px); }
	.dg-header__inner { gap: 12px; }
	.dg-brand img { height: 42px; max-width: 142px; object-fit: contain; }
	.dg-button--small { min-height: 42px; padding: 10px 14px; font-size: 12px; animation: none; }
	.dg-hero { padding: 27px 0 62px; }
	.dg-hero__grid { gap: 36px; }
	.dg-hero__logo { margin-bottom: 26px; }
	.dg-hero__logo img { height: 52px; max-width: 182px; object-fit: contain; }
	.dg-hero__media {
		margin-top: 0;
		aspect-ratio: 4 / 3;
		border-radius: 20px;
		box-shadow: 0 22px 50px rgba(36, 42, 43, .16);
	}
	.dg-hero__image-placeholder,
	.dg-hero__media-placeholder { padding: 24px; }
	.dg-hero h1 { font-size: clamp(38px, 12vw, 54px); }
	.dg-hero__lead { font-size: 17px; }
	.dg-hero__actions { align-items: stretch; flex-direction: column; gap: 18px; }
	.dg-hero__actions .dg-button { width: 100%; }
	.dg-text-link { align-self: center; }
	.dg-hero__facts { flex-wrap: wrap; row-gap: 22px; }
	.dg-hero__facts li { width: 50%; padding: 0 12px; border-right: 0; }
	.dg-hero__facts li:first-child { padding-left: 0; }
	.dg-hero__facts li:last-child { width: 100%; padding-left: 0; }
	.dg-gauge-card { min-height: 390px; padding: 22px; border-radius: 19px; }
	.dg-gauge { margin-top: 28px; }
	.dg-gauge__readout { bottom: 5px; }
	.dg-gauge__readout strong { font-size: 43px; }
	.dg-gauge-card__footer span { padding: 13px; }
	.dg-how,
	.dg-score-band,
	.dg-form-section,
	.dg-prizes,
	.dg-ranking-section,
	.dg-faq { padding: 68px 0; }
	.dg-section-heading h2,
	.dg-score-band h2,
	.dg-form-intro h2 { font-size: 34px; }
	.dg-steps { margin-top: 34px; }
	.dg-step-card { padding: 25px; }
	.dg-score-band__grid { gap: 36px; }
	.dg-form-layout { gap: 38px; }
	.dg-form-intro { display: block; }
	.dg-form-intro__seal { width: min(72%, 235px); margin: -8px auto 4px; }
	.dg-form-intro__copy { max-width: none; }
	.dg-form-card { padding: 23px 18px; border-radius: 17px; }
	.dg-form-progress { margin-bottom: 30px; }
	.dg-form-progress__item { flex-direction: column; gap: 5px; }
	.dg-field-grid,
	.dg-category__options,
	.dg-options { grid-template-columns: 1fr; gap: 10px; }
	.dg-field-grid { gap: 0; }
	.dg-question { margin-bottom: 24px; padding-bottom: 24px; }
	fieldset.dg-question + fieldset.dg-question > legend { padding-top: 24px; }
	.dg-option { min-height: 58px; }
	.dg-form-actions { grid-template-columns: 1fr; }
	.dg-button--ghost { order: 2; }
	.dg-success { padding-inline: 0; }
	.dg-success__summary { grid-template-columns: 1fr; }
	.dg-success__breakdown { align-items: flex-start; flex-wrap: wrap; }
	.dg-prizes__heading { gap: 26px; }
	.dg-prizes__summary { padding-left: 18px; }
	.dg-prizes__categories { margin-top: 38px; }
	.dg-prize-category { padding: 21px 17px; }
	.dg-prize-places { gap: 10px; }
	.dg-prize-place { grid-template-columns: 46px minmax(0, 1fr); gap: 12px; padding: 14px 12px; }
	.dg-prize-place__medal { width: 46px; height: 46px; }
	.dg-prize-place__body > strong { font-size: 16px; }
	.dg-prize-place__body > p { font-size: 12px; line-height: 1.5; }
	.dg-prize-place--featured { grid-template-columns: 1fr; }
	.dg-prize-place__visual { min-height: 245px; border-right: 0; border-bottom: 1px solid rgba(234, 176, 42, .2); }
	.dg-prize-place__visual img { width: 155px; height: 205px; }
	.dg-prize-place--featured .dg-prize-place__body { padding: 21px 19px 23px; }
	.dg-prize-place__heading .dg-prize-place__medal { width: 56px; height: 56px; }
	.dg-prize-place__heading strong { font-size: 19px; }
	.dg-prize-place__items { margin-top: 15px; padding-top: 14px !important; }
	.dg-ranking-section__head { gap: 28px; }
	.dg-ranking-formula { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
	.dg-ranking-formula__term { min-height: 0; padding: 17px 18px; }
	.dg-ranking-formula__plus { justify-self: center; }
	.dg-ranking-formula > p { grid-column: 1; }
	.dg-ranking-status { margin-top: 30px !important; text-align: left; }
	.dg-ranking-grid { gap: 15px; }
	.dg-ranking-panel__header { padding-inline: 18px; }
	.dg-ranking-panel__columns,
	.dg-ranking-entry { grid-template-columns: 55px minmax(0, 1fr) minmax(68px, auto); padding-inline: 16px; }
	.dg-faq__grid { gap: 34px; }
	.dg-faq summary { font-size: 15px; }
	.dg-footer { padding: 38px 0 30px; }
	.dg-footer__inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"brand"
			"meta";
		gap: 24px;
	}
	.dg-footer__brand { max-width: none; align-items: center; text-align: center; }
	.dg-footer__brand > img,
	.dg-footer__brand .dg-footer__logo,
	.dg-footer__logo--gomes { height: 55px; }
	.dg-footer__brand p,
	.dg-footer__text { margin-top: 16px; }
	.dg-footer__meta {
		grid-column: auto;
		padding-top: 22px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, .1);
		border-left: 0;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.dg-footer__copyright-group { flex-direction: column; gap: 12px; }
	.dg-footer .dg-footer__nonna { height: 23px; }
	.dg-footer__inner > p { grid-column: auto; }
}

@media (max-width: 380px) {
	.dg-header .dg-button--small { padding-inline: 11px; font-size: 11px; }
	.dg-brand img { max-width: 126px; }
	.dg-gauge-card__footer { grid-template-columns: 1fr; }
	.dg-gauge-card { min-height: 450px; }
}

@media (prefers-reduced-motion: reduce) {
	.dg-landing *,
	.dg-landing *::before,
	.dg-landing *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
