/*
 * Chácara do Lago — estilos base.
 * Os valores de cor/tipografia abaixo são placeholders;
 * ajustar quando o layout (PSD) for aplicado.
 */

:root {
	--color-primary: #13293d;
	--color-primary-dark: #0d1e2e;
	--color-accent: #f2b705;
	--color-accent-dark: #d9a441;
	--color-text: #22303b;
	--color-text-muted: #62727d;
	--color-bg: #ffffff;
	--color-bg-alt: #f4f2ec;
	--color-border: #e2e0da;

	--font-heading: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--container-width: 1140px;
	--spacing-unit: 1rem;
	--radius: 6px;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1.25;
	margin: 0 0 0.6em;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-primary);
	color: #fff;
	z-index: 9999;
	clip: auto;
}

/* Header — flutua por cima da foto do hero (não é uma faixa azul separada:
 * a "cor azul" no topo é o próprio topo da foto do hero com o gradiente).
 * Posições exatas extraídas das camadas do PSD (hero header.pdf / .psd). */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 30;
}

.site-header__navwrap {
	display: grid;
	grid-template-columns: 1fr 230px 1fr;
	align-items: center;
	margin-top: 69px;
	height: 54px;
	background: #fff;
	box-shadow: none;
	border: 0;
}

/* No desktop, .site-header__mobile-nav não deve existir como elemento de
 * layout — os dois <nav> continuam participando do grid diretamente,
 * cada um na coluna certa (fixo, não depende da ordem no HTML). */
.site-header__mobile-nav {
	display: contents;
}

.main-navigation--left {
	grid-column: 1;
	grid-row: 1;
}

.site-header__logo-spacer {
	grid-column: 2;
	grid-row: 1;
}

.main-navigation--right {
	grid-column: 3;
	grid-row: 1;
}

.site-header__backdrop {
	display: none;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	display: flex;
	align-items: center;
}

.main-navigation a {
	display: inline-block;
	line-height: 1;
	color: #1b2b3a;
	font-weight: 400;
	font-size: 14px;
	text-transform: none;
}

.main-navigation a:hover {
	color: var(--color-accent-dark);
	text-decoration: none;
}

.main-navigation--left ul {
	justify-content: flex-end;
}

.main-navigation--right {
	display: flex;
	align-items: center;
	gap: 36px;
}

.site-header__social {
	display: inline-flex;
	align-items: center;
	color: #1b2b3a;
}

.site-header__social:hover {
	color: var(--color-accent-dark);
}

.site-header__logo-spacer {
	position: static;
}

.site-header__logo {
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	z-index: 50;
	display: block;
}

.site-header__logo img {
	width: 180px;
	height: auto;
	display: block;
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.5rem;
}

.menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-text);
	margin: 5px 0;
}

/* Buttons — 237x46px, medido na camada do PSD */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 237px;
	height: 46px;
	padding: 0 20px;
	border-radius: 3px;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid transparent;
	box-sizing: border-box;
}

.btn:hover {
	text-decoration: none;
}

.btn--solid {
	background: var(--color-accent);
	color: var(--color-primary-dark);
}

.btn--solid:hover {
	background: var(--color-accent-dark);
}

.btn--outline {
	border-color: #fff;
	color: #fff;
}

.btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* Hero (front page) — posições exatas das camadas do PSD (hero header.psd).
 * A foto começa em y=0 (o header flutua por cima dela via position:absolute). */
.section-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.section-hero__overlay {
	/* Degradê extraído do PSD (Ajustes/Home-Ajustes.psd): azul sólido na metade
	 * esquerda (onde fica o texto), esmaecendo até ficar transparente perto de
	 * 68% da largura, deixando a foto totalmente visível do lado direito. */
	background: linear-gradient(90deg, rgba(8, 50, 81, 0.82) 0%, rgba(8, 50, 81, 0.82) 33%, rgba(8, 50, 81, 0) 54%);
	padding-top: 197px;
	padding-bottom: 40px;
}

.section-hero__inner {
	/* Mesmo container do header (max-width + padding), pra o texto do hero
	 * alinhar exatamente com o menu superior em qualquer largura de tela. */
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.section-hero__content {
	max-width: 820px;
}

.section-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0 0 25px;
}

