/* =========================================
   WAGNER ADVOGADOS — CSS Principal
   ========================================= */

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

:root {
	--color-bg-header: #09201A;
	--color-green:     #00B102;
	--header-height:   67.5px;
	--transition:      0.25s ease;
	--container-max:   1440px;
	--container-pad:   clamp(20px, 9.028vw, 130px);
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Rethink Sans', 'Segoe UI', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =========================================
   HEADER
   ========================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--color-bg-header);
}

.header-inner {
	display: flex;
	align-items: center;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	height: var(--header-height);
	gap: 72px;
}

/* --- Logo --- */

.header-logo { flex-shrink: 0; }

.logo-link { display: block; line-height: 0; }

.logo-link img {
	width: 95px;
	height: 34px;
}

/* --- Nav --- */

.header-nav {
	flex: 1;
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	flex: 1;
}

.nav-menu li a {
	display: block;
	padding: 6px 18px;
	font-size: 13px;
	color: #ffffff;
	white-space: nowrap;
	transition: color var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current-page-ancestor > a {
	color: var(--color-green);
}

/* --- Ações --- */

.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	margin-left: auto;
}

.header-portal {
	font-size: 13px;
	color: #ffffff;
	white-space: nowrap;
	transition: color var(--transition);
}

.header-portal:hover { color: var(--color-green); }

.btn-agendar {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 37.5px;
	padding: 0 16px;
	font-size: 13px;
	color: var(--color-green);
	border: 0.75px solid var(--color-green);
	border-radius: 4px;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
}

.btn-agendar:hover {
	background: var(--color-green);
	color: var(--color-bg-header);
}

.whatsapp-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background-color: var(--color-green);
	-webkit-mask: url('../images/whatsapp-icon.svg') no-repeat center / contain;
	mask: url('../images/whatsapp-icon.svg') no-repeat center / contain;
}

.btn-agendar:hover .whatsapp-icon {
	background-color: var(--color-bg-header);
}

/* --- Hamburguer --- */

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	margin-left: auto;
	flex-shrink: 0;
}

.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 17px;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transform-origin: center;
	transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
	opacity: 0;
	width: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Overlay mobile --- */

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}

.nav-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* =========================================
   MOBILE  ≤ 960px
   ========================================= */

@media (max-width: 960px) {

	.header-inner {
		gap: 16px;
		padding: 0 20px;
	}

	.nav-toggle { display: flex; }

	.nav-overlay { display: block; }

	.header-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 85vw);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		background: var(--color-bg-header);
		z-index: 999;
		padding: calc(var(--header-height) + 20px) 28px 40px;
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
		border-left: 1px solid rgba(0, 177, 2, 0.2);
	}

	.header-nav.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.nav-menu {
		flex: none;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.nav-menu li { width: 100%; }

	.nav-menu li a {
		font-size: 1rem;
		padding: 12px 8px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.nav-menu li:last-child a { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

	.header-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-left: 0;
		margin-top: 0;
		width: 100%;
	}

	.header-portal {
		display: block;
		width: 100%;
		font-size: 1rem;
		padding: 12px 8px;
		color: #ffffff;
	}

	.btn-agendar {
		width: 100%;
		justify-content: center;
		height: 44px;
		font-size: 0.9rem;
		margin-top: 24px;
	}
}

/* =========================================
   MODAL ALERTA
   ========================================= */

@keyframes modal-overlay-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes modal-box-in {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: modal-overlay-in 0.3s ease forwards;
}

.modal-box {
	position: relative;
	background: #09201A;
	animation: modal-box-in 0.4s ease 0.1s both;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 560px;
	width: 100%;
	padding: 52px 48px 48px;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: transparent;
	border: none;
	color: #ffffff;
	cursor: pointer;
	transition: color var(--transition);
}

.modal-close:hover { color: #00B102; }

.modal-tag {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.5px;
	color: #00B102;
}

.modal-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.05;
	color: #ffffff;
	margin-top: 0px;
	margin-bottom: 5px;
}

.modal-text {
	font-size: 13px;
	font-weight: 400;
	line-height: 21px;
	color: #ffffff;
}

@media (max-width: 600px) {
	.modal-box { padding: 40px 28px 36px; }

	.modal-title { font-size: 28px; }
}

.modal-overlay--unidade { display: none; }

.modal-box--unidade {
	max-width: 640px;
	max-height: 85vh;
	overflow-y: auto;
}

.modal-section {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 12px;
}

.modal-tag--sub { font-size: 13px; display: block; margin-bottom: 6px; }

/* =========================================
   ANIMATE ON SCROLL
   ========================================= */

.aos {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
	transition-delay: var(--delay, 0ms);
}

.aos.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.aos { opacity: 1; transform: none; transition: none; }
}

