/* ==========================================================================
   Ecomatrix — folha de estilos
   Paleta derivada do logo: verde-folha #82CC28, grafite #3E3F44 e
   verde-floresta #1F4836 (fundo do arquivo original do logo).
   ========================================================================== */

:root {
  --leaf: #82cc28;
  --leaf-soft: #b9e27f;
  --leaf-ink: #4c7d10;          /* verde legível sobre fundo claro (AA) */
  --forest: #1f4836;
  --forest-deep: #122c21;
  --forest-mid: #2c5c45;
  --graphite: #3e3f44;
  --ink: #1d211d;
  --muted: #5d625b;
  --paper: #f6f4ee;
  --sand: #ebe6d9;
  --white: #ffffff;
  --line: rgba(29, 33, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --radius-lg: 22px;
  --section: clamp(72px, 10vw, 140px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow: 0 18px 50px -24px rgba(18, 44, 33, 0.35);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 120, "SOFT" 30;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.2; }
h4 { font-size: 1.15rem; line-height: 1.3; }
em.leaf, .leaf-text { font-style: italic; color: var(--leaf-ink); }
.on-dark em.leaf, .on-dark .leaf-text { color: var(--leaf); }

:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--forest); color: var(--white); padding: 10px 16px; border-radius: 8px;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }

.section { padding-block: var(--section); position: relative; overflow: clip; }
.section-tight { padding-block: calc(var(--section) * 0.6); }
.on-dark { background: var(--forest); color: #e9efe9; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-sand { background: var(--sand); }
.on-white { background: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf-ink);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--leaf); box-shadow: 14px 0 0 -1px var(--leaf-soft), 26px 0 0 -2px rgba(130, 204, 40, .45);
  margin-right: 26px;
}
.on-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--leaf); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--muted); }
.on-dark .lead { color: #c9d6cd; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 15px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--leaf); color: var(--forest-deep); }
.btn-primary:hover { background: var(--leaf-soft); }
.btn-dark { background: var(--forest); color: var(--white); }
.btn-dark:hover { background: var(--forest-mid); }
.btn-ghost { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); }
.btn-outline { border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  color: var(--forest); text-decoration: none; border-bottom: 1.5px solid var(--leaf); padding-bottom: 2px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-dark .link-arrow { color: var(--white); }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 22px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; width: 190px; flex-shrink: 0; }
.brand img { width: 100%; }
.brand .logo-dark { display: none; }
.site-header.is-solid, .site-header.is-light {
  background: rgba(246, 244, 238, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); padding-block: 14px;
}
.site-header.is-solid .logo-light, .site-header.is-light .logo-light { display: none; }
.site-header.is-solid .logo-dark, .site-header.is-light .logo-dark { display: block; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav a:hover { background: rgba(255, 255, 255, .14); }
.nav a[aria-current="page"] { color: var(--leaf); }
.site-header.is-solid .nav a, .site-header.is-light .nav a { color: var(--ink); }
.site-header.is-solid .nav a:hover, .site-header.is-light .nav a:hover { background: rgba(31, 72, 54, .08); }
.site-header.is-solid .nav a[aria-current="page"], .site-header.is-light .nav a[aria-current="page"] { color: var(--leaf-ink); }
.nav .nav-cta { background: var(--leaf); color: var(--forest-deep) !important; margin-left: 8px; }
.nav .nav-cta:hover { background: var(--leaf-soft) !important; }

.menu-toggle {
  display: none; background: none; border: 0; padding: 10px; margin-right: -10px; cursor: pointer; color: var(--white);
}
.menu-toggle svg { width: 28px; height: 28px; }
.site-header.is-solid .menu-toggle, .site-header.is-light .menu-toggle { color: var(--ink); }

@media (max-width: 900px) {
  .brand { width: 150px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .nav {
    position: fixed; inset: 0; background: var(--forest-deep);
    flex-direction: column; justify-content: center; align-items: stretch; gap: 4px;
    padding: 100px 28px 40px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav a, .site-header.is-solid .nav a, .site-header.is-light .nav a {
    color: var(--white); font-family: var(--font-display); font-size: 2rem; font-weight: 400; padding: 10px 0; border-radius: 0;
  }
  .nav .nav-cta { margin: 24px 0 0; text-align: center; font-family: var(--font-body) !important; font-size: 1.05rem !important; padding: 16px !important; border-radius: 999px !important; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav { opacity: 1; visibility: visible; }
  body.menu-open .menu-toggle { color: var(--white) !important; }
  body.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
  body.menu-open .brand .logo-light { display: block !important; position: relative; z-index: 2; }
  body.menu-open .brand .logo-dark { display: none !important; }
}

/* ---------- Hero principal ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.hero-media, .page-hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { animation: slowzoom 22s ease-out both; }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after, .page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 44, 33, .55) 0%, rgba(18, 44, 33, 0) 30%),
    linear-gradient(0deg, rgba(18, 44, 33, .92) 0%, rgba(18, 44, 33, .45) 45%, rgba(18, 44, 33, .05) 80%);
}
.hero-inner { padding-block: 160px clamp(56px, 9vw, 110px); }
.hero h1 { max-width: 12ch; margin-bottom: 0.35em; }
.hero h1 em { font-style: italic; color: var(--leaf); }
.hero .lead { color: #e2ebe4; max-width: 34ch; margin-bottom: 2.2rem; }
.hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.hero-note {
  max-width: 280px; font-size: 0.9rem; color: #cfdcd3; border-left: 2px solid var(--leaf); padding-left: 18px;
}
.hero-note strong { display: block; color: var(--white); font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; line-height: 1.2; margin-bottom: 6px; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 20px;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  background: var(--leaf); border-radius: 2px; animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .scroll-cue { display: none; }
}

/* ---------- Hero de páginas internas ---------- */
.page-hero {
  position: relative; min-height: min(78svh, 720px); display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.page-hero .container { padding-block: 150px clamp(48px, 7vw, 90px); }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); max-width: 16ch; }
.page-hero .lead { color: #dbe6de; max-width: 52ch; margin: 0; }

.page-hero-plain {
  padding-block: 170px 60px; background: var(--forest); color: var(--white); position: relative; overflow: hidden;
}
.page-hero-plain h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); max-width: 20ch; }
.page-hero-plain .lead { color: #c9d6cd; }

/* ---------- Motivo de pontos (símbolo) ---------- */
.dots-motif {
  position: absolute; pointer-events: none; z-index: 0; opacity: .14; width: min(620px, 70vw);
}
.dots-motif.tr { right: -12%; top: -18%; }
.dots-motif.br { right: -10%; bottom: -30%; }
.dots-motif.bl { left: -14%; bottom: -26%; transform: scaleX(-1); }
.on-dark .dots-motif, .page-hero-plain .dots-motif { opacity: .12; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Layouts utilitários ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split-5-7 { grid-template-columns: 5fr 7fr; }
.split-7-5 { grid-template-columns: 7fr 5fr; }
.split.align-start { align-items: start; }
@media (max-width: 900px) { .split, .split-5-7, .split-7-5 { grid-template-columns: 1fr; } }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; }
.section-head.row > div { max-width: 700px; }

.figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure.tall { aspect-ratio: 4 / 5; }
.figure.wide { aspect-ratio: 16 / 10; }
.figure-caption { font-size: .85rem; color: var(--muted); margin-top: 12px; }

.figure-stack { position: relative; padding: 0 0 12% 12%; }
.figure-stack .figure.back { aspect-ratio: 4 / 5; }
.figure-stack .figure.front {
  position: absolute; left: 0; bottom: 0; width: 52%; aspect-ratio: 1; border: 6px solid var(--paper);
}
.on-white .figure-stack .figure.front { border-color: var(--white); }

/* ---------- Tripé ---------- */
.tripod { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 40px; }
.tripod > div { padding: 26px 22px 0 0; }
.tripod > div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.tripod span { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--leaf-ink); line-height: 1; margin-bottom: 10px; }
.tripod strong { display: block; font-size: 1.02rem; }
.tripod p { font-size: .92rem; color: var(--muted); margin: 4px 0 0; }
@media (max-width: 560px) {
  .tripod { grid-template-columns: 1fr; }
  .tripod > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .tripod > div { padding-bottom: 20px; }
}

/* ---------- Cartões de serviços ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative; display: flex; flex-direction: column; min-height: 460px; border-radius: var(--radius-lg);
  overflow: hidden; color: var(--white); text-decoration: none; isolation: isolate;
}
.service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.service::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(18, 44, 33, .96) 8%, rgba(18, 44, 33, .55) 55%, rgba(18, 44, 33, .1) 100%);
  transition: background .4s;
}
.service:hover img { transform: scale(1.06); }
.service .num { padding: 24px 24px 0; text-shadow: 0 1px 8px rgba(0,0,0,.5); font-size: .8rem; font-weight: 700; letter-spacing: .16em; color: var(--leaf); }
.service .body { margin-top: auto; padding: 24px; }
.service h3 { color: var(--white); margin-bottom: .45em; }
.service p { font-size: .95rem; color: #d3ded6; margin-bottom: 1.2em; }
.service .more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--leaf); }
.service .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service:hover .more svg { transform: translateX(4px); }

/* ---------- Manifesto (home) ---------- */
.manifesto-lines { list-style: none; margin: 0; padding: 0; }
.manifesto-lines li {
  display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line-light);
}
.manifesto-lines li:last-child { border-bottom: 1px solid var(--line-light); }
.manifesto-lines .n { font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--leaf); }
.manifesto-lines strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--white); line-height: 1.15; }
.manifesto-lines strong em { color: var(--leaf); }
.manifesto-lines p { margin: 6px 0 0; color: #bccbc1; font-size: .98rem; }

/* ---------- Processo ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; position: relative; }
.process::before {
  content: ""; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--leaf) 0 4px, transparent 4px 12px);
}
.step { position: relative; padding-right: 36px; }
.step .dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: var(--leaf);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 26px;
  position: relative; box-shadow: 0 0 0 8px var(--paper);
}
.on-white .step .dot { box-shadow: 0 0 0 8px var(--white); }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--muted); font-size: .98rem; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 36px; }
  .process::before { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, var(--leaf) 0 4px, transparent 4px 12px); }
  .step { padding: 0 0 0 84px; }
  .step .dot { position: absolute; left: 0; top: 0; margin: 0; }
}

/* ---------- Faixa com foto / CTA ---------- */
.band {
  position: relative; overflow: hidden; isolation: isolate; color: var(--white);
  border-radius: var(--radius-lg);
}
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18, 44, 33, .94) 0%, rgba(18, 44, 33, .7) 50%, rgba(18, 44, 33, .2) 100%); }
.band-inner { padding: clamp(40px, 7vw, 90px); max-width: 680px; }
.band h2 { color: var(--white); }
.band p { color: #d4e0d8; }

.cta-full { position: relative; overflow: hidden; isolation: isolate; color: var(--white); text-align: center; }
.cta-full > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-full::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(18, 44, 33, .72); }
.cta-full h2 { color: var(--white); max-width: 20ch; margin-inline: auto; }
.cta-full p { color: #d8e3dc; max-width: 46ch; margin: 0 auto 2rem; }
.cta-full .btn-row { justify-content: center; }

/* ---------- Clientes ---------- */
.clients { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 80px); }
.clients img { height: 64px; width: auto; object-fit: contain; border-radius: 8px; }
.clients .logo-green-branch { height: 54px; }
.clients .logo-landprint { height: 70px; }
.clients .logo-minasul { height: 34px; border-radius: 0; }
.clients .logo-expocacer { height: 56px; }
.clients .logo-cca { height: 46px; border-radius: 0; }