.section-hero__title {
	max-width: 560px;
	font-size: 52px;
	line-height: 1.16;
	color: #fff;
	margin: 0 0 33px;
}

.section-hero__text {
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.9;
	max-width: 460px;
	margin: 0 0 30px;
}

.section-hero__tagline {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 33px;
}

.section-hero__actions {
	display: flex;
	gap: 34px;
	flex-wrap: wrap;
}

.section-hero__divider {
	margin: 44px 0 28px;
	border: 0;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
}

.section-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 2rem;
	padding-bottom: 20px;
}

@media (min-width: 782px) {
	.section-hero__stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat__number {
	display: block;
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.stat__label {
	display: block;
	font-size: 14px;
	opacity: 0.85;
	max-width: 16ch;
}

/* Endereço */
.section.section-endereco {
	height: 80px;
	display: flex;
	align-items: center;
	padding-block: 0;
}

.section-endereco__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.section-endereco__inner p {
	margin: 0;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Sobre (Missão / Visão / Valores) — medidas e cor extraídas do PSD */
.section-sobre {
	background: #f3ece1;
	color: var(--color-primary);
	padding-block: 57px 80px;
}

.section-sobre__intro {
	display: grid;
	grid-template-columns: 1.75fr 1fr;
	gap: 2.5rem 4.75rem;
	align-items: center;
}

.section-sobre__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 16px;
}

.section-sobre__title {
	font-size: 44px;
	line-height: 1.16;
	color: var(--color-primary);
	margin: 0;
	max-width: 620px;
}

.section-sobre__intro-right p {
	font-size: 15px;
	line-height: 1.9;
	margin: 0;
}

.section-sobre__divider {
	border: 0;
	border-top: 2px solid rgba(19, 41, 61, 0.15);
	margin: 3.5rem 0;
}

.section-sobre__mv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem 5rem;
}

.section-sobre__mv-item h3 {
	font-size: 28px;
	color: var(--color-primary);
	margin: 0 0 1rem;
}

.section-sobre__mv-item p {
	font-size: 15px;
	line-height: 1.9;
	margin: 0;
}

.section-sobre__valores-title {
	font-size: 28px;
	color: var(--color-primary);
	margin: 0 0 2rem;
}

.valores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.75rem 2.5rem;
}

.valor-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.valor-item__icon {
	flex: none;
	color: var(--color-primary);
	margin-top: 5px;
}

.valor-item__body strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}

.valor-item__body p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	opacity: 0.9;
}

@media (max-width: 900px) {
	.section-sobre__intro,
	.section-sobre__mv {
		grid-template-columns: 1fr;
	}

	.valores-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.section-sobre__title {
		font-size: 32px;
	}
}

/* Destaques da estrutura — medidas e cores extraídas do PSD */
.section-estrutura-destaque {
	background: #0a3252;
	color: #fff;
	padding: 54px 0 47px;
}

.section-estrutura-destaque__lead {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 44px;
}

.destaque-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 32px;
}

.destaque-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 0;
	border: 0;
	overflow: hidden;
	background: none;
	cursor: pointer;
}

.destaque-card__media:disabled {
	cursor: default;
}

.destaque-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.destaque-card__media:not(:disabled):hover img {
	transform: scale(1.05);
}

.destaque-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #008b47;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.02em;
	line-height: 1.3;
	padding: 0 1rem;
}

.destaque-card__body {
	padding-top: 42px;
}

.destaque-card__number {
	display: block;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 29px;
}

.destaque-card__title {
	font-size: 19px;
	color: #fff;
	margin: 0 0 19px;
}

.destaque-card__text {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.85;
}

.destaque-card__text p {
	margin: 0;
}

@media (max-width: 900px) {
	.destaque-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
	}
}

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

/* Lightbox — galeria em modal (usado pelos cards de Ambientes) */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox[hidden] {
	display: none;
}

.lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 21, 34, 0.85);
}

.lightbox__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: min(1100px, 92vw);
	max-height: 90vh;
}

