:root {
	--ar-ink: #0c1510;
	--ar-forest-deep: #0a1f13;
	--ar-forest-medium: #113320;
	--ar-forest-soft: #edf3ee;
	--ar-emerald: #1b5235;
	--ar-gold-accent: #c49a62;
	--ar-gold-hover: #b38851;
	--ar-gold-soft: #fbf6ee;
	--ar-gold-border: #e3d5c1;
	--ar-paper: #faf9f6;
	--ar-paper-dark: #f2efe9;
	--ar-white: #ffffff;
	--ar-muted: #57635c;
	--ar-line: #e1ded6;
	--ar-success: #195438;
	--ar-error: #9f321b;
	
	--ar-shadow-sm: 0 4px 10px rgba(10, 31, 19, 0.03);
	--ar-shadow: 0 20px 50px rgba(10, 31, 19, 0.06);
	--ar-shadow-lg: 0 35px 80px rgba(10, 31, 19, 0.12);
	--ar-radius-sm: 6px;
	--ar-radius: 12px;
	--ar-radius-lg: 24px;
	
	--ar-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--ar-serif: 'Fraunces', Georgia, serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--ar-paper);
	color: var(--ar-ink);
	font-family: var(--ar-font);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

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

button {
	cursor: pointer;
}

h1, h2, h3, p {
	overflow-wrap: anywhere;
}

h1, h2, h3 {
	margin-top: 0;
	letter-spacing: -0.03em;
	font-weight: 700;
}

p {
	margin-top: 0;
}

/* Marcação de escaneabilidade focada no usuário */
p strong, li strong {
	color: var(--ar-forest-deep);
	font-weight: 700;
}

::selection {
	background: var(--ar-forest-medium);
	color: var(--ar-white);
}

:focus-visible {
	outline: 3px solid var(--ar-gold-accent);
	outline-offset: 4px;
}

/* Estrutura de Container */
.ar-shell {
	width: min(1200px, calc(100% - 48px));
	margin-inline: auto;
}

.ar-hero__grid > *,
.ar-editorial-grid > *,
.ar-process__grid > *,
.ar-documents__grid > *,
.ar-proof__grid > *,
.ar-faq__grid > *,
.ar-contact__grid > * {
	min-width: 0;
}

.ar-skip-link {
	position: fixed;
	z-index: 9999;
	left: 16px;
	top: -90px;
	background: var(--ar-white);
	color: var(--ar-ink);
	padding: 12px 18px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: var(--ar-shadow-lg);
	border-radius: var(--ar-radius-sm);
}

.ar-skip-link:focus {
	top: 16px;
}

.ar-kicker, .ar-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--ar-emerald);
}

.ar-kicker--light {
	color: var(--ar-gold-accent);
}

.ar-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.ar-eyebrow span {
	width: 32px;
	height: 3px;
	border-radius: 999px;
	background: var(--ar-gold-accent);
}

/* Botões com transições e CTAs chamativos */
.ar-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 56px;
	border: 1px solid var(--ar-emerald);
	border-radius: var(--ar-radius);
	background: var(--ar-emerald);
	padding: 14px 28px;
	color: var(--ar-white);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(27, 82, 53, 0.2);
	position: relative;
	overflow: hidden;
	transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-button span {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.ar-button:hover {
	background: var(--ar-forest-medium);
	border-color: var(--ar-forest-medium);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(17, 51, 32, 0.3);
}

.ar-button:hover span {
	transform: translateX(4px);
}

.ar-button--small {
	min-height: 46px;
	padding: 10px 20px;
	font-size: 13px;
}

.ar-button--outline, .ar-button--ghost {
	background: transparent;
	color: var(--ar-ink);
	border-color: var(--ar-line);
	box-shadow: none;
}

.ar-button--outline:hover, .ar-button--ghost:hover {
	background: var(--ar-forest-medium);
	border-color: var(--ar-forest-medium);
	color: var(--ar-white);
}

.ar-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
}

.ar-text-link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--ar-emerald);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid rgba(27, 82, 53, 0.2);
	padding-bottom: 3px;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.ar-text-link:hover {
	color: var(--ar-forest-medium);
	border-color: var(--ar-forest-medium);
}

/* Header & Menu */
.ar-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(250, 249, 246, 0.85);
	border-bottom: 1px solid rgba(12, 21, 16, 0.06);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: background 0.3s ease;
}