/* =========================================
   BANNER
   ========================================= */

.banner-section {
	position: relative;
	height: 435px;
	overflow: hidden;
	background: var(--color-bg-header);
}

.banner-slides { position: absolute; inset: 0; }

.banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
}

.banner-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content {
	position: absolute;
	left: 129px;
	top: 82px;
	max-width: 487px;
}

.banner-title {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: #ffffff;
}

.banner-desc {
	margin-top: 18px;
	font-size: 16px;
	color: #ffffff;
	max-width: 376px;
}

/* --- Nav do banner --- */

.banner-nav {
	position: absolute;
	left: 50%;
	top: 352px;
	transform: translateX(-50%);
	display: flex;
	gap: 48px;
}

.banner-nav-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 200px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	text-align: left;
}

.banner-bar {
	position: relative;
	display: block;
	width: 100%;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.35);
}

.banner-progress {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	background: #00B102;
}

@keyframes banner-fill {
	from { width: 0%; }
	to   { width: 100%; }
}

.banner-nav-item.active .banner-progress {
	animation: banner-fill 5s linear forwards;
}

.banner-section.is-paused .banner-progress {
	animation-play-state: paused;
}

.banner-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.banner-nav-item.active .banner-label,
.banner-nav-item:hover .banner-label {
	color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
	.banner-section { height: 500px; }

	.banner-content {
		left: 20px;
		right: 20px;
		top: auto;
		bottom: 40px;
		max-width: none;
	}

	.banner-title { font-size: 28px; line-height: 1.15; }

	.banner-desc { font-size: 14px; max-width: none; }

	.banner-nav { display: none; }
}

/* =========================================
   MAIN / FOOTER (base)
   ========================================= */

.site-main {
	min-height: calc(100vh - var(--header-height));
	overflow-x: clip;
}

.site-footer {
	background: #09201A;
	display: flex;
	flex-direction: column;
}

.footer-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	width: 100%;
}

/* --- Topo: grid 4 colunas iguais --- */

.footer-top { flex: 1; }

.footer-top .footer-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 32px;
	padding-top: 42px;
	padding-bottom: 36px;
}

/* --- Coluna 1: Brand --- */

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}

.footer-logo-link {
	display: block;
	line-height: 0;
}

.footer-logo-link img {
	width: 37px;
	height: 47px;
}

.footer-tagline {
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 0;
	color: #ffffff;
	max-width: 184px;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 4px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity var(--transition);
}

.footer-social-link:hover { opacity: 0.75; }

.footer-social-link img {
	width: 24px;
	height: 24px;
}

/* --- Títulos de seção --- */

.footer-section-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 13.5px;
	letter-spacing: 0;
	color: #00B102;
	margin-bottom: 10px;
}

/* --- Coluna 2: Navegação --- */

.footer-nav { display: flex; flex-direction: column; }

.footer-nav-list { display: flex; flex-direction: column; }

.footer-nav-list li a {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 19.5px;
	letter-spacing: 0;
	color: #ffffff;
	transition: color var(--transition);
}

.footer-nav-list li a:hover { color: var(--color-green); }

/* --- Colunas 3 e 4: Onde estamos (grid-column: span 2) --- */

.footer-locations {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
}

.footer-loc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.footer-loc-list { display: flex; flex-direction: column; }

.footer-loc-list li {
	font-size: 13px;
	font-weight: 400;
	line-height: 19.5px;
	letter-spacing: 0;
	color: #ffffff;
}

