:root {
	--ivory: #f3f8fc;
	--paper: #ffffff;
	--blue: #106ebe;
	--blue-deep: #0a375c;
	--blue-mid: #0d5f9f;
	--mint: #0ffcbe;
	--mint-soft: #dffff5;
	--mint-ink: #087f67;
	--ink: #0b2c49;
	--muted: #526d7e;
	--line: #c9ddea;
}

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

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

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-is-open {
	overflow: hidden;
}

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

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

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

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 12px 16px;
	background: var(--blue-deep);
	color: #fff;
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 0.2s ease;
}

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

.site-header {
	position: relative;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1240px;
	height: 88px;
	margin: 0 auto;
	padding: 0 28px;
	border-bottom: 1px solid var(--line);
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand-logo-frame {
	position: relative;
	display: block;
	width: 184px;
	height: 56px;
	overflow: hidden;
	background: transparent;
}

.brand-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 276px;
	max-width: none;
	height: auto;
	transform: translate(-50%, -50%);
}

.brand-logo.custom-brand-logo {
	width: auto;
	max-width: 100%;
	max-height: 52px;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
}

.primary-menu {
	display: flex;
	gap: 34px;
	align-items: center;
	margin: 0;
	padding: 0;
	color: #56605a;
	font-size: 14px;
	list-style: none;
}

.primary-navigation a,
.text-link {
	transition: color 0.2s ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--mint-ink);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: var(--blue-deep);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-icon {
	position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	position: absolute;
	left: 0;
	content: "";
}

.menu-toggle-icon::before {
	top: -7px;
}

.menu-toggle-icon::after {
	top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 17px 22px;
	border: 0;
	border-radius: 2px;
	background: var(--blue);
	box-shadow: 0 10px 24px rgba(16, 110, 190, 0.16);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
	background: var(--blue-deep);
	transform: translateY(-2px);
}

.button-small {
	padding: 13px 18px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--mint);
	outline-offset: 4px;
}

.hero {
	display: grid;
	grid-template-columns: 1.16fr 0.84fr;
	gap: 82px;
	align-items: center;
	width: 100%;
	max-width: 1240px;
	min-height: 690px;
	margin: 0 auto;
	padding: 84px 28px 78px;
}

