/* =========================================================
       BASE
       ========================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary: #1b3a5c;
	--primary-dark: #0f2440;
	--accent: #b8924a;

	--text: #2a2a2a;
	--text-muted: #5c5c5c;
	--text-soft: #8a8580;

	--bg: #faf7f1;
	--bg-warm: #f4efe5;
	--rule: #d9d2c2;

	--whatsapp: #25d366;

	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	--font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;

	--max-w: 1200px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.15s;
}
a:hover {
	opacity: 0.7;
}

h1,
h2,
h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	color: var(--primary-dark);
	letter-spacing: -0.015em;
}

h1 {
	font-size: clamp(2.25rem, 5.5vw, 3.5rem);
	line-height: 1.1;
}
h2 {
	font-size: clamp(1.75rem, 3.8vw, 2.25rem);
	line-height: 1.2;
	margin-bottom: 1.5rem;
}
h3 {
	font-size: 1.25rem;
	line-height: 1.35;
}

nav ul,
ul.cat {
	list-style: none;
	padding: 0;
}

p {
	margin-bottom: 1.1rem;
}
p:last-child {
	margin-bottom: 0;
}

img,
svg {
	max-width: 100%;
	display: block;
}

/* =========================================================
       UTILITÁRIOS
       ========================================================= */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
}