.admin-bar .ar-header {
	top: 32px;
}

.ar-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
}

.ar-brand {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
}

.ar-brand img, .ar-brand .custom-logo {
	width: auto;
	height: 48px;
	max-height: 48px;
	object-fit: contain;
}

.ar-brand .custom-logo-link {
	display: flex;
}

.ar-brand > span {
	border-left: 1px solid var(--ar-line);
	padding-left: 16px;
	color: var(--ar-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	max-width: 100px;
}

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

.ar-nav a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--ar-ink);
	text-decoration: none;
	padding-block: 8px;
}

.ar-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--ar-gold-accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ar-nav a:hover {
	color: var(--ar-emerald);
}

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

.ar-menu-button {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--ar-line);
	border-radius: var(--ar-radius-sm);
	background: transparent;
	padding: 12px;
}

.ar-menu-button span {
	display: block;
	height: 2px;
	background: var(--ar-ink);
	margin: 4px 0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-menu-button[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.ar-menu-button[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.ar-menu-button[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.ar-mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--ar-white);
	border-bottom: 1px solid var(--ar-line);
	box-shadow: var(--ar-shadow-lg);
}

.ar-mobile-menu nav {
	display: grid;
	width: min(100% - 40px, 520px);
	margin: auto;
	padding: 16px 0 24px;
}

.ar-mobile-menu a {
	display: flex;
	justify-content: space-between;
	padding: 16px 4px;
	border-bottom: 1px solid rgba(12, 21, 16, 0.05);
	font-weight: 700;
	text-decoration: none;
}

.ar-mobile-menu a:last-child {
	border-bottom: none;
}

/* Seção Hero - NOVA ABORDAGEM CINEMATOGRÁFICA (Full-bleed Background Hero) */
.ar-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	background: #050d09;
	color: #e3ede7;
	overflow: hidden;
}

.ar-hero__grid {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	width: min(1200px, calc(100% - 48px));
	margin-inline: auto;
	padding-block: 100px;
}

.ar-hero__copy {
	position: relative;
	z-index: 10;
	max-width: 720px;
}

.ar-hero .ar-eyebrow {
	color: var(--ar-gold-accent);
}

.ar-hero h1 {
	margin-bottom: 24px;
	font-family: var(--ar-serif);
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.ar-hero h1::first-line {
	color: var(--ar-gold-accent);
}

.ar-hero__text {
	max-width: 620px;
	margin-bottom: 0;
	color: #b0c2b7;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.8;
}

/* CTAs customizados do Hero */
.ar-hero .ar-actions .ar-button:not(.ar-button--ghost) {
	background: var(--ar-gold-accent);
	border-color: var(--ar-gold-accent);
	color: var(--ar-forest-deep);
	box-shadow: 0 4px 15px rgba(196, 154, 98, 0.3);
}

.ar-hero .ar-actions .ar-button:not(.ar-button--ghost):hover {
	background: var(--ar-gold-hover);
	border-color: var(--ar-gold-hover);
	box-shadow: 0 12px 28px rgba(196, 154, 98, 0.45);
	transform: translateY(-2px);
}

.ar-hero .ar-actions .ar-button--ghost {
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.ar-hero .ar-actions .ar-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #ffffff;
}

.ar-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
	color: #b0c2b7;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ar-hero__trust li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ar-hero__trust li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ar-gold-accent);
}

/* Transformação da área visual no Background do Hero */
.ar-hero__visual {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
}

.ar-hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #050d09 35%, rgba(5, 13, 9, 0.9) 60%, rgba(5, 13, 9, 0.4) 100%);
	z-index: 2;
}

.ar-hero__visual > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.7) contrast(1.05);
}

/* Ocultar notas flutuantes para limpar o design */
.ar-hero__note {
	display: none !important;
}

/* Seção de Alerta e Urgência */
.ar-urgent {
	background: var(--ar-gold-soft);
	border-block: 1px solid var(--ar-gold-border);
}

.ar-urgent__grid {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 40px;
	padding-block: 32px;
}

.ar-urgent p, .ar-urgent h2 {
	margin-bottom: 0;
}

.ar-urgent h2 {
	font-family: var(--ar-serif);
	font-size: 22px;
	font-weight: 800;
	color: var(--ar-forest-deep);
}