/* --- Divisor --- */

.footer-divider {
	flex-shrink: 0;
	border: none;
	border-top: 0.75px solid #00B102;
}

/* --- Subrodapé --- */

.footer-bottom { flex-shrink: 0; }

.footer-bottom .footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 44px;
}

.footer-copy {
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 0;
	color: #ffffff;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.footer-bottom-link {
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	color: #ffffff;
	transition: color var(--transition);
}

.footer-bottom-link:hover { color: var(--color-green); }

.footer-webmail-link {
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: underline;
	transition: color var(--transition);
}

.footer-webmail-link:hover { color: var(--color-green); }

/* Mobile */
@media (max-width: 960px) {
	.footer-top .footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
		padding-top: 36px;
		padding-bottom: 32px;
	}

	.footer-locations { grid-column: span 2; }

	.footer-loc-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.footer-bottom .footer-container {
		flex-direction: column;
		height: auto;
		gap: 8px;
		padding-top: 16px;
		padding-bottom: 16px;
		text-align: center;
	}

	.footer-bottom-links { gap: 16px; }
}

@media (max-width: 600px) {
	.footer-top .footer-container {
		grid-template-columns: 1fr;
	}

	.footer-locations { grid-column: span 1; }
}

.error-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	gap: 20px;
	padding: 40px 20px;
	text-align: center;
}

/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */

.btn-whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 990;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 37.5px;
	padding: 0 16px;
	font-size: 13px;
	color: var(--color-green);
	background: #ffffff;
	border: 0.75px solid var(--color-green);
	border-radius: 4px;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
}

.btn-whatsapp-float:hover {
	background: var(--color-green);
	color: #ffffff;
}

.btn-whatsapp-float:hover .whatsapp-icon {
	background-color: #ffffff;
}

/* =========================================
   SEÇÃO LUZ / DIFERENCIAIS
   ========================================= */

.luz-section {
	position: relative;
	background: var(--color-bg-header) url('../images/secao2-home/fundo-diferenciais.jpeg') center center / cover no-repeat;
	overflow: visible;
	padding: 50px 0 40px;
}

.luz-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0) 30%,
		rgba(0, 0, 0, 0) 42%,
		rgba(0, 0, 0, 0.85) 100%
	);
	z-index: 2;
	pointer-events: none;
}

.luz-inner {
	position: relative;
	z-index: 4;
	max-width: 1440px;
	margin: 30px auto 0;
	padding: 0 var(--container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 520px;
}

.luz-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: #ffffff;
	width: 353px;
	flex-shrink: 0;
}

.luz-diferenciais {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 320px;
	flex-shrink: 0;
}

.luz-item {
}

.luz-item-titulo {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-green);
	margin-bottom: 8px;
}

.luz-item-texto {
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
}

.luz-linha {
	position: absolute;
	left: 0;
	width: 200vw;
	height: 1.5px;
	background: var(--color-green);
	transform-origin: left center;
	pointer-events: none;
}

.luz-linha1 {
	bottom: 75px;
	transform: rotate(-5deg);
	z-index: 1;
}

.luz-linha2 {
	bottom: 52px;
	transform: rotate(5deg);
	z-index: 3;
}

/* Mobile */
@media (max-width: 768px) {
	.luz-linha1,
	.luz-linha2 { display: none; }

	.luz-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
		min-height: 0;
		padding: 0 20px;
	}

	.luz-titulo {
		width: auto;
		font-size: 32px;
		line-height: 1.2;
	}

	.luz-titulo br { display: none; }

	.luz-diferenciais { width: auto; }
}

/* =========================================
   SEÇÃO PASSOS
   ========================================= */

.passos-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.passos-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.passos-intro {
	text-align: center;
	margin-bottom: 56px;
}

.passos-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.passos-sep {
	display: block;
	margin: 20px auto 0;
}

.passos-cards {
	display: flex;
	gap: 16px;
}

.passo-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px 28px 36px;
	background: #F4F4EE;
	border-radius: 10px;
}