section {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.btn-primary {
	font-size: 0.8125rem;
	color: var(--primary-dark);
	font-weight: 500;
	padding: 0.55rem 1rem;
	border: 1px solid var(--primary-dark);
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
	letter-spacing: 0.02em;
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: var(--bg);
	opacity: 1;
}

.share-links {
	display: inline-flex;
}

.share-links a {
	display: flex;
	align-items: center;
}

.share-links .fa-facebook {
	fill: #3b5998;
}

.share-links .fa-whatsapp {
	fill: #25d366;
}

.share-links .fa-linkedin-in {
	fill: #0072b1;
}

/* =========================================================
       HEADER
       ========================================================= */
.site-header {
	padding: 1.25rem 0;
	position: sticky;
	top: 0;
	background: rgba(250, 247, 241, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 50;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.site-header.scrolled {
	border-bottom-color: var(--rule);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.brand {
	font-family: Georgia, serif;
	font-size: 1.0625rem;
	color: var(--primary-dark);
	line-height: 1.2;
}
.brand small {
	display: block;
	font-family: var(--font-body);
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 3px;
	font-weight: 500;
}

.header-nav,
.header-nav ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.header-link {
	font-size: 0.875rem;
	color: var(--text);
	font-weight: 500;
	letter-spacing: 0.01em;
}
.header-cta {
	font-size: 0.8125rem;
	color: var(--primary-dark);
	font-weight: 500;
	padding: 0.55rem 1rem;
	border: 1px solid var(--primary-dark);
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
	letter-spacing: 0.02em;
}
.header-cta:hover {
	background: var(--primary-dark);
	color: var(--bg);
	opacity: 1;
}

/* Botão hambúrguer (oculto em desktop) */
.nav-toggle {
	display: none;
	width: 38px;
	height: 38px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	z-index: 60;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--primary-dark);
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.no-banner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100px;
	padding: 1.5rem;
	background-color: rgba(11, 37, 69, 0.04);
}

/* Tablet — esconde 2 itens menos críticos */
@media (max-width: 980px) {
	.header-nav {
		gap: 1.25rem;
	}
	.header-link[href="#formacao"] {
		display: none;
	}
}

/* Mobile — drawer fullscreen */
@media (max-width: 820px) {
	.nav-toggle {
		display: flex;
	}
	.header-nav {
		position: fixed;
		inset: 0;
		background: var(--bg);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.75rem;
		padding: 4rem 1.5rem 2rem;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 55;
	}
	.header-nav.is-open {
		transform: translateX(0);
	}
	.header-link[href="#formacao"] {
		display: inline-flex;
	}
	.header-link {
		font-family: Georgia, serif;
		font-size: 1.5rem;
		color: var(--primary-dark);
		font-weight: 400;
	}
	.header-cta {
		font-size: 0.9375rem;
		padding: 0.75rem 1.5rem;
		margin-top: 0.5rem;
	}
	body.nav-open {
		overflow: hidden;
	}
}

/* Scroll-margin: garante que as âncoras não fiquem coladas no header sticky */
section[id] {
	scroll-margin-top: 80px;
}

/* =========================================================
       HERO — assimétrico, retrato à direita
       ========================================================= */
.hero {
	padding: clamp(2.25rem, 6vw, 4.5rem) 0 clamp(2.75rem, 7vw, 5rem);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 880px) {
	.hero-grid {
		grid-template-columns: 1.15fr 1fr;
		gap: clamp(2.25rem, 5vw, 4rem);
	}
}

.hero-text .label {
	display: block;
	margin-bottom: 1.5rem;
}

.hero-name {
	font-family: Georgia, serif;
	font-weight: 400;
	color: var(--primary-dark);
	letter-spacing: -0.02em;
	line-height: 1.05;
	font-size: clamp(2.25rem, 5.5vw, 3.5rem);
	margin-bottom: 0.5rem;
}

.hero-specialty {
	font-family: Georgia, serif;
	font-style: italic;
	font-size: clamp(1.125rem, 2.4vw, 1.375rem);
	color: var(--text-muted);
	font-weight: 400;
	max-width: 28ch;
	line-height: 1.4;
}

.hero-credentials {
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	color: var(--text-soft);
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--rule);
}

.hero-lead {
	margin-top: 1.5rem;
	font-size: 1.0625rem;
	color: var(--text);
	max-width: 50ch;
}

.hero-cta {
	margin-top: 2rem;
}

.hero-image {
	position: relative;
}
.hero-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.hero-image::before {
	content: "";
	position: absolute;
	inset: 1.25rem -1.25rem -1.25rem 1.25rem;
	border: 1px solid var(--accent);
	pointer-events: none;
	z-index: -1;
}

@media (max-width: 879px) {
	.hero-image {
		max-width: 380px;
		margin: 0 auto;
	}
}

/* =========================================================
       BOTÕES
       ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.95rem 1.6rem;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: all 0.18s ease;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	border-radius: 2px;
}
.btn-whatsapp {
	background: var(--whatsapp);
	color: #fff;
}
.btn-whatsapp:hover {
	background: #1eb558;
	opacity: 1;
	transform: translateY(-1px);
}
.btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* =========================================================
       SOBRE — texto editorial, capitular
       ========================================================= */
.about {
	background: var(--bg-warm);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 880px) {
	.about-grid {
		grid-template-columns: minmax(180px, 1fr) 2.5fr;
		gap: 3rem;
	}
}

.about-aside {
	font-family: var(--font-body);
}
.about-aside .label {
	display: block;
	margin-bottom: 0.75rem;
}
.about-aside h2 {
	font-size: clamp(1.625rem, 3.5vw, 2rem);
	margin-bottom: 0;
	line-height: 1.15;
}

.about-text p {
	font-size: 1.0625rem;
	line-height: 1.7;
}
.about-text p:first-child::first-letter {
	font-family: Georgia, serif;
	font-size: 3.6em;
	float: left;
	line-height: 0.85;
	padding: 0.1em 0.12em 0 0;
	color: var(--primary-dark);
}

/* =========================================================
       ÁREAS — lista numerada editorial
       ========================================================= */
.areas-header {
	max-width: 50ch;
	margin-bottom: 2.25rem;
}
.areas-header .label {
	display: block;
	margin-bottom: 0.75rem;
}
.areas-header p {
	color: var(--text-muted);
	margin-top: 1rem;
	font-size: 1.0625rem;
}

.areas-list {
	list-style: none;
	border-top: 1px solid var(--rule);
}

.area-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) {
	.area-item {
		grid-template-columns: 80px 1fr 2.5fr;
		gap: 2rem;
		align-items: baseline;
	}
}

.area-num {
	font-family: Georgia, serif;
	font-size: 1.5rem;
	color: var(--accent);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.area-title {
	font-family: Georgia, serif;
	font-size: 1.375rem;
	color: var(--primary-dark);
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.area-desc {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.6;
	max-width: 60ch;
}

.areas-cta {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--rule);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}
.areas-cta-text {
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 1.125rem;
	color: var(--text);
	max-width: 48ch;
}
@media (min-width: 720px) {
	.areas-cta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2.5rem;
	}
}

/* =========================================================
       FORMAÇÃO
       ========================================================= */
.formation {
	background: var(--bg-warm);
}

.formation-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 880px) {
	.formation-grid {
		grid-template-columns: minmax(180px, 1fr) 2.5fr;
		gap: 3rem;
	}
}