.eyebrow,
.section-number,
.card-index {
	color: var(--mint-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2 {
	color: var(--blue-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

h1 {
	max-width: 700px;
	margin: 25px 0 30px;
	font-size: clamp(54px, 6vw, 84px);
	line-height: 0.98;
	letter-spacing: -0.045em;
}

h1 em,
h2 em {
	color: var(--blue);
	font-weight: 400;
}

.hero-lead {
	max-width: 600px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 28px;
	align-items: center;
	margin-top: 35px;
}

.text-link {
	padding-bottom: 5px;
	border-bottom: 1px solid #9d968a;
	font-size: 14px;
	font-weight: 700;
}

.trust-row {
	display: flex;
	gap: 13px;
	margin-top: 55px;
	color: #777e79;
	font-size: 12px;
}

.hero-visual {
	position: relative;
	display: grid;
	min-height: 510px;
	place-items: center;
}

.hero-visual::before {
	position: absolute;
	inset: 0 25px 30px 0;
	border-radius: 48% 48% 3px 3px;
	background: var(--mint-soft);
	content: "";
}

.hero-visual::after {
	position: absolute;
	top: 8px;
	right: -15px;
	width: 185px;
	height: 185px;
	border: 1px solid var(--mint);
	border-radius: 50%;
	content: "";
}

.portrait-placeholder {
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 76%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 48% 48% 2px 2px;
	background: linear-gradient(145deg, var(--blue), var(--blue-deep));
	box-shadow: 0 22px 55px rgba(16, 110, 190, 0.2);
	color: #fff;
}

.portrait-placeholder.has-photo {
	background: var(--blue-deep);
}

.portrait-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.portrait-monogram {
	font: 400 88px/1 Georgia, serif;
	opacity: 0.23;
}

.portrait-placeholder p {
	max-width: 220px;
	margin: 18px 0 0;
	opacity: 0.7;
	font-size: 11px;
	line-height: 1.8;
	letter-spacing: 0.16em;
	text-align: center;
	text-transform: uppercase;
}

.result-note {
	position: absolute;
	z-index: 2;
	right: -3px;
	bottom: 5px;
	display: flex;
	gap: 14px;
	width: 255px;
	padding: 20px;
	border-top: 3px solid var(--mint);
	background: var(--paper);
	box-shadow: 0 14px 35px rgba(11, 44, 73, 0.14);
}

.result-note p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}

.result-note strong {
	color: var(--blue-deep);
}

.note-icon {
	color: var(--mint-ink);
	font-size: 22px;
}

.intro,
.about {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 65px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 110px 28px 60px;
}

.intro h2,
.about h2,
.possibilities h2 {
	margin-bottom: 22px;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.intro > div > p,
.about p {
	max-width: 680px;
	color: var(--muted);
	line-height: 1.8;
}

.service-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px 120px;
}

.service-card {
	display: flex;
	flex-direction: column;
	min-height: 510px;
	padding: 52px;
	color: #fff;
}

.green-card {
	background: var(--blue);
}

.clay-card {
	background: var(--mint);
	color: var(--blue-deep);
}

.service-card .card-index {
	color: var(--mint);
}

.clay-card .card-index {
	color: var(--blue-deep);
}

.service-card h3 {
	margin: 25px 0 16px;
	font: 400 38px Georgia, serif;
}

.service-card > p {
	line-height: 1.7;
	opacity: 0.82;
}

.service-card ul {
	margin: 22px 0 30px;
	padding: 0;
	list-style: none;
}

.service-card li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 14px;
}

.service-card li::before {
	margin-right: 12px;
	color: var(--mint);
	content: "✓";
}

.clay-card li {
	border-bottom-color: rgba(10, 55, 92, 0.18);
}

.clay-card li::before {
	color: var(--blue);
}

.service-card a {
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	font-size: 13px;
	font-weight: 700;
}

.method {
	padding: 110px max(28px, calc((100vw - 1180px) / 2));
	background: var(--paper);
}

.method > h2 {
	margin: 18px 0 64px;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.05;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
}

.steps article {
	padding: 32px 30px 0 0;
}

.steps article + article {
	padding-left: 30px;
	border-left: 1px solid var(--line);
}

.steps span {
	color: var(--mint-ink);
	font: italic 20px Georgia, serif;
}

.steps h3 {
	margin: 23px 0 12px;
	color: var(--blue-deep);
	font: 400 26px Georgia, serif;
}

.steps p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.possibilities {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 80px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 120px 28px;
}

.possibility-list {
	border-top: 1px solid var(--line);
}

.possibility-list article {
	display: grid;
	grid-template-columns: 130px 1fr 1.2fr;
	gap: 22px;
	align-items: start;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.possibility-list span {
	color: var(--mint-ink);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.possibility-list h3 {
	margin-bottom: 0;
	color: var(--blue-deep);
	font: 400 21px Georgia, serif;
}

.possibility-list p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.about {
	padding-top: 110px;
	padding-bottom: 110px;
	border-top: 1px solid var(--line);
}

.about-mark {
	display: grid;
	width: 330px;
	height: 390px;
	background: var(--blue);
	clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 100%, 0 100%);
	color: var(--mint);
	font: 400 100px Georgia, serif;
	place-items: center;
}

.faq {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 80px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 110px 28px 120px;
	border-top: 1px solid var(--line);
}

.faq-heading h2 {
	margin: 20px 0 22px;
	font-size: clamp(38px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.faq-heading > p:last-child {
	color: var(--muted);
	line-height: 1.75;
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	position: relative;
	padding: 25px 44px 25px 0;
	color: var(--blue-deep);
	font: 400 20px/1.35 Georgia, serif;
	cursor: pointer;
	list-style: none;
}

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

.faq-list summary::after {
	position: absolute;
	top: 23px;
	right: 6px;
	color: var(--mint-ink);
	font: 400 24px/1 Arial, sans-serif;
	content: "+";
}

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

.faq-list details p {
	max-width: 680px;
	margin: 0;
	padding: 0 44px 24px 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
}

.contact {
	padding: 105px 28px;
	background: var(--blue-deep);
	color: #fff;
	text-align: center;
}

.contact .section-number {
	color: var(--mint);
}

.contact h2 {
	max-width: 850px;
	margin: 22px auto;
	color: #fff;
	font-size: clamp(45px, 5vw, 70px);
	line-height: 1.05;
}

.contact h2 em {
	color: var(--mint);
}

.contact > p:not(.section-number) {
	max-width: 600px;
	margin: 0 auto 32px;
	color: #d7e6ef;
	line-height: 1.7;
}

.button-light {
	background: var(--mint);
	box-shadow: 0 10px 28px rgba(15, 252, 190, 0.16);
	color: var(--blue-deep);
}

.button-light:hover {
	background: #fff;
}

.contact small {
	display: block;
	margin-top: 22px;
	color: #a9c8da;
}

.site-footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: 38px 28px;
	color: var(--muted);
	font-size: 12px;
}

.site-footer p {
	margin: 0;
}

.site-footer p:last-child {
	text-align: right;
}

.footer-brand .brand-logo-frame {
	width: 164px;
	height: 50px;
}

.footer-brand .brand-logo {
	width: 246px;
}

/* Conteúdo editorial: páginas, posts, listagens e 404. */
.content-shell {
	width: min(860px, calc(100% - 48px));
	min-height: 60vh;
	margin: 0 auto;
	padding: 88px 0 110px;
}

.content-shell-wide {
	width: min(1180px, calc(100% - 48px));
}

.entry-header {
	margin-bottom: 44px;
}

.entry-kicker {
	color: var(--mint-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.entry-title {
	margin: 12px 0 20px;
	color: var(--blue-deep);
	font: 400 clamp(42px, 6vw, 68px)/1.05 Georgia, "Times New Roman", serif;
	letter-spacing: -0.035em;
}

.entry-meta {
	color: var(--muted);
	font-size: 14px;
}

.entry-content {
	color: var(--ink);
	font-size: 18px;
	line-height: 1.8;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2em;
	color: var(--blue-deep);
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.2;
}

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

.entry-content blockquote {
	margin: 2rem 0;
	padding: 24px 28px;
	border-left: 4px solid var(--mint);
	background: var(--paper);
	color: var(--muted);
}

.entry-content img {
	border-radius: 2px;
}

.entry-featured-image {
	margin: 0 0 42px;
}

.entry-featured-image img {
	width: 100%;
	border-radius: 2px;
}

.post-navigation {
	margin-top: 70px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

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

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation a {
	color: var(--blue-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1.35;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	padding: 34px;
	border-top: 3px solid var(--mint);
	background: var(--paper);
	box-shadow: 0 14px 35px rgba(11, 44, 73, 0.08);
}

.post-card h2 {
	margin: 12px 0 16px;
	font-size: 30px;
	line-height: 1.15;
}

.post-card p {
	color: var(--muted);
	line-height: 1.7;
}

.post-card .text-link {
	display: inline-block;
}

.navigation.pagination {
	margin-top: 46px;
}

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

.page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	background: var(--paper);
	place-items: center;
}

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

.error-actions {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 34px;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form label {
	display: flex;
}

.search-field,
.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: var(--paper);
	color: var(--ink);
}

.search-submit,
.comment-form input[type="submit"] {
	padding: 13px 18px;
	border: 0;
	border-radius: 2px;
	background: var(--blue);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.comments-area {
	margin-top: 70px;
	padding-top: 36px;
	border-top: 1px solid var(--line);
}

.comments-title,
.comment-reply-title {
	color: var(--blue-deep);
	font: 400 30px/1.2 Georgia, "Times New Roman", serif;
}

.comment-list {
	padding-left: 24px;
}

.comment-list li {
	margin: 24px 0;
}

.comment-meta {
	color: var(--muted);
	font-size: 13px;
}

.comment-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

@media (max-width: 850px) {
	body.menu-is-open {
		overflow: hidden;
	}

	.has-js .menu-toggle {
		display: inline-flex;
		order: 3;
	}

	.header-contact {
		display: none;
	}

	.primary-navigation {
		position: absolute;
		top: 72px;
		right: 18px;
		left: 18px;
		display: block;
		padding: 12px;
		border: 1px solid var(--line);
		background: var(--paper);
		box-shadow: 0 18px 40px rgba(11, 44, 73, 0.16);
	}

	.has-js .primary-navigation {
		display: none;
	}

	.has-js .site-header.menu-open .primary-navigation {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	.primary-menu a {
		display: block;
		padding: 14px 16px;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 55px;
	}

	.hero-visual {
		min-height: 430px;
	}

	.intro,
	.about,
	.possibilities,
	.faq {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

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

	.steps article:nth-child(3) {
		padding-left: 0;
		border-left: 0;
	}

	.possibility-list article {
		grid-template-columns: 100px 1fr;
	}

	.possibility-list p {
		grid-column: 2;
	}

	.about-mark {
		width: 100%;
		height: 260px;
	}

	.trust-row {
		flex-wrap: wrap;
	}

	.site-footer {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.site-footer .brand {
		justify-content: center;
	}

	.site-footer p:last-child {
		text-align: center;
	}
}

@media (max-width: 620px) {
	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.site-header {
		height: 72px;
		padding: 0 18px;
	}

	.brand-logo-frame {
		width: 154px;
		height: 48px;
	}

	.brand-logo {
		width: 232px;
	}

	.menu-toggle-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.hero {
		padding: 45px 20px 60px;
	}

	.hero h1 {
		font-size: 49px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .text-link {
		text-align: center;
	}

	.hero-visual {
		min-height: 360px;
	}

	.portrait-placeholder {
		width: 82%;
	}

	.result-note {
		right: 0;
		width: 220px;
	}

	.intro,
	.service-grid,
	.possibilities,
	.about,
	.faq {
		padding-right: 20px;
		padding-left: 20px;
	}

	.service-card {
		padding: 35px 28px;
	}

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

	.steps article + article {
		padding-left: 0;
		border-left: 0;
	}

	.method {
		padding: 80px 20px;
	}

	.possibility-list article {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.possibility-list p {
		grid-column: 1;
	}

	.faq-list summary {
		font-size: 18px;
	}

	.contact {
		padding: 80px 20px;
	}

	.contact h2 {
		font-size: 44px;
	}

	.content-shell,
	.content-shell-wide {
		width: min(100% - 40px, 860px);
		padding: 64px 0 80px;
	}

	.entry-content {
		font-size: 17px;
	}

	.error-actions {
		flex-direction: column;
		align-items: stretch;
	}

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

	.post-navigation .nav-next {
		text-align: left;
	}
}

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

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