.passo-ico {
	display: block;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.passo-titulo {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	color: var(--color-bg-header);
}

.passo-line {
	display: block;
	width: 93px;
	height: 1px;
	background: var(--color-bg-header);
	flex-shrink: 0;
}

.passo-desc {
	font-size: 16px;
	line-height: 24px;
	color: var(--color-bg-header);
}

.passos-cta {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.btn-cta-green {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 37.5px;
	padding: 0 20px;
	font-size: 12px;
	color: #ffffff;
	background: var(--color-green);
	border: 0.75px solid var(--color-green);
	border-radius: 4px;
	white-space: nowrap;
	transition: background var(--transition), border-color var(--transition);
}

.btn-cta-green:hover {
	background: #009b01;
	border-color: #009b01;
}

/* Mobile */
@media (max-width: 768px) {
	.passos-section { padding: 56px 0 64px; }

	.passos-titulo { font-size: 28px; line-height: 1.2; }

	.passos-cards {
		flex-direction: column;
	}
}

/* =========================================
   SEÇÃO ESPECIALISTAS
   ========================================= */

.especialistas-section {
	background: #ffffff;
	padding: 80px 0 90px;
}

.especialistas-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.especialistas-intro {
	text-align: center;
	max-width: 840px;
	margin: 0 auto 56px;
}

.especialistas-kicker {
	color: #aaaaaa;
	margin-bottom: 20px;
}

.especialistas-title {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.especialistas-sep {
	display: block;
	margin: 20px auto 24px;
}

.especialistas-desc {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	max-width: 720px;
	margin: 0 auto;
}

.especialistas-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.especialistas-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 45px;
	border-radius: 12px;
	color: #ffffff;
}

.especialistas-card--gray  { background: #58595B; }
.especialistas-card--green { background: var(--color-green); }
.especialistas-card--dark  { background: var(--color-bg-header); }

.ecard-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
}

.ecard-line {
	display: block;
	width: 120px;
	height: 1px;
	background: #ffffff;
}

.ecard-desc {
	font-size: 16px;
	line-height: 24px;
	flex: 1;
}

.btn-saiba {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 8px 20px;
	margin-top: 20px;
	font-size: 12px;
	color: #ffffff;
	border: 0.75px solid #ffffff;
	border-radius: 4px;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
}

.btn-saiba:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
	.especialistas-section { padding: 56px 0 64px; }

	.especialistas-intro { margin-bottom: 40px; }

	.especialistas-title { font-size: 28px; line-height: 1.2; }

	.especialistas-cards {
		grid-template-columns: 1fr;
	}
}

/* =========================================
   SEÇÃO FOTO
   ========================================= */

.foto-section {
	height: 392px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* =========================================
   PÁGINA O ESCRITÓRIO — TRADIÇÃO
   ========================================= */

.tradicao-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.tradicao-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.tradicao-col1 {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.tradicao-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0;
	color: #09201A;
}

.tradicao-sep { display: block; }

.tradicao-desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: #000000;
}

.tradicao-col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.tradicao-cards {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.trad-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.trad-subtitulo {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #00B102;
}

.trad-texto {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000000;
}

@media (max-width: 960px) {
	.tradicao-inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.tradicao-col1 { grid-column: span 2; }

	.tradicao-cards { grid-column: span 2; }

	.tradicao-titulo { font-size: 32px; line-height: 1.2; }
}

@media (max-width: 600px) {
	.tradicao-section { padding: 60px 0 56px; }

	.tradicao-inner { grid-template-columns: 1fr; }

	.tradicao-col1 { grid-column: span 1; }

	.tradicao-cards {
		grid-column: span 1;
		grid-template-columns: 1fr;
	}
}

/* =========================================
   SEÇÃO FORÇA COLETIVA
   ========================================= */

.forca-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
	position: relative;
	overflow: visible;
}

.forca-foto-wrap {
	position: relative;
	overflow: visible;
	background: var(--color-bg-header);
}

.forca-foto {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
	height: calc(100% + 160px);
	display: block;
}

.forca-content {
	position: relative;
	background: var(--color-bg-header);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	padding: 60px clamp(32px, 5vw, 100px);
}

.forca-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-green);
}