.formation-aside .label {
	display: block;
	margin-bottom: 0.75rem;
}
.formation-aside h2 {
	font-size: clamp(1.625rem, 3.5vw, 2rem);
	margin-bottom: 0;
	line-height: 1.15;
}

.formation-list {
	list-style: none;
	display: grid;
	gap: 1.5rem;
}
.formation-list li {
	padding-left: 1.5rem;
	position: relative;
	font-size: 1rem;
	color: var(--text);
	line-height: 1.6;
}
.formation-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 1px;
	background: var(--accent);
}
.formation-list strong {
	color: var(--primary-dark);
	font-weight: 600;
}

/* =========================================================
       CONTATO
       ========================================================= */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 880px) {
	.contact-grid {
		grid-template-columns: 1.1fr 1fr;
		gap: 3rem;
		align-items: center;
	}
}

.contact-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.contact-info .label {
	display: block;
	margin-bottom: 0.75rem;
}
.contact-info h2 {
	font-size: clamp(1.625rem, 3.5vw, 2rem);
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.contact-block {
	padding: 1.25rem 0;
	border-top: 1px solid var(--rule);
}
.contact-block:last-of-type {
	border-bottom: 1px solid var(--rule);
}

.contact-block-label {
	font-family: var(--font-body);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-soft);
	font-weight: 500;
	display: block;
	margin-bottom: 0.4rem;
}
.contact-block-value {
	font-family: Georgia, serif;
	font-size: 1.0625rem;
	color: var(--primary-dark);
	line-height: 1.4;
}
.contact-block-value a {
	color: var(--primary-dark);
}
.contact-block-detail {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-top: 0.4rem;
	line-height: 1.55;
}

.contact-cta {
	margin-top: 1.5rem;
}

/* =========================================================
       FOOTER
       ========================================================= */
.site-footer {
	background: var(--primary-dark);
	color: rgba(255, 255, 255, 0.85);
	padding: 3rem 0 1.5rem;
	font-size: 0.875rem;
}
.site-footer .container {
	display: grid;
	gap: 2rem;
}
@media (min-width: 720px) {
	.site-footer .container {
		grid-template-columns: 2fr 1fr 1fr;
		align-items: start;
	}
}

.site-footer h4 {
	font-family: Georgia, serif;
	font-size: 1.0625rem;
	color: #fff;
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.site-footer p {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 0.4rem;
	line-height: 1.55;
}
.site-footer a {
	color: #fff;
}

.footer-disclaimer {
	grid-column: 1 / -1;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
	max-width: 90ch;
}

/* =========================================================
       WHATSAPP FLOAT
       ========================================================= */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 56px;
	height: 56px;
	background: var(--whatsapp);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(15, 36, 64, 0.18);
	z-index: 100;
	transition: transform 0.2s ease;
}
.whatsapp-float:hover {
	transform: scale(1.06);
	opacity: 1;
}
.whatsapp-float svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}

/* ════════ COOKIES ════════ */
.cookies {
	position: fixed;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	max-width: 520px;
	background: var(--bg);
	color: var(--text);
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--accent);
	z-index: 1000;
	transform: translateY(180%);
	transition: transform 0.4s ease;
}

.cookies.on {
	transform: translateY(0);
}

.cookies p {
	font-size: 17px;
	margin-bottom: 1rem;
	line-height: 1.5;
	color: var(--text);
}

.cookies a {
	color: var(--accent);
}

.cookies__acoes {
	display: flex;
	gap: 0.6rem;
}

.cookies .btn {
	padding: 0.55rem 1rem;
	font-size: 17px;
}

/* =========================================================
       ACESSIBILIDADE
       ========================================================= */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}