/* ---------- Depoimentos ---------- */
.quote-feature { margin: 0; max-width: 980px; }
.quote-feature blockquote { margin: 0; position: relative; }
.quote-feature blockquote::before {
  content: "\201C"; position: absolute; left: -0.06em; top: -0.12em; font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 11rem); line-height: 1; color: var(--leaf); opacity: .9;
}
.quote-feature blockquote p {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.6rem, 3.2vw, 2.6rem); line-height: 1.3;
  color: var(--white); margin: 0; padding-top: clamp(50px, 6.2vw, 78px); letter-spacing: -0.01em;
}
.quote-feature figcaption { display: flex; align-items: center; gap: 16px; margin-top: 36px; color: #bccbc1; font-size: .95rem; }
.quote-feature figcaption img { width: 64px; height: 64px; border-radius: 50%; box-shadow: 0 0 0 3px var(--leaf); }
.quote-feature figcaption strong { display: block; color: var(--white); font-size: 1.05rem; }
.quotes-pending { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
@media (max-width: 700px) { .quotes-pending { grid-template-columns: 1fr; } }
.quote-pending { border: 1.5px dashed rgba(255, 255, 255, .3); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.quote-pending img { height: 40px; width: auto; align-self: flex-start; background: var(--white); padding: 6px 10px; border-radius: 8px; box-sizing: content-box; }
.quote-pending p { margin: 0; color: #bccbc1; font-size: .92rem; }
.quote-pending p strong { display: block; color: var(--white); font-size: 1.02rem; }
.quote-pending span { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.posts-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .posts { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.post-card .thumb { aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; background: var(--sand); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-meta { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-ink); margin-bottom: 10px; }
.post-card h3 { font-size: 1.45rem; margin-bottom: .5em; transition: color .2s; }
.post-card:hover h3 { color: var(--forest-mid); }
.post-card p { color: var(--muted); font-size: .96rem; }

.post-featured { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 64px); align-items: center; text-decoration: none; color: inherit; margin-bottom: 72px; }
.post-featured .thumb { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; }
.post-featured .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-featured:hover .thumb img { transform: scale(1.04); }
.post-featured h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
@media (max-width: 900px) { .post-featured { grid-template-columns: 1fr; } }

/* Artigo */
.article-hero { padding-block: 160px 0; background: var(--paper); }
.article-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); max-width: 22ch; }
.article-hero .post-meta { margin-bottom: 20px; }
.article-byline { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .95rem; margin-top: 26px; }
.article-byline .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--leaf); display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.article-byline strong { color: var(--ink); display: block; }
.article-cover { margin-top: 48px; }
.article-cover .figure { aspect-ratio: 21 / 9; }
@media (max-width: 700px) { .article-cover .figure { aspect-ratio: 4 / 3; } }

.prose { font-size: 1.1rem; line-height: 1.8; color: #2b2f2a; }
.prose > * + * { margin-top: 1.2em; }
.prose p { margin: 0; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 2.2em 0 0; color: var(--forest); }
.prose h3 { font-size: 1.35rem; margin: 1.8em 0 0; color: var(--forest); }
.prose .intro { font-size: 1.28rem; line-height: 1.65; color: var(--ink); font-family: var(--font-display); font-weight: 300; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .5em; }
.prose li::marker { color: var(--leaf-ink); }
.prose blockquote {
  margin: 2em 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--leaf);
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; color: var(--forest); font-style: italic;
}
.prose figure { margin: 2.4em 0; }
.prose figure img { border-radius: var(--radius); width: 100%; }
.prose figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; text-align: center; }
.prose .sources { font-size: .92rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.5em; margin-top: 3em; }
.prose .sources ol { margin-top: .8em; }
.prose .sources h2 { font-size: 1.1rem; margin: 0; font-family: var(--font-body); font-weight: 700; color: var(--ink); letter-spacing: 0; }

.article-end { border-top: 1px solid var(--line); margin-top: 64px; padding-top: 40px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }

/* ---------- Quem somos ---------- */
.manifesto-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.manifesto-block + .manifesto-block { border-top: 1px solid var(--line); }
.manifesto-block:nth-child(even) .figure { order: 2; }
.manifesto-block .figure { aspect-ratio: 5 / 4; }
.manifesto-block .verb { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf-ink); margin-bottom: 14px; display: block; }
.manifesto-block h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.manifesto-block p { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
@media (max-width: 900px) {
  .manifesto-block { grid-template-columns: 1fr; }
  .manifesto-block:nth-child(even) .figure { order: 0; }
}

.statement { text-align: center; }
.statement p.big { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.3rem); line-height: 1.2; color: var(--white); max-width: 24ch; margin: 0 auto .6em; font-weight: 300; }
.statement p.big em { color: var(--leaf); }
.statement .sign { color: #bccbc1; font-size: 1.05rem; }
.statement .sign strong { color: var(--white); }

.mvv { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.mvv-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px); border: 1px solid var(--line); }
.mvv-card .tag { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf-ink); margin-bottom: 18px; display: block; }
.mvv-card p { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4; color: var(--ink); margin: 0; }
.values { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.values li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.values li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }
@media (max-width: 900px) { .mvv { grid-template-columns: 1fr; } }