.lightbox__figure {
	margin: 0;
	max-width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox__image {
	max-width: 100%;
	max-height: 78vh;
	object-fit: contain;
	border-radius: 4px;
	display: block;
}

.lightbox__figure figcaption {
	color: #fff;
	text-align: center;
	margin-top: 0.75rem;
	font-size: 0.9rem;
}

.lightbox__title {
	font-weight: 700;
	margin-right: 0.75rem;
}

.lightbox__counter {
	opacity: 0.7;
}

.lightbox__close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.lightbox__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav {
	flex: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

.lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 640px) {
	.lightbox__dialog {
		flex-direction: column;
		max-width: 94vw;
	}

	.lightbox__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.lightbox__prev {
		left: 4px;
	}

	.lightbox__next {
		right: 4px;
	}
}

body.has-lightbox-open {
	overflow: hidden;
}

/* Estrutura completa — medidas e cores extraídas do PSD */
.section-estrutura {
	background: #eff0e2;
	color: var(--color-primary);
	padding: 80px 0;
}

.section-estrutura__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 16px;
}

.section-estrutura__title {
	font-size: 40px;
	line-height: 1.2;
	color: var(--color-primary);
	margin: 0 0 38px;
	max-width: 700px;
}

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

.estrutura-card {
	grid-column: span 1;
	min-height: 215px;
	background: #fff;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.estrutura-card--esportes {
	grid-column: span 2;
	position: relative;
	background-color: var(--color-primary-dark);
	background-size: cover;
	background-position: center;
	padding: 0;
	color: #fff;
}

.estrutura-card--esportes .estrutura-card__overlay {
	position: relative;
	height: 100%;
	padding: 36px 32px;
	background: linear-gradient(90deg, rgba(9, 21, 34, 0.85) 0%, rgba(9, 21, 34, 0.55) 55%, rgba(9, 21, 34, 0.1) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.estrutura-card__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 12px;
}

.estrutura-card--esportes .estrutura-card__eyebrow {
	color: var(--color-accent);
}

.estrutura-card__title {
	font-size: 19px;
	color: var(--color-primary);
	margin: 0 0 10px;
}

.estrutura-card--esportes .estrutura-card__title {
	color: #fff;
}

.estrutura-card__text {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	opacity: 0.85;
}

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

	.estrutura-card--esportes {
		grid-column: span 2;
	}
}

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

	.estrutura-card--esportes {
		grid-column: span 1;
	}

	.section-estrutura__title {
		font-size: 30px;
	}
}

/* Experiências — medidas e cores extraídas do PSD */
.section-experiencias {
	background: #fff;
	color: var(--color-primary);
	padding: 88px 0;
}

.section-experiencias__grid {
	display: grid;
	grid-template-columns: 1.75fr 1fr;
	gap: 3rem 5.5rem;
	align-items: start;
}

.section-experiencias__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 16px;
}

.section-experiencias__title {
	font-size: 40px;
	line-height: 1.2;
	color: var(--color-primary);
	margin: 0 0 28px;
	max-width: 620px;
}

.section-experiencias__intro p {
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 22px;
	max-width: 560px;
}

.section-experiencias__intro .btn {
	margin-top: 16px;
}

.exp-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.exp-item {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0 16px;
	padding: 24px 0;
	border-top: 1px solid rgba(19, 41, 61, 0.12);
}

.exp-item:first-child {
	border-top: 0;
	padding-top: 0;
}

.exp-item__number {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	color: #e6d7b0;
}

.exp-item__body {
	flex: 1;
	min-width: 200px;
}

.exp-item__title {
	font-size: 19px;
	color: var(--color-primary);
	margin: 0 0 8px;
}

.exp-item__text {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	opacity: 0.85;
}

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

@media (max-width: 560px) {
	.section-experiencias__title {
		font-size: 30px;
	}
}

/* Lago e Pesca — medidas e cores extraídas do PSD */
.section-lago-pesca {
	background: #093252;
	color: #fff;
	padding: 69px 0 80px;
}

.section-lago-pesca__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
}

.section-lago-pesca__title {
	font-size: 36px;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 44px;
	text-align: center;
}

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

.pesca-card {
	padding: 33px 36px 40px;
}

.pesca-card--esportiva {
	background: #105785;
	color: #fff;
}

.pesca-card__title {
	font-size: 20px;
	margin: 0 0 20px;
	color: inherit;
}

.pesca-card__subtitle {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 26px;
	opacity: 0.9;
}