.forca-desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #ffffff;
	max-width: 480px;
}

@media (max-width: 768px) {
	.forca-section { grid-template-columns: 1fr; }

	.forca-foto-wrap { height: 280px; }

	.forca-titulo { font-size: 32px; line-height: 1.2; }
}

/* =========================================
   PÁGINA O ESCRITÓRIO — SEÇÃO FAROL
   ========================================= */

.farol-section {
	position: relative;
	height: 450px;
	background-color: #09201A;
	overflow: visible;
	isolation: isolate;
}

.farol-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	mix-blend-mode: overlay;
	pointer-events: none;
	z-index: 1;
}

.farol-linhas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
	z-index: 2;
}

.farol-linha {
	stroke: #00B102;
	stroke-width: 1.5;
	fill: none;
}

.farol-inner {
	position: relative;
	z-index: 3;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.farol-content {
	position: relative;
	z-index: 4;
	width: 480px;
	max-width: 48%;
	display: flex;
	flex-direction: column;
	gap: 106px;
	padding-top: 80px;
}

.farol-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0;
	color: #00B102;
}

.farol-texto {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: #ffffff;
}

.farol-contribuicoes {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
}

.farol-contrib-titulo {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-green);
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.farol-section { height: auto; overflow: hidden; }

	.farol-linha1, .farol-linha2 { display: none; }

	.farol-inner { justify-content: flex-start; }

	.farol-content {
		width: 100%;
		max-width: none;
		padding: 48px 0;
	}

	.farol-titulo { font-size: 32px; line-height: 1.2; }
}

/* =========================================
   PÁGINA O ESCRITÓRIO — ESTRUTURA
   ========================================= */

.estrutura-section {
	background: #ffffff;
	padding: 80px 0;
}

.estrutura-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 80px;
	align-items: center;
}

.estrutura-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.estrutura-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0;
	color: #09201A;
	margin-bottom: 16px;
}

.estrutura-sep { display: block; }

.estrutura-desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: #000000;
}

.estrutura-foto-wrap {
	overflow: hidden;
	border-radius: 2px;
}

.estrutura-foto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (max-width: 768px) {
	.estrutura-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.estrutura-titulo { font-size: 32px; line-height: 1.2; }

	.estrutura-foto-wrap { min-height: 280px; }
}

/* =========================================
   PÁGINA O ESCRITÓRIO — UNIDADES
   ========================================= */

.unidades-section {
	background: #ffffff;
	padding: 80px 0 90px;
}

.unidades-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.unidades-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.unidade-card {
	background: #F4F4EE;
	border-radius: 10px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 251px;
	min-width: 0;
	overflow: hidden;
}

button.unidade-card {
	border: 0;
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	transition: background var(--transition);
}