.ar-urgent p {
	color: var(--ar-muted);
	font-size: 14px;
	line-height: 1.6;
}

.ar-urgent a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ar-emerald);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	white-space: nowrap;
}

.ar-urgent a:hover {
	color: var(--ar-forest-medium);
}

.ar-urgent a span {
	transition: transform 0.2s ease;
}

.ar-urgent a:hover span {
	transform: translateX(4px);
}

/* Seções Gerais */
.ar-section {
	padding-block: 120px;
}

.ar-section-heading {
	max-width: 540px;
}

.ar-section-heading--wide {
	max-width: 800px;
	margin-bottom: 64px;
}

.ar-section-heading h2,
.ar-process__heading h2,
.ar-documents__copy h2,
.ar-faq__heading h2 {
	margin-bottom: 24px;
	font-family: var(--ar-serif);
	font-size: clamp(34px, 4.2vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	color: var(--ar-forest-deep);
}

.ar-section-heading > p:last-child,
.ar-process__heading > p,
.ar-documents__copy > p,
.ar-faq__heading > p {
	color: var(--ar-muted);
	font-size: 17px;
	line-height: 1.7;
}

/* Critérios de Elegibilidade */
.ar-editorial-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 80px;
	align-items: start;
}

.ar-criteria {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 2px solid var(--ar-forest-deep);
}

.ar-criteria li {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid var(--ar-line);
}

.ar-criteria > li > span {
	padding-top: 4px;
	color: var(--ar-gold-accent);
	font-family: var(--ar-serif);
	font-size: 20px;
	font-weight: 800;
}

.ar-criteria h3 {
	margin-bottom: 8px;
	font-size: 20px;
	color: var(--ar-forest-deep);
}

.ar-criteria p {
	margin-bottom: 0;
	color: var(--ar-muted);
	font-size: 15px;
}

/* Seção de Enquadramento (Diferenças) */
.ar-distinction {
	position: relative;
	background: var(--ar-forest-deep);
	color: var(--ar-white);
	padding-block: 120px;
	overflow: hidden;
}

.ar-distinction::before {
	content: "";
	position: absolute;
	right: -10%;
	top: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(196, 154, 98, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.ar-distinction__intro {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	column-gap: 80px;
	align-items: end;
	margin-bottom: 64px;
}

.ar-distinction__intro .ar-kicker {
	grid-column: 1/-1;
	margin-bottom: 12px;
}

.ar-distinction__intro h2 {
	margin: 0;
	font-family: var(--ar-serif);
	font-size: clamp(34px, 4.2vw, 52px);
	line-height: 1.1;
	color: var(--ar-white);
}

.ar-distinction__intro > p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.ar-distinction__list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--ar-radius);
	overflow: hidden;
}

.ar-distinction__list article {
	background: rgba(255, 255, 255, 0.03);
	min-height: 280px;
	padding: 40px;
	transition: background 0.3s ease;
}

.ar-distinction__list article:hover {
	background: rgba(255, 255, 255, 0.06);
}

.ar-distinction__list span {
	display: block;
	margin-bottom: 48px;
	color: var(--ar-gold-accent);
	font-size: 12px;
	font-weight: 800;
}

.ar-distinction__list h3 {
	margin-bottom: 16px;
	font-size: 22px;
	color: var(--ar-white);
}

.ar-distinction__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.ar-legal-note {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 40px 0 0;
	padding-left: 24px;
	border-left: 3px solid var(--ar-gold-accent);
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.6;
}

/* Situações e Provas */
.ar-situations {
	background: var(--ar-paper-dark);
}

