/* =========================================================
   ECONOMY EXPLORER
   Institutional Pages
========================================================= */


/* =========================================================
   ABOUT
========================================================= */

.about-hero,
.contact-hero,
.start-here-hero {
	padding-top: 80px;
	padding-bottom: 80px;
}

.about-hero h1,
.contact-hero h1,
.start-here-hero h1 {
	max-width: 850px;
	margin: 18px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(44px, 5vw, 68px);
	line-height: 1.08;
	letter-spacing: -0.025em;
}


.about-content {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 80px;
	align-items: start;
}

.about-content h2,
.about-editorial h2,
.contact-intro h2 {
	margin: 12px 0 0;
	font-family: var(--font-heading);
	font-size: 38px;
	line-height: 1.15;
}

.contact-intro .eyebrow {
	color: #b46a1d;
}

.contact-intro h2 {
	color: #173f30;
}


.about-text {
	max-width: 700px;
}

.about-text p,
.about-editorial p {
	color: var(--color-muted);
	font-size: 17px;
	line-height: 1.8;
}

.contact-intro p {
	color: #5f574a;
	font-size: 17px;
	line-height: 1.8;
}

.about-text p:first-child,
.about-editorial p:first-of-type {
	margin-top: 0;
}


.about-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-top: 38px;
}

.about-value {
	padding: 30px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.about-value > span {
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.about-value h3 {
	margin: 13px 0 10px;
	font-family: var(--font-heading);
	font-size: 24px;
}

.about-value p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.7;
}


.about-editorial {
	max-width: 800px;
	margin-inline: auto;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 80px;
	align-items: start;
}

.contact-form-wrap {
	padding: 38px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.form-field label {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-text);
}

.form-field input,
.form-field textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-text);
	font: inherit;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.form-field input {
	height: 50px;
	padding: 0 14px;
}

.form-field textarea {
	padding: 14px;
	resize: vertical;
	min-height: 180px;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: #b46a1d;
	box-shadow: 0 0 0 3px rgba(180, 106, 29, 0.10);
}

.contact-form .button {
	align-self: flex-start;
	border: 0;
	cursor: pointer;
}


/*
 * Campo anti-spam.
 * Existe no HTML, mas visitantes não o enxergam.
 */
.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}


.contact-message {
	margin-bottom: 24px;
	padding: 15px 18px;
	font-size: 14px;
	border-left: 4px solid;
}

.contact-success {
	background: #edf7f0;
	color: #275c35;
	border-color: #3f8551;
}

.contact-error {
	background: #fff1f0;
	color: #8c302d;
	border-color: #c64b46;
}


/* =========================================================
   STANDARD / LEGAL PAGES
========================================================= */

.standard-page {
	max-width: 850px;
	margin-inline: auto;
}

.page-header {
	margin-bottom: 38px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(42px, 5vw, 60px);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.standard-page .entry-content {
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.85;
}

.standard-page .entry-content h2 {
	margin-top: 48px;
	margin-bottom: 16px;
	font-family: var(--font-heading);
	font-size: 30px;
	line-height: 1.2;
}

.standard-page .entry-content h3 {
	margin-top: 35px;
	font-family: var(--font-heading);
	font-size: 23px;
}

.standard-page .entry-content p {
	margin: 0 0 22px;
}

.standard-page .entry-content ul,
.standard-page .entry-content ol {
	padding-left: 24px;
	margin-bottom: 24px;
}

.standard-page .entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}


/* =========================================================
   SINGLE ARTICLE
========================================================= */

.single-article {
	min-width: 0;
}

.single-header {
	max-width: 850px;
	margin-bottom: 34px;
}

.single-header h1 {
	margin: 10px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(42px, 5vw, 62px);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.single-featured-image {
	margin-bottom: 42px;
}

.single-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.single-article .entry-content {
	max-width: 780px;
	font-size: 18px;
	line-height: 1.85;
}

.single-article .entry-content p {
	margin: 0 0 25px;
}

.single-article .entry-content h2 {
	margin: 50px 0 18px;
	font-family: var(--font-heading);
	font-size: 32px;
	line-height: 1.2;
}

.single-article .entry-content h3 {
	margin: 38px 0 15px;
	font-family: var(--font-heading);
	font-size: 25px;
}

.single-article .entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-footer {
	margin-top: 60px;
	padding-top: 28px;
	border-top: 1px solid var(--color-border);
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.post-navigation-item:last-child {
	text-align: right;
}

.post-navigation-item span {
	display: block;
	margin-bottom: 7px;
	color: var(--color-muted);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.post-navigation-item a {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
}


/* =========================================================
   CATEGORY / SEARCH ARCHIVES
========================================================= */

.archive-header {
	max-width: 850px;
	margin-bottom: 48px;
}

.archive-header h1 {
	margin: 12px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(44px, 5vw, 62px);
	line-height: 1.1;
}

.archive-description {
	max-width: 680px;
	margin-top: 18px;
	color: var(--color-muted);
	font-size: 17px;
}

.archive-pagination {
	margin-top: 55px;
	padding-top: 25px;
	border-top: 1px solid var(--color-border);
}

.archive-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.archive-pagination .page-numbers {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--color-border);
	background: white;
	font-size: 13px;
}

.archive-pagination .page-numbers.current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: white;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.about-values {
		grid-template-columns: 1fr;
	}

}


@media (max-width: 760px) {

	.about-hero,
	.contact-hero,
	.start-here-hero {
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.about-hero h1,
	.contact-hero h1,
	.start-here-hero h1 {
		font-size: 42px;
	}

	.contact-form-wrap {
		padding: 24px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation-item:last-child {
		text-align: left;
	}

	.single-article .entry-content {
		font-size: 17px;
	}

}


/* =========================================================
   ABOUT HERO - DISTINCT FROM HOME
========================================================= */

.about-hero-simple {
	padding: 70px 0 64px;
	background: #f5f5dc;
	border-bottom: 1px solid #d9cdb6;
}

.about-page-label {
	margin: 0 0 18px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b46a1d;
}

.about-hero-simple h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(38px, 4.2vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.about-page-intro {
	max-width: 720px;
	margin: 22px 0 0;
	font-size: 18px;
	line-height: 1.7;
	color: #5f574a;
}

@media (max-width: 768px) {

	.about-hero-simple {
		padding: 50px 0 46px;
	}

	.about-page-label {
		font-size: 15px;
	}

	.about-hero-simple h1 {
		font-size: 38px;
	}

	.about-page-intro {
		font-size: 16px;
	}

}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero-simple {
	padding: 64px 0 58px;
	background: #f5f5dc;
	border-bottom: 1px solid #d9cdb6;
}

.contact-page-label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b46a1d;
}

.contact-hero-simple h1 {
	max-width: 700px;
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(40px, 4.4vw, 58px);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.contact-page-intro {
	max-width: 700px;
	margin: 20px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-muted);
}

.contact-small-note {
	font-size: 14px;
	line-height: 1.65;
	color: var(--color-muted);
}

@media (max-width: 768px) {

	.contact-hero-simple {
		padding: 48px 0 44px;
	}

	.contact-page-label {
		font-size: 14px;
	}

	.contact-hero-simple h1 {
		font-size: 38px;
	}

	.contact-page-intro {
		font-size: 16px;
	}

}