.team { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { .team { grid-template-columns: 1fr; } }
.person { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px); border: 1px solid var(--line); }
.person .portrait { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; margin-bottom: 22px; box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--line); }
.team-3 { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.team-3 .person { padding: clamp(24px, 3vw, 36px); }
.team-3 .portrait { width: 92px; height: 92px; }
.team-3 p { font-size: .94rem; }
@media (max-width: 1000px) { .team-3 { grid-template-columns: 1fr; } }
.person .mono {
  width: 64px; height: 64px; border-radius: 50%; background: var(--forest); color: var(--leaf);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 22px;
}
.person h3 { margin-bottom: .2em; }
.person .role { font-size: .88rem; font-weight: 700; color: var(--leaf-ink); margin-bottom: 1.2em; display: block; letter-spacing: .02em; }
.person p { color: var(--muted); font-size: .98rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.person { display: flex; flex-direction: column; }
.person-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 24px; font-weight: 700; font-size: .92rem; color: var(--forest); text-decoration: none; }
.person-link svg { width: 20px; height: 20px; color: #0a66c2; }
.person-link:hover { color: var(--leaf-ink); }
.chips span { font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); }

/* ---------- O que fazemos ---------- */
.service-detail { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); padding-block: clamp(56px, 8vw, 110px); align-items: start; scroll-margin-top: 80px; }
.service-detail + .service-detail { border-top: 1px solid var(--line); }
.service-detail .sticky { position: sticky; top: 110px; }
.service-detail .idx { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--leaf); margin-bottom: 18px; display: block; }
.service-detail .content p { font-size: 1.08rem; color: #3a3f39; }
.service-detail .content .figure { margin-top: 36px; }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .service-detail .sticky { position: static; }
}
.mockup { border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); padding: clamp(18px, 4vw, 44px); }
.mockup img { width: 100%; filter: drop-shadow(0 24px 30px rgba(18, 44, 33, .25)); }
.image-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(14px, 2.5vw, 28px); margin: 36px 0 0; }
.image-panel img { width: 100%; border-radius: 8px; }
.image-panel figcaption { font-size: .88rem; color: var(--muted); margin-top: 14px; }