.ar-situations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.ar-situation {
	display: grid;
	grid-template-columns: 80px 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 40px;
	background: var(--ar-white);
	border-radius: var(--ar-radius);
	box-shadow: var(--ar-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ar-situation:hover {
	transform: translateY(-4px);
	box-shadow: var(--ar-shadow);
}

.ar-situation__number {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid var(--ar-gold-border);
	background: var(--ar-gold-soft);
	color: var(--ar-emerald);
	font-family: var(--ar-serif);
	font-size: 24px;
	font-weight: 800;
	border-radius: 50%;
}

.ar-situation h3 {
	margin: 0;
	font-family: var(--ar-serif);
	font-size: 28px;
	color: var(--ar-forest-deep);
}

.ar-situation p {
	margin-bottom: 12px;
	color: var(--ar-ink);
	font-size: 16px;
}

.ar-situation small {
	display: block;
	color: var(--ar-muted);
	font-size: 13px;
	font-weight: 500;
}

/* Como Atuamos (Processo) */
.ar-process {
	background: var(--ar-white);
}

.ar-process__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 96px;
	align-items: start;
}

.ar-process__heading {
	position: sticky;
	top: 130px;
}

.ar-process__heading .ar-text-link {
	margin-top: 24px;
}

.ar-timeline {
	counter-reset: steps;
	margin: 0;
	padding: 0 0 0 40px;
	list-style: none;
	border-left: 2px solid var(--ar-line);
}

.ar-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	padding: 0 0 48px;
}

.ar-timeline li:last-child {
	padding-bottom: 0;
}

.ar-timeline li::before {
	content: "";
	position: absolute;
	left: -49px;
	top: 6px;
	width: 16px;
	height: 16px;
	border: 4px solid var(--ar-white);
	border-radius: 50%;
	background: var(--ar-emerald);
	box-shadow: 0 0 0 2px var(--ar-emerald);
	transition: background-color 0.3s ease;
}

.ar-timeline li:hover::before {
	background: var(--ar-gold-accent);
}

.ar-timeline > li > span {
	color: var(--ar-gold-accent);
	font-family: var(--ar-serif);
	font-size: 18px;
	font-weight: 800;
}

.ar-timeline h3 {
	margin-bottom: 8px;
	font-size: 22px;
	color: var(--ar-forest-deep);
}

.ar-timeline p {
	margin: 0;
	color: var(--ar-muted);
	font-size: 15px;
}

/* Documentos / Checklist */
.ar-documents {
	background: linear-gradient(135deg, var(--ar-forest-soft) 0%, var(--ar-white) 100%);
}

.ar-documents__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 96px;
	align-items: center;
}

.ar-document-sheet {
	position: relative;
	background: var(--ar-white);
	padding: 48px;
	border-radius: var(--ar-radius);
	box-shadow: var(--ar-shadow-lg);
	border: 1px solid rgba(12, 21, 16, 0.04);
}

.ar-document-sheet__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--ar-forest-deep);
}

.ar-document-sheet__head span {
	color: var(--ar-emerald);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.ar-document-sheet__head small {
	color: var(--ar-muted);
	font-size: 11px;
}

.ar-document-sheet ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ar-document-sheet li {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--ar-line);
	font-size: 15px;
	font-weight: 700;
	color: var(--ar-forest-deep);
}

.ar-document-sheet li:last-child {
	border-bottom: none;
}

.ar-document-sheet li span {
	color: var(--ar-gold-accent);
	font-family: var(--ar-serif);
	font-size: 14px;
	font-weight: 800;
}

/* Seção de Prova e Autoridade (Brasil e Silveira) */
.ar-proof {
	position: relative;
	background: var(--ar-forest-deep);
	color: var(--ar-white);
	padding-block: 120px;
	overflow: hidden;
}

.ar-proof::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.08;
	background-image: radial-gradient(var(--ar-gold-accent) 1px, transparent 1px);
	background-size: 24px 24px;
}

.ar-proof__grid {
	position: relative;
	display: grid;
	grid-template-columns: 140px 1fr 340px;
	gap: 64px;
	align-items: center;
}

.ar-proof__mark {
	display: grid;
	place-items: center;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-family: var(--ar-serif);
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.05em;
	color: var(--ar-gold-accent);
	border-radius: var(--ar-radius);
	background: rgba(255, 255, 255, 0.02);
}

.ar-proof__copy h2 {
	margin: 0 0 20px;
	font-family: var(--ar-serif);
	font-size: clamp(34px, 4.2vw, 52px);
	line-height: 1.1;
	color: var(--ar-white);
}

.ar-proof__copy > p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.7;
}

.ar-proof__facts {
	display: grid;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ar-radius);
	padding: 16px 28px;
}

.ar-proof__facts div {
	display: grid;
	gap: 4px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-proof__facts div:last-child {
	border-bottom: none;
}

.ar-proof__facts strong {
	font-size: 16px;
	font-weight: 700;
	color: var(--ar-white);
}

.ar-proof__facts span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

/* FAQ */
.ar-faq {
	background: var(--ar-paper);
}

.ar-faq__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 96px;
	align-items: start;
}