button.unidade-card:hover,
button.unidade-card:focus-visible { background: #ECECE0; }

.unidade-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.unidade-cidade {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0;
	color: #00B102;
}

.unidade-sep {
	display: block;
	width: 93px;
	height: 0;
	border-top: 1px solid #09201A;
}

.unidade-texto {
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	color: #09201A;
	overflow-wrap: break-word;
}

.unidade-card--cta {
	background: #00B102;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-decoration: none;
	transition: background var(--transition);
}

.unidade-card--cta:hover { background: #009b01; }

.unidade-cta-texto {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #ffffff;
	text-align: center;
}

@media (max-width: 960px) {
	.unidades-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* =========================================
   HERO PÁGINAS INTERNAS
   ========================================= */

.page-hero {
	height: 435px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* =========================================
   SEÇÃO DEPOIMENTOS
   ========================================= */

.depo-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.depo-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.depo-intro {
	text-align: center;
	margin-bottom: 56px;
}

.depo-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.depo-sep {
	display: block;
	margin: 20px auto 0;
}

/* Carousel */
.depo-carousel {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 40px;
}

.depo-slide {
	grid-area: 1 / 1;
	display: flex;
	justify-content: center;
	gap: 140px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.depo-slide.active {
	opacity: 1;
	visibility: visible;
}

.depo-item {
	width: 320px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-decoration: none;
	color: inherit;
}

.depo-stars {
	color: #FBBC04;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 1;
}

.depo-texto {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	color: var(--color-bg-header);
	flex: 1;
}

.depo-line {
	display: block;
	width: 93px;
	height: 0;
	border-top: 1px solid #09201A;
	flex-shrink: 0;
}

.depo-autor {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.depo-nome {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-bg-header);
}

.depo-cargo {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-bg-header);
}

/* Nav / barrinhas */
.depo-nav {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.depo-nav-item {
	width: 143px;
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.depo-bar {
	position: relative;
	display: block;
	width: 100%;
	height: 1.5px;
	background: #D9D9D9;
}

.depo-progress {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	background: var(--color-green);
}

.depo-nav-item.active .depo-progress {
	animation: banner-fill 5s linear forwards;
}

/* Mobile */
@media (max-width: 768px) {
	.depo-section { padding: 56px 0 64px; }

	.depo-titulo { font-size: 28px; line-height: 1.2; }

	.depo-carousel { display: block; }

	.depo-slide {
		grid-area: auto;
		display: none;
		flex-direction: column;
		gap: 40px;
		opacity: 1;
		visibility: visible;
	}

	.depo-slide.active { display: flex; }

	.depo-item { width: 100%; }

	.depo-nav { gap: 12px; }

	.depo-nav-item { width: 143px; }
}

/* ── Área Detalhe ─────────────────────────────────────────── */

.area-detalhe-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.area-detalhe-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: start;
}

.area-detalhe-esq {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	position: sticky;
	top: 100px;
}

.area-detalhe-titulo {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.1;
	color: #111111;
}

.area-detalhe-desc {
	font-size: 16px;
	line-height: 26px;
	color: #555555;
}

.area-detalhe-dir {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.area-detalhe-intro-titulo {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-green);
	margin-bottom: 12px;
}

.area-detalhe-intro-p {
	font-size: 15px;
	line-height: 26px;
	color: #333333;
}

.area-detalhe-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.area-detalhe-card {
	background: #F4F6F3;
	border-radius: 12px;
	padding: 28px 32px;
}

.area-detalhe-card-titulo {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-green);
	margin-bottom: 10px;
}

.area-detalhe-card-sep {
	display: block;
	width: 40px;
	height: 2px;
	background: #aaaaaa;
	margin-bottom: 14px;
}

.area-detalhe-card-p {
	font-size: 14px;
	line-height: 22px;
	color: #333333;
}

.area-detalhe-final {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 8px;
}

.area-detalhe-final-p {
	font-size: 15px;
	line-height: 26px;
	color: #333333;
	flex: 1;
}

.btn-cta-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 37.5px;
	padding: 0 20px;
	font-size: 12px;
	color: var(--color-green);
	background: transparent;
	border: 0.75px solid var(--color-green);
	border-radius: 4px;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
	flex-shrink: 0;
}

.btn-cta-outline:hover {
	background: var(--color-green);
	color: #ffffff;
}

.btn-cta-outline:hover img {
	filter: brightness(0) invert(1);
}

/* ── Outras Áreas ─────────────────────────────────────────── */

.outras-areas-section {
	background: #ffffff;
	padding: 80px 0 90px;
}

.outras-areas-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.outras-areas-header {
	text-align: center;
	margin-bottom: 48px;
}

.outras-areas-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
	margin-bottom: 16px;
}

.outras-areas-sep {
	display: block;
	margin: 0 auto;
}

.outras-areas-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 960px) {
	.outras-areas-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.outras-areas-cards { grid-template-columns: 1fr; }
	.outras-areas-titulo { font-size: 32px; }
}

@media (max-width: 900px) {
	.area-detalhe-inner { grid-template-columns: 1fr; gap: 48px; }
	.area-detalhe-esq { position: static; }
	.area-detalhe-titulo { font-size: 38px; }
	.area-detalhe-final { flex-direction: column; align-items: flex-start; }
}

/* ── Portal do Cliente ────────────────────────────────────── */

.portal-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.portal-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: start;
}

.portal-esq {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	position: sticky;
	top: 100px;
}