.pesca-card__fish ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pesca-card__fish li {
	font-size: 14px;
	font-weight: 700;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pesca-card__fish li:last-child {
	border-bottom: 0;
}

.pesca-card__fish--3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 1.75rem;
}

@media (max-width: 700px) {
	.pesca-card__fish--3col {
		grid-template-columns: 1fr;
	}
}

/* Eventos — medidas e cores extraídas do PSD */
.section-eventos {
	background: #222222;
	color: #fff;
	padding: 40px 0;
}

.section-eventos__grid {
	display: grid;
	grid-template-columns: 498fr 553fr;
	gap: 3rem;
	align-items: center;
}

.section-eventos__media {
	aspect-ratio: 498 / 660;
	background: rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

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

.section-eventos__content {
	text-align: right;
}

.section-eventos__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
}

.section-eventos__title {
	font-size: 34px;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 24px;
}

.section-eventos__text {
	font-size: 15px;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 0 32px auto;
	opacity: 0.85;
}

.capacidade-pills {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 426px;
	margin: 0 0 0 auto;
}

.capacidade-pill {
	display: block;
	padding: 12px 20px;
	border: 2px solid #093252;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

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

	.section-eventos__media {
		max-width: 420px;
		margin: 0 auto;
	}
}

/* Contato — medidas e cores extraídas do PSD (texto: #093252, confirmado por
 * amostragem de pixel — é um pouco diferente do --color-primary usado alhures) */
.section-contato {
	background: #eff0e2;
	color: #093252;
	padding: 73px 0 80px;
}

.section-contato__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	align-items: start;
}

.section-contato__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 700;
	color: #093252;
	margin: 0 0 29px;
}

.section-contato__title {
	font-size: 34px;
	line-height: 1.2;
	color: #093252;
	margin: 0 0 48px;
}

.section-contato__text {
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 28px;
}

.section-contato__contact-label {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
}

.contact-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.contact-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.contact-list__item svg {
	flex: none;
	color: #093252;
}

.contact-list__item a {
	font-weight: 700;
	font-size: 15px;
	color: #093252;
}

.contact-address {
	margin-bottom: 24px;
}

.contact-address strong {
	display: block;
	font-size: 15px;
	margin-bottom: 6px;
}

.contact-address p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.section-contato__form {
	background: #f3ece1;
	padding: 55px 40px 40px;
}

.chacara-contact-form__field {
	margin-bottom: 20px;
}

.chacara-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.chacara-contact-form label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 8px;
	color: #093252;
}

.chacara-contact-form input,
.chacara-contact-form select,
.chacara-contact-form textarea {
	width: 100%;
	padding: 18px 16px;
	border: 0;
	background: #fff;
	font: inherit;
	font-size: 14px;
	color: #093252;
}

.chacara-contact-form input::placeholder,
.chacara-contact-form textarea::placeholder {
	color: #bababa;
}

.chacara-contact-form textarea {
	resize: vertical;
}

.chacara-contact-form button {
	width: 100%;
	margin-top: 4px;
}

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

@media (max-width: 560px) {
	.chacara-contact-form__row {
		grid-template-columns: 1fr;
	}
}

/* Rodapé — logo flutuando sobre a faixa, como no PSD */
.site-footer {
	background: #093252;
	height: 100px;
	overflow: visible;
	position: relative;
}

.site-footer__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-footer__logo {
	align-self: center;
}

.site-footer__logo img {
	width: 140px;
	height: auto;
	display: block;
}

.site-footer__tagline {
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	font-family: var(--font-heading);
	margin: 0;
}

@media (max-width: 560px) {
	.site-footer {
		height: auto;
		padding-block: 24px;
	}

	.site-footer__tagline {
		font-size: 20px;
		text-align: center;
	}
}

/* Content layout */
.site-main {
	padding-block: 3rem;
}

.site-main.front-page {
	padding-block: 0;
}

.has-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 782px) {
	.has-sidebar {
		grid-template-columns: 2fr 1fr;
	}
}

/* One-page sections (front-page.php) */
.section {
	padding-block: 4rem;
}

.section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.section--dark {
	background: var(--color-primary-dark);
	color: #fff;
}

.section--dark h2 {
	color: #fff;
}

.section--accent {
	background: var(--color-accent);
	color: var(--color-text);
}