.ar-faq__heading {
	position: sticky;
	top: 130px;
}

.ar-faq__items {
	border-top: 2px solid var(--ar-forest-deep);
}

.ar-faq details {
	border-bottom: 1px solid var(--ar-line);
	transition: background-color 0.3s ease;
}

.ar-faq details:hover {
	background-color: rgba(12, 21, 16, 0.01);
}

.ar-faq summary {
	display: grid;
	grid-template-columns: 50px 1fr 24px;
	align-items: center;
	gap: 16px;
	padding: 28px 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--ar-forest-deep);
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

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

.ar-faq summary > span {
	color: var(--ar-gold-accent);
	font-family: var(--ar-serif);
	font-size: 14px;
	font-weight: 800;
}

.ar-faq summary i {
	position: relative;
	width: 20px;
	height: 20px;
}

.ar-faq summary i::before,
.ar-faq summary i::after {
	content: "";
	position: absolute;
	top: 9px;
	left: 4px;
	width: 12px;
	height: 2px;
	background: var(--ar-forest-deep);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-faq summary i::after {
	transform: rotate(90deg);
}

.ar-faq details[open] summary i::after {
	transform: rotate(0);
}

.ar-faq details > div {
	padding: 0 40px 28px 66px;
}

.ar-faq details p {
	max-width: 680px;
	margin: 0;
	color: var(--ar-muted);
	font-size: 15px;
	line-height: 1.6;
}

/* Seção de Contato e Form */
.ar-contact {
	position: relative;
	background: var(--ar-forest-deep);
	color: var(--ar-white);
	padding-block: 120px;
	overflow: hidden;
}

.ar-contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 10% 20%, rgba(196, 154, 98, 0.1), transparent 40%);
	pointer-events: none;
}

.ar-contact__grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 96px;
	align-items: start;
}

.ar-contact__copy {
	position: sticky;
	top: 130px;
}

.ar-contact__copy h2 {
	margin: 0 0 24px;
	font-family: var(--ar-serif);
	font-size: clamp(34px, 4.2vw, 52px);
	line-height: 1.1;
	color: var(--ar-white);
}