.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.feature-list svg { width: 22px; height: 22px; color: var(--leaf-ink); margin-top: 3px; }
.feature-list strong { display: block; }
.feature-list span { color: var(--muted); font-size: .96rem; }

.subnav { position: sticky; top: 70px; z-index: 20; background: rgba(246, 244, 238, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: block; white-space: nowrap; padding: 16px 14px; font-size: .92rem; font-weight: 600; text-decoration: none; color: var(--muted); border-bottom: 2px solid transparent; }
.subnav a:hover, .subnav a.active { color: var(--forest); border-bottom-color: var(--leaf); }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list a {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; transition: border-color .2s, transform .25s var(--ease);
}
.contact-list a:hover { border-color: var(--leaf); transform: translateY(-2px); }
.contact-list .ico { width: 52px; height: 52px; border-radius: 12px; background: var(--forest); color: var(--leaf); display: grid; place-items: center; }
.contact-list .ico svg { width: 24px; height: 24px; }
.contact-list small { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list strong { font-size: 1.08rem; word-break: break-word; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); }
.form h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid transparent; border-radius: 10px; padding: 14px 16px; transition: border-color .2s, background .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--leaf); background: var(--white); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--muted); cursor: pointer; grid-column: 1 / -1; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--forest); flex-shrink: 0; }
.form-status { margin: 18px 0 0; padding: 14px 16px; border-radius: 10px; background: #eaf5dc; color: var(--forest); font-weight: 600; font-size: .95rem; }
.form-status.is-error { background: #fbe9e7; color: #9b2c1f; }
.btn:disabled { opacity: .6; cursor: wait; }
.form-note { font-size: .85rem; color: var(--muted); margin: 16px 0 0; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--forest-deep); color: #b7c6bc; padding-block: 80px 32px; position: relative; overflow: hidden; }
.site-footer a { color: #dce6df; text-decoration: none; }
.site-footer a:hover { color: var(--leaf); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand img { width: 200px; margin-bottom: 22px; }
.footer-brand p { max-width: 44ch; font-size: .95rem; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf); margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: .85rem;
  border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 60px; padding-top: 26px; position: relative; z-index: 1;
}
.photo-credit { display: inline-flex; align-items: center; gap: 6px; }
.photo-credit svg { width: 15px; height: 15px; }
.person-link svg[stroke] { color: #c13584; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: #dce6df; }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Diversos ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.text-muted { color: var(--muted); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.divider-dots { height: 12px; background: radial-gradient(circle, var(--leaf) 2px, transparent 2.5px) 0 50% / 14px 12px repeat-x; opacity: .6; max-width: 120px; margin: 0 0 28px; }
.section-head.center .divider-dots { margin-inline: auto; }
