/* ==========================================================================
   3Z Realty — main.css
   Marca: preto + dourado (#FFC900) + branco. Fonte: Montserrat.
   ========================================================================== */

/* ---- Fonte (Montserrat variável self-hosted, latin, pesos 100–900) ---- */
@font-face {
	font-family: "Montserrat";
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/montserrat-var.woff2") format("woff2");
}

:root {
	--gold: #FFC900;
	--gold-2: #FDC745;
	--black: #000;
	--dark: #383838;
	--dark-mid: #545454;
	--gray-mid: #808080;
	--charcoal: #1c1c1c;
	--footer-bg: #111111;
	--light: #e7e7e7;
	--light-2: #d9d9d9;
	--text: #333333;
	--text-muted: #696969;
	--white: #ffffff;
	--container: 1400px;
	--nav-h: 92px;
	--font: "Montserrat", Arial, Helvetica, sans-serif;
}

/* ---- Reset leve ---- */
*, *::before, *::after { box-sizing: border-box; }
html { max-width: 1920px; margin: 0 auto; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	font-weight: 400;
	color: var(--text);
	background: var(--white);
	line-height: 1.55;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .85; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.15; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-gold { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Botões ---- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 40px; border: none; border-radius: 2px;
	font-weight: 400; font-size: 16px; letter-spacing: normal; text-transform: uppercase;
	background: var(--gold); color: #354147; transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--gold-2); opacity: 1; transform: translateY(-1px); }
.btn-dark { background: rgba(0,0,0,.75); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }

/* ---- Título de seção com traços laterais ---- */
.section-heading {
	display: flex; align-items: center; justify-content: center; gap: 28px;
	text-align: center; margin-bottom: 52px;
}
.section-heading::before, .section-heading::after {
	content: ""; height: 1px; flex: 1; background: var(--gold);
}
.section-heading h2 {
	margin: 0; color: var(--gold); font-size: 30px; font-weight: 700;
	letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.label-gold {
	display: inline-flex; align-items: center; gap: 16px;
	color: var(--gold); font-weight: 700; letter-spacing: 6px; text-transform: uppercase; font-size: 16px;
}
.label-gold::before { content: ""; width: 44px; height: 1px; background: var(--gold); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	height: var(--nav-h); display: flex; align-items: center;
	background: transparent; box-shadow: 0 0 0 rgba(0,0,0,0);
	transition: background-color .5s ease, box-shadow .5s ease, height .35s ease;
}
.site-header.is-solid { background: rgba(20,20,20,.97); box-shadow: 0 2px 16px rgba(0,0,0,.28); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-logo img { height: 60px; width: auto; object-fit: contain; }
.main-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
	color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--gold); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; }

/* ==========================================================================
   Hero / Banner
   ========================================================================== */
/* Hero = banner desenhado exibido inteiro (composição já embutida na imagem). */
.hero { position: relative; width: 100%; aspect-ratio: 1920 / 1030; overflow: hidden; background: #1c1c1c; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; display: block; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-arrows { position: absolute; top: 50%; width: 100%; left: 0; display: flex; justify-content: space-between; padding: 0 18px; z-index: 6; transform: translateY(-50%); pointer-events: none; }
.hero-arrows button { pointer-events: auto; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(0,0,0,.3); color: #fff; font-size: 20px; display: grid; place-items: center; transition: background .2s ease; }
.hero-arrows button:hover { background: var(--gold); color: #000; }

/* Banner simples de páginas internas */
.page-banner { position: relative; min-height: 46vh; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.page-banner h1 { position: relative; z-index: 2; font-size: 44px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; }

/* ==========================================================================
   Home — seções
   ========================================================================== */
.sec-historia { background: var(--dark); color: #fff; padding: 90px 0; }
.historia-intro { max-width: 1080px; margin-bottom: 90px; }
.historia-intro h2 { font-size: 30px; font-weight: 700; color: #fff; max-width: 760px; margin-bottom: 22px; }
.historia-intro p { color: #d0d0d0; font-weight: 300; font-size: 15px; max-width: 1080px; margin-bottom: 16px; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 15px; margin-top: 6px; }
.link-arrow:hover { color: var(--gold); opacity: 1; }
.numeros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 90px; margin-top: 44px; max-width: 1180px; }
.numero { display: flex; align-items: center; gap: 18px; }
.numero img { width: 46px; height: 46px; object-fit: contain; flex: none; }
.numero-txt { display: flex; flex-direction: column; line-height: 1.25; }
.numero .num { color: var(--gold); font-size: 23px; font-weight: 300; letter-spacing: .5px; }
.numero .desc { color: #cfcfcf; font-size: 14px; font-weight: 300; }
@media (max-width: 720px) { .numeros-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; } }
@media (max-width: 480px) { .numeros-grid { grid-template-columns: 1fr; } }
.sec-empreendimentos { background: var(--dark); color: #fff; padding: 80px 0; }
.sec-midia { background: var(--dark); color: #fff; padding: 80px 0; }

/* Grid destaque (home) 2x2 */
.emp-grid-home { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.emp-card-lg { position: relative; height: 340px; border-radius: 4px; overflow: hidden; }
.emp-card-lg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.emp-card-lg:hover img { transform: scale(1.05); }
.emp-card-lg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 100%); }
.emp-card-lg .info { position: absolute; inset: 0; z-index: 2; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.emp-card-lg .info h3 { font-size: 26px; margin: 0 0 6px; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.emp-card-lg .info .city { position: absolute; left: 28px; bottom: 24px; font-size: 13px; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; }
.center-cta { text-align: center; margin-top: 48px; }

/* Cards mídia */
.midia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.midia-card { display: block; }
.midia-card .thumb { height: 215px; border-radius: 2px; overflow: hidden; margin-bottom: 20px; background: #2b333a; }
.midia-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.midia-card:hover .thumb img { transform: scale(1.05); }
.midia-card .midia-body { border-left: 3px solid var(--gold); padding-left: 18px; }
.midia-card h3 { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; color: #fff; }
.midia-card p { font-size: 14px; color: #d4d4d4; margin-bottom: 12px; line-height: 1.5; }
.midia-card .more { color: var(--gold); font-weight: 400; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }

/* ==========================================================================
   Contato (bloco compartilhado)
   ========================================================================== */
.sec-contato { display: grid; grid-template-columns: 1fr 1fr; background: var(--light); min-height: 520px; }
.sec-contato .photo { position: relative; filter: grayscale(1); }
.sec-contato .photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sec-contato .form-wrap { padding: 70px 70px; display: flex; flex-direction: column; justify-content: center; }
.sec-contato h2 { font-size: 36px; font-weight: 700; color: #696969; margin-bottom: 6px; }
.sec-contato .lead { color: #696969; margin-bottom: 30px; font-size: 15px; }
.sec-contato .lead strong { color: #575757; }
.tz-form input, .tz-form textarea { width: 100%; height: 55px; padding: 10px 18px; margin-bottom: 16px; border: 1px solid #354147; border-radius: 12px; background: transparent; font-family: inherit; font-size: 14px; color: #333; }
.tz-form textarea { height: auto; }
.tz-form .btn { width: 100%; border-radius: 12px; margin-top: 6px; }
.gold-divider { height: 34px; background: var(--gold); }

/* ==========================================================================
   Archive empreendimentos
   ========================================================================== */
.emp-filter-hero { position: relative; min-height: 46vh; display: flex; align-items: center; color: #fff; }
.emp-filter-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emp-filter-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.emp-filter { position: relative; z-index: 3; display: grid; grid-template-columns: auto repeat(4, 1fr); gap: 16px; align-items: end; width: 100%; }
.emp-filter .filter-title { font-size: 22px; letter-spacing: .1em; text-transform: uppercase; align-self: center; }
.emp-filter label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; opacity: .8; }
.emp-filter select { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.5); background: rgba(28,36,49,.92); color: #fff; border-radius: 4px; font-family: inherit; cursor: pointer; }
.emp-filter select:focus { outline: none; border-color: var(--gold); }
.emp-filter select option { background: #2b333a; color: #fff; }
.emp-filter select option:checked, .emp-filter select option:hover { background: #3a444f; }
.emp-listing { background: var(--dark); padding: 60px 0 90px; }
.emp-listing .lead { color: #fff; text-align: center; font-size: 22px; margin-bottom: 40px; }
.emp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.emp-nenhum { color: #cfcfcf; text-align: center; padding: 40px 0; font-size: 16px; }

/* Paginação */
.emp-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.emp-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 6px; background: #2f2f2f; color: #e6e6e6; font-weight: 600; font-size: 14px; border: 1px solid #3d3d3d; transition: background .2s ease, color .2s ease; }
.emp-pagination a.page-numbers:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.emp-pagination .page-numbers.current { background: var(--gold); color: #000; border-color: var(--gold); }
.emp-pagination .page-numbers.dots { background: none; border: none; }

.emp-card {
	background: #354147; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column;
	min-height: 510px;
	transition: box-shadow .3s ease, transform .3s ease;
}
.emp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.45); }
.emp-card .thumb { height: 255px; padding: 20px 22px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.emp-card .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.emp-card:hover .thumb img { transform: scale(1.05); }
.emp-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.emp-card h3 { color: var(--gold); font-size: 21px; font-weight: 400; text-transform: uppercase; letter-spacing: .01em; line-height: 1.2; margin-bottom: 18px; }
.emp-card .meta { color: #e6e6e6; font-size: 14px; line-height: 2.1; margin-bottom: 22px; }
.emp-card .card-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.emp-card .status-tag { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: #eaeaea; background: #5a666c; border-radius: 2px; padding: 10px 14px; }
.emp-card .btn-mini { font-size: 11px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; background: var(--gold); color: #354147; border-radius: 2px; padding: 10px 16px; }

/* ==========================================================================
   Single empreendimento
   ========================================================================== */
.emp-hero { position: relative; min-height: 64vh; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; overflow: hidden; }
.emp-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emp-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.emp-hero-content { position: relative; z-index: 2; }
.emp-hero h1 { font-size: 65px; font-weight: 100; letter-spacing: .16em; text-transform: uppercase; margin: 0; }
.emp-hero-tipo { display: block; margin-top: 10px; font-size: 20px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }

.emp-status-badge { background: var(--light); text-align: center; padding: 34px 0; }
.emp-status-badge span { display: inline-block; background: #6f6a5f; color: #fff; padding: 13px 44px; border-radius: 30px; font-weight: 700; font-size: 20px; letter-spacing: .08em; text-transform: uppercase; }

.emp-intro { background: var(--light); padding: 10px 0 90px; }
.emp-intro .grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.emp-intro-txt { min-width: 0; }
.emp-nome { font-size: 36px; font-weight: 700; color: #696969; margin-bottom: 20px; }
.emp-titulo-hero { color: #000; font-size: 14.4px; line-height: 1.5; margin-bottom: 20px; }
.emp-titulo-hero h1, .emp-titulo-hero h2, .emp-titulo-hero h3 { font-size: 14.4px; font-weight: 400; margin: 0; letter-spacing: .01em; }
.emp-titulo-hero p { margin: 0 0 6px; }
.emp-corpo { color: #333; font-size: 14.5px; line-height: 1.6; }
.emp-corpo p { margin: 0 0 14px; }
.emp-intro .figure { align-self: stretch; }
.emp-intro .figure img { border-radius: 6px; width: 100%; height: 640px; object-fit: cover; display: block; }

/* Diferenciais — carrossel 2 colunas x 3 linhas (6 visíveis) */
.dif-carousel { display: flex; align-items: center; gap: 10px; margin-top: 40px; }
.dif-viewport { overflow: hidden; flex: 1; min-width: 0; }
.dif-track { position: relative; display: grid; grid-template-rows: repeat(3, auto); grid-auto-flow: column; grid-auto-columns: calc(50% - 12px); gap: 30px 24px; transition: transform .4s ease; }
.dif-item { display: flex; align-items: center; gap: 14px; padding-right: 10px; min-width: 0; }
.dif-item .dif-ico { width: 40px; height: 40px; object-fit: contain; flex: none; filter: brightness(0) saturate(100%) opacity(.85); }
.dif-item span { font-size: 14px; font-weight: 600; color: #696969; min-width: 0; overflow-wrap: break-word; }
.dif-carousel .dif-prev, .dif-carousel .dif-next { flex: none; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(53,65,71,.08); color: #354147; font-size: 22px; display: grid; place-items: center; cursor: pointer; transition: background .2s ease; }
.dif-carousel .dif-prev:hover, .dif-carousel .dif-next:hover { background: var(--gold); color: #000; }
.dif-carousel .dif-prev[disabled], .dif-carousel .dif-next[disabled] { opacity: .3; cursor: default; }

.emp-regiao { background: var(--gray-mid); color: #fff; padding: 84px 0; }
.emp-regiao-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
.emp-regiao-grid.has-map { grid-template-columns: 1fr 1fr; gap: 54px; }
.emp-regiao-titulo { color: var(--gold); font-size: 36px; font-weight: 400; line-height: 1.2; margin-bottom: 28px; }
.emp-regiao .txt { font-size: 14.5px; line-height: 1.9; font-weight: 300; }
.emp-regiao .txt p { margin: 0 0 6px; }
.emp-regiao-map iframe { width: 100%; height: 560px; border: 0; border-radius: 4px; display: block; }
@media (max-width: 820px) {
	.emp-regiao-grid.has-map { grid-template-columns: 1fr; }
	.emp-regiao-map iframe { height: 380px; }
}

.emp-gallery { background: var(--light); padding: 56px 0 80px; }
.emp-gallery .tabs { display: flex; gap: 34px; margin-bottom: 24px; }
.emp-gallery .tabs button { background: none; border: none; font-size: 16px; color: #535353; padding: 6px 0; border-bottom: 2px solid transparent; cursor: pointer; }
.emp-gallery .tabs button.is-active { color: #1c1c1c; border-color: var(--gold); }
.emp-gallery .tabs button.tab-disabled { opacity: .4; cursor: default; }

.gallery-stage { position: relative; }
.gallery-set { display: none; position: relative; }
.gallery-set.is-active { display: block; }
.gallery-slides { position: relative; height: 530px; border-radius: 4px; overflow: hidden; background: #cfcfcf; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; }
.gallery-slide.is-active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-set .gal-prev, .gallery-set .gal-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(0,0,0,.4); color: #fff; font-size: 22px; display: grid; place-items: center; cursor: pointer; transition: background .2s ease; }
.gallery-set .gal-prev { left: 16px; }
.gallery-set .gal-next { right: 16px; }
.gallery-set .gal-prev:hover, .gallery-set .gal-next:hover { background: var(--gold); color: #000; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.gallery-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #b6b6b6; cursor: pointer; padding: 0; transition: background .2s ease; }
.gallery-dots button.is-active { background: var(--gold); }
@media (max-width: 820px) { .gallery-slides { height: 320px; } }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-listing { padding: 70px 0 90px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border: 1px solid #eee; border-radius: 6px; overflow: hidden; background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.05); transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.1); }
.blog-card .thumb { height: 210px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; }
.blog-card h3 { font-size: 17px; color: var(--text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .01em; }
.blog-card .excerpt { color: var(--text-muted); font-size: 14px; }
.blog-card .more { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 700; font-size: 13px; }
.single-post-content { max-width: 820px; margin: 0 auto; padding: 60px 24px 90px; }
.single-post-content h1 { font-size: 34px; margin-bottom: 20px; }
.single-post-content img { border-radius: 6px; margin: 20px 0; }

/* ==========================================================================
   Imprensa (archive)
   ========================================================================== */
.imprensa-listing { padding: 70px 0 90px; background: #353535; color: #e7e7e7; }
.imprensa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
/* Paginação legível sobre o fundo grafite */
.imprensa-listing .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; margin: 0 4px; border-radius: 6px; background: rgba(255,255,255,.07); color: #e6e6e6; font-weight: 600; font-size: 14px; text-decoration: none; border: 1px solid rgba(255,255,255,.12); transition: background .2s ease, color .2s ease; }
.imprensa-listing .page-numbers.current { background: var(--gold); color: #1c1c1c; border-color: var(--gold); }
.imprensa-listing a.page-numbers:hover { background: var(--gold); color: #1c1c1c; border-color: var(--gold); }

/* ==========================================================================
   Páginas institucionais (hero + seção)
   ========================================================================== */
.inst-hero { position: relative; min-height: 78vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.inst-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inst-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.4) 100%); }
.inst-hero-inner { position: relative; z-index: 3; width: 100%; }
.inst-hero h1 { font-size: 52px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.inst-hero-sub { font-size: 17px; font-weight: 300; display: flex; align-items: center; gap: 16px; }
.scroll-arrow { display: inline-grid; place-items: center; width: 30px; height: 30px; font-size: 18px; animation: tz-bounce 1.8s infinite; }
@keyframes tz-bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }
.inst-section { padding-top: 80px; }
.inst-body { max-width: 800px; margin-bottom: 44px; color: #dcdcdc; font-size: 16px; }
.inst-body h1, .inst-body h2 { color: #fff; font-size: 30px; font-weight: 700; text-transform: uppercase; margin-bottom: 18px; }
.inst-body p { margin-bottom: 14px; line-height: 1.6; }
.inst-body strong { color: var(--gold); }
.inst-body .gold-cta { color: var(--gold); font-weight: 700; }

/* Grid de pastas por ano (Demonstrações Financeiras) */
.anos-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 380px)); gap: 18px; margin-top: 10px; }
.ano-folder { display: flex; align-items: center; gap: 16px; background: var(--gold); color: #1c1c1c; padding: 14px 22px; border-radius: 2px; font-weight: 500; font-size: 16px; transition: background .2s ease, transform .2s ease; }
.ano-folder:hover { background: var(--gold-2); opacity: 1; transform: translateY(-2px); }
.ano-folder .ano-icon { font-size: 20px; line-height: 1; }
.ano-folder .ano-num { flex: 1; text-align: center; letter-spacing: .04em; }
@media (max-width: 900px) { .anos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .anos-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Páginas de formulário dark (Contato)
   ========================================================================== */
.page-form-dark { background: linear-gradient(180deg, #383838 0%, #3d3d3d 55%, #5a5a5a 100%); color: #fff; padding: calc(var(--nav-h) + 70px) 0 130px; min-height: 70vh; }
.page-form-dark h1 { font-size: 46px; font-weight: 700; color: #fff; margin-bottom: 22px; text-transform: uppercase; }
.page-form-dark .form-intro { color: #cfcfcf; font-size: 16px; margin-bottom: 40px; }
.page-form-dark .form-intro p { margin: 0; }
.form-success { background: rgba(255,201,0,.12); border: 1px solid var(--gold); color: var(--gold); padding: 14px 18px; border-radius: 4px; max-width: 800px; margin-bottom: 24px; }
.tz-form-dark { max-width: 800px; }
.tz-form-dark .field { margin-bottom: 24px; }
.tz-form-dark label { display: block; color: #e2e2e2; font-size: 14px; margin-bottom: 10px; }
.tz-form-dark input, .tz-form-dark textarea { width: 100%; background: transparent; border: 1px solid #8f8f8f; border-radius: 2px; color: #fff; font-family: inherit; font-size: 15px; padding: 14px 18px; }
.tz-form-dark input { height: 56px; }
.tz-form-dark input::placeholder, .tz-form-dark textarea::placeholder { color: #8f8f8f; }
.tz-form-dark input:focus, .tz-form-dark textarea:focus { outline: none; border-color: var(--gold); }
.tz-form-dark .btn { margin-top: 12px; padding: 16px 64px; }
.tz-form-dark .field-file .file-note { display: block; color: #9a9a9a; font-size: 12.5px; margin: -4px 0 10px; }
.tz-form-dark input[type="file"] { padding: 0; height: auto; border: 1px solid #8f8f8f; border-radius: 2px; color: #cfcfcf; font-size: 14px; }
.tz-form-dark input[type="file"]::file-selector-button { background: #2b3440; color: #fff; border: none; padding: 16px 20px; margin-right: 16px; cursor: pointer; font-family: inherit; }
.tz-form-dark input[type="file"]::file-selector-button:hover { background: #354147; }
.form-error { background: rgba(220,80,80,.12); border: 1px solid #d05050; color: #f0a0a0; padding: 14px 18px; border-radius: 4px; max-width: 800px; margin-bottom: 24px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #000; color: #e2e2e2; padding: 70px 0 36px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr 1.1fr; gap: 40px; align-items: start; }
.footer-brand { padding-top: 40px; }
.footer-brand img { width: 150px; height: auto; }
.site-footer a { color: #e2e2e2; }
.site-footer a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 14px; line-height: 1.5; }
.footer-contact .with-pin { display: flex; gap: 8px; }
.footer-contact .pin { color: var(--gold); }
.footer-contact .gold { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #555; display: grid; place-items: center; color: #fff; font-size: 11px; }
.footer-social a:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-menu ul { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 14px; }
.footer-menu a { font-size: 14px; }
.footer-bottom { text-align: center; margin-top: 56px; padding-top: 0; color: #9a9a9a; font-size: 13px; line-height: 1.7; }

.historia-intro .label-gold { margin-bottom: 20px; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
	.emp-grid { grid-template-columns: repeat(2, 1fr); }
	.midia-grid, .blog-grid, .imprensa-grid { grid-template-columns: repeat(2, 1fr); }
	.emp-filter { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.main-nav { position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px; background: rgba(18,18,18,.98); transform: translateX(100%); transition: transform .3s ease; padding: 90px 28px; }
	.main-nav.is-open { transform: translateX(0); }
	.main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
	.nav-toggle { display: block; z-index: 60; }
	.site-header { background: rgba(20,20,20,.96); position: fixed; }
	.hero-content h1 { font-size: 34px; }
	.emp-grid-home { grid-template-columns: 1fr; }
	.emp-intro .grid { grid-template-columns: 1fr; gap: 30px; }
	.sec-contato { grid-template-columns: 1fr; }
	.sec-contato .photo { min-height: 280px; }
	.emp-hero h1, .page-banner h1 { font-size: 30px; }
}
@media (max-width: 560px) {
	.emp-grid, .midia-grid, .blog-grid, .imprensa-grid, .footer-grid, .emp-filter { grid-template-columns: 1fr; }
	.dif-grid { grid-template-columns: 1fr; }
	.section { padding: 56px 0; }
	.hero-content h1 { font-size: 28px; }
}