.ar-contact__copy > p {
	max-width: 590px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.ar-contact__assurances {
	display: grid;
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ar-contact__assurances > div {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ar-contact__assurances span {
	color: var(--ar-gold-accent);
	font-family: var(--ar-serif);
	font-size: 14px;
	font-weight: 800;
}

.ar-contact__assurances p {
	display: grid;
	gap: 4px;
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.ar-contact__assurances strong {
	color: var(--ar-white);
	font-size: 14px;
	font-weight: 700;
}

.ar-contact__whatsapp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ar-contact__whatsapp strong {
	color: var(--ar-gold-accent);
}

.ar-contact__whatsapp:hover {
	color: var(--ar-white);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Card do Formulário */
.ar-form-card {
	background: var(--ar-white);
	color: var(--ar-ink);
	padding: 48px;
	border-radius: var(--ar-radius);
	box-shadow: var(--ar-shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-form-card__head {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--ar-line);
}

.ar-form-card__head span {
	color: var(--ar-emerald);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.ar-form-card__head p {
	margin: 8px 0 0;
	color: var(--ar-muted);
	font-size: 13px;
}

.ar-lead-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.ar-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.ar-field--full {
	grid-column: 1 / -1;
}

.ar-field label {
	font-size: 12px;
	font-weight: 700;
	color: var(--ar-forest-deep);
}

.ar-field input,
.ar-field select {
	width: 100%;
	height: 52px;
	border: 1px solid var(--ar-line);
	border-radius: var(--ar-radius-sm);
	background: var(--ar-white);
	padding: 0 16px;
	color: var(--ar-ink);
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ar-field input:focus,
.ar-field select:focus {
	border-color: var(--ar-emerald);
	box-shadow: 0 0 0 4px rgba(27, 82, 53, 0.08);
}

.ar-field input::placeholder {
	color: #a3a69f;
}

.ar-consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 12px;
	align-items: start;
	color: var(--ar-muted);
	font-size: 12px;
	line-height: 1.6;
	cursor: pointer;
}

.ar-consent input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--ar-emerald);
}

.ar-consent a {
	color: var(--ar-emerald);
	font-weight: 600;
	text-decoration: underline;
}

.ar-button--submit {
	width: 100%;
	border: none;
	min-height: 58px;
	background: var(--ar-gold-accent);
	color: var(--ar-white);
	box-shadow: 0 4px 12px rgba(196, 154, 98, 0.2);
}

.ar-button--submit:hover {
	background: var(--ar-gold-hover);
	box-shadow: 0 12px 28px rgba(196, 154, 98, 0.35);
}

.ar-form-card__note {
	margin: 0;
	color: var(--ar-muted);
	font-size: 11px;
	text-align: center;
	line-height: 1.4;
}

.ar-form-message {
	display: grid;
	gap: 4px;
	margin-bottom: 28px;
	padding: 16px 20px;
	border-left: 4px solid;
	border-radius: 0 var(--ar-radius-sm) var(--ar-radius-sm) 0;
	font-size: 13px;
}

.ar-form-message--success {
	background: #eef7f2;
	border-color: var(--ar-success);
	color: #113c27;
}

.ar-form-message--error {
	background: #fdf3f1;
	border-color: var(--ar-error);
	color: #722213;
}

.ar-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Rodapé */
.ar-footer {
	background: var(--ar-forest-deep);
	color: var(--ar-white);
	padding: 80px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	gap: 80px;
	padding-bottom: 64px;
}

.ar-footer__brand img {
	width: auto;
	height: 48px;
	margin-bottom: 24px;
	object-fit: contain;
}

.ar-footer__brand p {
	max-width: 400px;
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
}

.ar-footer__label {
	margin-bottom: 20px;
	color: var(--ar-gold-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ar-footer__grid > div:not(:first-child) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ar-footer__grid a {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-decoration: none;
}

.ar-footer__grid a:hover {
	color: var(--ar-white);
	text-decoration: underline;
}

.ar-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
}

.ar-footer__bottom p {
	margin: 0;
}

.ar-mobile-cta {
	display: none;
}

.ar-generic {
	min-height: 60vh;
	padding-block: 120px;
}

/* Efeito de Revelação (Scroll Reveal) */
.ar-js .ar-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-js .ar-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Responsividade e Ajustes de Mídia */
@media (max-width: 1080px) {
	.ar-nav {
		display: none;
	}
	
	.ar-header__actions .ar-button--outline {
		display: none;
	}
	
	.ar-menu-button {
		display: block;
	}
	
	.ar-hero__grid {
		padding-block: 80px;
	}
	
	.ar-hero h1 {
		font-size: 46px;
	}
	
	.ar-editorial-grid,
	.ar-process__grid,
	.ar-documents__grid,
	.ar-faq__grid {
		gap: 64px;
	}
	
	.ar-proof__grid {
		grid-template-columns: 120px 1fr 300px;
		gap: 40px;
	}
	
	.ar-contact__grid {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 64px;
	}
}

@media (max-width: 900px) {
	.admin-bar .ar-header {
		top: 46px;
	}
	
	.ar-shell {
		width: min(720px, calc(100% - 36px));
	}
	
	.ar-section {
		padding-block: 90px;
	}
	
	.ar-header__actions {
		margin-left: auto;
	}
	
	.ar-header__actions .ar-button {
		display: none;
	}
	
	.ar-hero {
		min-height: auto;
	}
	
	.ar-hero__grid {
		padding-block: 80px;
		gap: 32px;
	}
	
	.ar-hero__copy {
		max-width: 100%;
	}
	
	.ar-hero h1 {
		font-size: clamp(34px, 6vw, 50px);
	}
	
	.ar-hero__visual {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}
	
	.ar-hero__visual::after {
		background: linear-gradient(180deg, rgba(5, 13, 9, 0.75) 0%, rgba(5, 13, 9, 0.95) 70%, #050d09 100%);
	}
	
	.ar-hero__visual > img {
		border-radius: 0;
	}
	
	.ar-urgent__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
		justify-items: center;
		padding-block: 40px;
	}
	
	.ar-urgent a {
		margin-top: 8px;
	}
	
	.ar-editorial-grid,
	.ar-process__grid,
	.ar-documents__grid,
	.ar-faq__grid,
	.ar-contact__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.ar-process__heading,
	.ar-faq__heading,
	.ar-contact__copy {
		position: static;
		max-width: 100%;
	}
	
	.ar-distinction__intro {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 48px;
	}
	
	.ar-distinction__list {
		grid-template-columns: 1fr;
	}
	
	.ar-distinction__list article {
		min-height: auto;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
	
	.ar-distinction__list article:last-child {
		border-bottom: none;
	}
	
	.ar-situation {
		grid-template-columns: 60px 1fr;
		gap: 24px;
	}
	
	.ar-situation p {
		grid-column: 2;
	}
	
	.ar-timeline {
		margin-left: 8px;
	}
	
	.ar-proof__grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
		justify-items: center;
	}
	
	.ar-proof__facts {
		width: 100%;
	}
	
	.ar-form-card {
		padding: 36px;
	}
	
	.ar-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}
	
	.ar-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	html {
		scroll-padding-top: 80px;
	}
	
	.ar-shell {
		width: min(480px, calc(100% - 24px));
	}
	
	.ar-header__inner {
		min-height: 76px;
	}
	
	.ar-brand img, .ar-brand .custom-logo {
		height: 40px;
	}
	
	.ar-brand > span {
		display: none;
	}
	
	.ar-section {
		padding-block: 72px;
	}
	
	.ar-section-heading h2,
	.ar-process__heading h2,
	.ar-documents__copy h2,
	.ar-faq__heading h2 {
		font-size: 32px;
	}
	
	.ar-hero__grid {
		padding-top: 50px;
	}
	
	.ar-hero h1 {
		font-size: 32px;
	}
	
	.ar-hero__text {
		font-size: 16px;
	}
	
	.ar-actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	
	.ar-button {
		width: 100%;
	}
	
	.ar-criteria li {
		grid-template-columns: 40px 1fr;
		gap: 16px;
		padding: 24px 0;
	}
	
	.ar-criteria h3 {
		font-size: 18px;
	}
	
	.ar-distinction__intro h2 {
		font-size: 32px;
	}
	
	.ar-situation {
		grid-template-columns: 50px 1fr;
		gap: 16px;
		padding: 28px;
	}
	
	.ar-situation h3 {
		font-size: 22px;
	}
	
	.ar-timeline {
		padding-left: 24px;
	}
	
	.ar-timeline li {
		grid-template-columns: 1fr;
		gap: 8px;
		padding-bottom: 36px;
	}
	
	.ar-timeline li::before {
		left: -33px;
	}
	
	.ar-timeline > li > span {
		font-size: 16px;
	}
	
	.ar-document-sheet {
		padding: 32px 24px;
	}
	
	.ar-document-sheet__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.ar-faq summary {
		grid-template-columns: 40px 1fr 20px;
		gap: 8px;
		font-size: 15px;
	}
	
	.ar-faq details > div {
		padding: 0 0 20px 48px;
	}
	
	.ar-contact__copy h2 {
		font-size: 32px;
	}
	
	.ar-contact__whatsapp {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.ar-form-card {
		padding: 28px 20px;
	}
	
	.ar-lead-form {
		grid-template-columns: 1fr;
	}
	
	.ar-footer {
		padding-top: 64px;
		padding-bottom: 96px;
	}
	
	.ar-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.ar-footer__bottom {
		flex-direction: column;
		gap: 16px;
	}
	
	.ar-mobile-cta {
		position: fixed;
		z-index: 95;
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		grid-template-columns: 0.9fr 1.1fr;
		background: var(--ar-white);
		border-top: 1px solid var(--ar-line);
		box-shadow: 0 -4px 20px rgba(10, 31, 19, 0.08);
		padding: 10px 16px max(10px, env(safe-area-inset-bottom));
	}
	
	.ar-mobile-cta a {
		display: grid;
		place-items: center;
		min-height: 48px;
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		text-decoration: none;
		border-radius: var(--ar-radius-sm);
	}
	
	.ar-mobile-cta a:first-child {
		color: var(--ar-forest-deep);
	}
	
	.ar-mobile-cta a:last-child {
		background: var(--ar-emerald);
		color: var(--ar-white);
		box-shadow: 0 4px 10px rgba(27, 82, 53, 0.15);
	}
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	
	.ar-js .ar-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	
	.ar-button,
	.ar-nav a::after {
		transition: none;
	}
}