.post-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 2rem;
}

.post-card__body {
	padding: 1.25rem;
}

.entry-meta {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1.1rem;
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: 0.4rem;
}

/* Footer: ver regras completas em .site-footer mais acima (medidas do PSD) */
.site-footer a {
	color: #fff;
}

/* Forms — estilos específicos em .section-contato mais abaixo no arquivo */
.chacara-contact-form__notice {
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
}

.chacara-contact-form__notice--success {
	background: #e5f3e8;
	color: var(--color-primary-dark);
}

.chacara-contact-form__notice--error {
	background: #fbe9e9;
	color: #a02323;
}

/* Header — mobile: barra sólida normal (a logo/menu flutuante não cabe numa
 * tela estreita) + menu em sidebar deslizante, seguindo padrão comum de UX mobile. */
@media (max-width: 781px) {
	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 50;
		background: #0c3a63;
	}

	/* Compensa o header fixo pra nada ficar escondido atrás dele */
	body {
		padding-top: 116px;
	}

	.site-header__navwrap {
		grid-template-columns: 44px 1fr 44px;
		margin-top: 0;
		height: auto;
		padding-block: 0.75rem;
	}

	.site-header__logo-spacer {
		grid-column: 2;
		justify-self: center;
	}

	.site-header__logo {
		position: static;
		top: auto;
		transform: none;
		display: flex;
		justify-content: center;
	}

	.site-header__logo img {
		width: 96px;
	}

	.section-hero__overlay {
		/* No mobile o texto fica centralizado, então usamos uma cobertura
		 * uniforme (em vez do degradê só-metade-esquerda do desktop) pra manter
		 * o contraste em toda a largura. */
		background: rgba(8, 50, 81, 0.6);
		padding-top: 2.5rem;
	}

	/* Hero centralizado no mobile (texto e botões) */
	.section-hero__content {
		max-width: none;
		text-align: center;
	}

	.section-hero__title,
	.section-hero__text {
		max-width: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.section-hero__actions {
		justify-content: center;
		gap: 8px;
	}

	.section-hero__actions .btn {
		min-width: 0;
		padding: 0 12px;
		font-size: 12px;
	}

	.section-hero__stats {
		text-align: center;
	}

	.stat {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.stat__number {
		font-size: 28px;
	}

	/* Botão hambúrguer */
	.menu-toggle {
		display: block;
		grid-column: 3;
		justify-self: end;
		z-index: 60;
	}

	.menu-toggle__bar {
		transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
	}

	.site-header.is-menu-open .menu-toggle__bar {
		background: #fff;
	}

	.site-header.is-menu-open .menu-toggle__bar:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header.is-menu-open .menu-toggle__bar:nth-child(3) {
		opacity: 0;
	}

	.site-header.is-menu-open .menu-toggle__bar:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* Overlay escuro atrás do sidebar */
	.site-header__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(9, 21, 34, 0.55);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease;
		z-index: 55;
	}

	.site-header.is-menu-open .site-header__backdrop {
		opacity: 1;
		visibility: visible;
	}

	/* Sidebar deslizante com o menu completo */
	.site-header__mobile-nav {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		width: 82%;
		max-width: 340px;
		height: 100vh;
		height: 100dvh;
		background: #0c3a63;
		padding: 5.5rem 2rem 2.5rem;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 58;
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
	}

	.site-header.is-menu-open .site-header__mobile-nav {
		transform: translateX(0);
	}

	.main-navigation--left,
	.main-navigation--right {
		grid-column: auto;
		width: 100%;
	}

	.main-navigation--right {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		gap: 1.75rem;
	}

	.site-header__social {
		margin-top: 0.25rem;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.75rem;
		width: 100%;
	}

	.main-navigation--left ul {
		justify-content: flex-start;
	}

	.main-navigation a {
		font-size: 20px;
		color: #fff;
	}

	.main-navigation a:hover {
		color: var(--color-accent);
	}

	.site-header__social {
		color: #fff;
	}

	.site-header__social:hover {
		color: var(--color-accent);
	}

	.section-hero__title {
		font-size: 2rem;
	}
}

/* Trava o scroll do body com o sidebar mobile aberto */
body.has-mobile-menu-open {
	overflow: hidden;
}