.portal-titulo {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.1;
	color: #111111;
}

.portal-desc {
	font-size: 16px;
	line-height: 26px;
	color: #555555;
}

.portal-nota {
	font-size: 15px;
	line-height: 24px;
	color: #111111;
	font-weight: 700;
}

.portal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.portal-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F4F6F3;
	border-radius: 12px;
	padding: 32px;
	aspect-ratio: 4 / 3;
	border: none;
	cursor: pointer;
	transition: background var(--transition);
}

.portal-card:hover {
	background: #e8ebe6;
}

.portal-card img {
	width: 100%;
	max-width: 160px;
	height: auto;
	display: block;
}

/* Modal */

.portal-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portal-modal[hidden] {
	display: none;
}

.portal-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.portal-modal-box {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	padding: 48px 40px;
	width: 100%;
	max-width: 420px;
	z-index: 1;
}

.portal-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #555555;
	transition: color var(--transition);
}

.portal-modal-close:hover {
	color: #111111;
}

.portal-modal-logo {
	display: block;
	margin: 0 auto 24px;
	max-width: 140px;
}

.portal-modal-titulo {
	font-size: 22px;
	font-weight: 400;
	color: var(--color-bg-header);
	text-align: center;
	margin-bottom: 28px;
}

.portal-modal-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.portal-modal-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.portal-modal-field label {
	font-size: 13px;
	color: #555555;
}

.portal-modal-field input {
	height: 42px;
	padding: 0 14px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color var(--transition);
}

.portal-modal-field input:focus {
	border-color: var(--color-green);
}

.portal-modal-erro {
	font-size: 13px;
	color: #c0392b;
	margin: 0;
}

.portal-modal-submit {
	width: 100%;
	justify-content: center;
	height: 44px;
	font-size: 14px;
}

@media (max-width: 900px) {
	.portal-inner  { grid-template-columns: 1fr; gap: 48px; }
	.portal-esq    { position: static; }
	.portal-titulo { font-size: 38px; }
	.portal-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.portal-modal-box { padding: 40px 24px; margin: 0 16px; }
}

/* ── Contato ──────────────────────────────────────────────── */

.contato-section {
	background: #ffffff;
	padding: 100px 0 90px;
}

.contato-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	align-items: start;
}

.contato-col1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.contato-col2 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.contato-col2 .btn-cta-green {
	transform: scale(1.3);
	transform-origin: left center;
}

.contato-unidades-topo {
	background: #ffffff;
	padding: 80px 0 0;
}

.contato-unidades-topo-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.contato-unidades-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.contato-unidades-topo + .unidades-section {
	padding-top: 48px;
}

.contato-col3 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contato-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.contato-destaque {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-green);
	line-height: 24px;
}

.contato-desc {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.contato-social-label {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-green);
}

.contato-social-icons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.social-icon {
	display: inline-block;
	width: 35px;
	height: 35px;
	background-image: url('../images/Group 38740.svg');
	background-repeat: no-repeat;
	background-size: 202px 35px;
	transition: opacity var(--transition);
}

.social-icon:hover {
	opacity: 0.75;
}

.contato-links-secundarios {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.contato-link-secundario {
	font-size: 16px;
	font-weight: 700;
	color: #000000;
	text-decoration: underline;
	width: fit-content;
	transition: color var(--transition);
}

.contato-link-secundario:hover {
	color: var(--color-green);
}

.social-icon--instagram { background-position:    0px 0; }
.social-icon--youtube   { background-position:  -42px 0; }
.social-icon--facebook  { background-position:  -83px 0; }
.social-icon--linkedin  { background-position: -126px 0; }
.social-icon--x         { background-position: -170px 0; }

@media (max-width: 960px) {
	.contato-inner  { grid-template-columns: 1fr 1fr; }
	.contato-titulo { font-size: 32px; line-height: 1.2; }
}

@media (max-width: 600px) {
	.contato-inner  { grid-template-columns: 1fr; }
}

/* =========================================
   ARQUIVO / LISTAGEM DE POSTS (category.php, archive.php)
   ========================================= */

.archive-header-section {
	padding: 100px 0 56px;
	text-align: center;
}

.archive-header-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.archive-titulo {
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	color: var(--color-bg-header);
}

.archive-sep {
	display: block;
	margin: 20px auto 0;
}

.archive-desc {
	max-width: 676px;
	margin: 20px auto 0;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.archive-lista-section {
	padding: 0 0 100px;
}

.archive-lista-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.archive-vazio {
	text-align: center;
	font-size: 16px;
	color: #58595B;
}

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

.post-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #E5E5E5;
	transition: box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
	box-shadow: 0 12px 24px rgba(9, 32, 26, 0.1);
	transform: translateY(-2px);
}

.post-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.post-card-media {
	aspect-ratio: 16 / 10;
	background: #F2F2F2;
}

.post-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post-card-media-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-header);
}

.post-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 24px 24px;
}

.post-card-date {
	font-size: 13px;
	color: #58595B;
}

.post-card-title {
	margin-top: 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-bg-header);
}

.post-card-excerpt {
	margin-top: 12px;
	font-size: 15px;
	line-height: 22px;
	color: #444444;
	flex: 1;
}

.post-card-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-green);
	transition: opacity var(--transition);
}

.post-card:hover .post-card-cta {
	opacity: 0.75;
}

.post-pagination {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.post-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.post-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 4px;
	border: 0.75px solid #E5E5E5;
	font-size: 14px;
	color: var(--color-bg-header);
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.post-pagination .page-numbers:hover {
	border-color: var(--color-green);
}

.post-pagination .page-numbers.current {
	background: var(--color-green);
	border-color: var(--color-green);
	color: #ffffff;
}

.post-pagination .page-numbers.dots {
	border: 0;
}

@media (max-width: 960px) {
	.archive-titulo { font-size: 32px; line-height: 1.2; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.archive-header-section { padding: 56px 0 40px; }
	.post-grid { grid-template-columns: 1fr; }
}

/* =========================================
   POST SINGLE
   ========================================= */

.post-single-hero {
	height: 435px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-bg-header);
}

.post-single-hero--no-image {
	height: 220px;
}

.post-single-inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 56px var(--container-pad) 100px;
}

.post-single-breadcrumb {
	font-size: 14px;
}

.post-single-breadcrumb a {
	color: var(--color-green);
	font-weight: 700;
	transition: opacity var(--transition);
}

.post-single-breadcrumb a:hover {
	opacity: 0.75;
}

.post-single-header {
	margin-top: 24px;
}

.post-single-date {
	display: block;
	font-size: 14px;
	color: #58595B;
}

.post-single-title {
	margin-top: 8px;
	font-size: 45px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--color-bg-header);
}

.post-single-content {
	margin-top: 32px;
	font-size: 17px;
	line-height: 1.7;
	color: #222222;
}

.post-single-content p {
	margin-top: 0;
}

.post-single-content p + p {
	margin-top: 20px;
}

.post-single-content strong {
	font-weight: 700;
}

.post-single-content em {
	font-style: italic;
}

.post-single-content a {
	color: var(--color-green);
	text-decoration: underline;
}

.post-single-content ul,
.post-single-content ol {
	margin-top: 20px;
	padding-left: 22px;
}

.post-single-content li + li {
	margin-top: 8px;
}

.post-single-content blockquote {
	margin: 24px 0;
	padding-left: 20px;
	border-left: 4px solid var(--color-green);
	font-style: italic;
	color: #444444;
}

.post-single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 24px 0;
}

.post-single-content h2,
.post-single-content h3,
.post-single-content h4 {
	margin-top: 32px;
	font-weight: 700;
	color: var(--color-bg-header);
}

.post-single-cta {
	margin-top: 40px;
}

.post-single-cta .btn-cta-green {
	transform: scale(1.3);
	transform-origin: left center;
}

@media (max-width: 960px) {
	.post-single-title { font-size: 32px; line-height: 1.2; }
}

@media (max-width: 768px) {
	.post-single-hero { height: 260px; }
	.post-single-inner { padding: 40px var(--container-pad) 64px; }
	.post-single-content { font-size: 16px; }
}
