/* ============================================================
   Orgamin — design system OFICIAL "Campo Vivo"
   (identidade: docs/Comunicacao). Paleta solar verde-lima,
   Bricolage Grotesque + Hanken Grotesk, acentos JP da fermentacao.
   ============================================================ */
:root {
  /* Paleta OFICIAL Orgamin (Manual de Identidade Visual v1.0 · 2026,
     docs/Comunicacao-rev.002/assets/orgamin-palette.css). Os nomes das
     variaveis sao herdados do design "Campo Vivo"; os valores agora sao os
     5 verdes oficiais + neutros (creme/fundo/texto) que a paleta nao define. */
  --sombra: #0A3D14;   /* Verde Profundo — base, textos, contornos */
  --campo:  #166F27;   /* Verde Floresta — cor primaria da marca */
  --broto:  #34A853;   /* Verde Folha — apoio / verde ativo */
  --folha:  #A8E63A;   /* Verde Limao — destaque / energia */
  --sol:    #D6F57C;   /* Verde Broto — claro / respiro (lima solar) */
  --palha:  #F4F0D8;   /* creme (neutro) */
  --bg:     #FBFBF2;   /* fundo base (neutro) */
  --deep:   #0A3D14;   /* Verde Profundo */
  --footer: #082A0F;   /* rodape — profundo escurecido */
  --corpo:  #3D4A35;   /* texto de corpo (neutro) */
  --corpo2: #4D5A44;
  --linha:  rgba(10,61,20,.10);
  --mono:   'IBM Plex Mono', ui-monospace, monospace;
  --title:  'Bricolage Grotesque', 'Noto Sans JP', system-ui, sans-serif;
  --body:   'Hanken Grotesk', 'Noto Sans JP', system-ui, sans-serif;
  --jp:     'Noto Serif JP', serif;
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--sombra);
  font-family: var(--body); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--campo); text-decoration: none; }
a:hover { color: var(--sombra); }
::selection { background: var(--sol); color: var(--sombra); }
h1, h2, h3, h4 { font-family: var(--title); letter-spacing: -.02em; text-wrap: balance; }
p { text-wrap: pretty; }

/* foco de teclado visivel (review a11y P0.1) */
:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--campo); outline-offset: 2px; border-radius: 6px;
}
.on-dark :where(a, button):focus-visible,
.topbar :where(a, button):focus-visible { outline-color: var(--sol); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { width: 100%; }
.pad { padding: 84px 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--campo);
  color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; transition: top .15s; }
.skip-link:focus { top: 12px; color: #fff; }

/* rotulos e kanji */
.eyebrow-row { display: flex; align-items: baseline; gap: 14px; }
.kanji { font-family: var(--jp); color: var(--folha); font-weight: 700; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--broto); }

/* botoes pill */
.btn { display: inline-block; font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition-property: transform, background-color, box-shadow, color; transition-duration: .14s; transition-timing-function: ease-out; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }
.btn-primary { background: var(--campo); color: var(--sol); box-shadow: 0 8px 22px rgba(22,111,39,.24); }
.btn-primary:hover { color: var(--sol); background: #125b20; }
.btn-outline { background: transparent; color: var(--campo); border-color: var(--campo); }
.btn-outline:hover { color: var(--campo); background: rgba(22,111,39,.06); }
.btn-sol { background: var(--sol); color: var(--sombra); }
.btn-sol:hover { color: var(--sombra); }
.btn-dark { background: var(--sombra); color: var(--sol); }
.btn-dark:hover { color: var(--sol); background: #07230d; }

/* ---------- Topbar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(251,251,242,.86);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--linha); }
.topbar .wrap { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; color: var(--sombra); }
.brand .orgamin-logo { display: block; width: 120px; height: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a.navlink { font-weight: 600; font-size: 12.5px; color: var(--sombra); opacity: .62;
  padding: 8px 11px; white-space: nowrap; border-bottom: 2px solid transparent; border-radius: 4px; }
.nav a.navlink:hover { opacity: 1; color: var(--campo); }
.nav a.navlink.active { opacity: 1; color: var(--campo); border-bottom-color: var(--broto); }
.lang { display: flex; gap: 2px; margin-left: 6px; }
.lang a { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--sombra); opacity: .5; padding: 6px 7px; border-radius: 6px; }
.lang a.active { opacity: 1; color: var(--campo); background: rgba(22,111,39,.10); }
.nav-cta { flex: none; background: var(--campo); color: var(--sol) !important; font-weight: 700; font-size: 12.5px;
  padding: 10px 18px; border-radius: 999px; margin-left: 8px; }
.nav-cta:hover { background: #125b20; }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--sombra); cursor: pointer; padding: 8px; }

@media (max-width: 1024px) {
  .nav { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--bg); padding: 14px 20px 20px; gap: 2px; border-bottom: 1px solid var(--linha);
    box-shadow: 0 18px 30px rgba(20,38,15,.10); transform: translateY(-150%); transition: transform .22s ease;
    max-height: calc(100vh - 72px); overflow: auto; }
  .nav.open { transform: translateY(0); }
  .nav a.navlink { font-size: 15px; padding: 13px 10px; opacity: .82; border-bottom: 1px solid var(--linha); border-radius: 0; }
  .nav a.navlink.active { border-bottom-color: var(--linha); }
  .lang { margin: 8px 0 4px; }
  .lang a { font-size: 13px; padding: 8px 12px; }
  .nav-cta { margin: 8px 0 0; text-align: center; padding: 14px; font-size: 15px; }
  .nav-toggle { display: block; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden;
  background-image: linear-gradient(100deg, rgba(214,245,124,.96) 0%, rgba(168,230,58,.85) 32%, rgba(52,168,83,.55) 64%, rgba(22,111,39,.5) 100%), url('/assets/img/photos/banner.jpg');
  background-size: cover; background-position: center right; }
.hero .inner { max-width: var(--max); margin: 0 auto; padding: 88px 32px 92px; position: relative; }
.hero .eyebrow { color: #0A3D14; }
.hero h1 { margin: 22px 0 0; font-weight: 800; font-size: clamp(44px, 8vw, 86px); line-height: .94; color: var(--sombra); max-width: 13ch; }
.hero p.lead { margin: 24px 0 0; font-weight: 500; font-size: clamp(16px, 2vw, 20px); line-height: 1.5; color: #0A3D14; max-width: 52ch; }
.hero .cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.jp-seal { position: absolute; right: 32px; top: 88px; width: 128px; height: 128px; border-radius: 50%;
  border: 1.5px solid rgba(20,38,15,.35); display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--sombra); background: rgba(251,251,242,.18); }
.jp-seal .big { font-family: var(--jp); font-weight: 700; font-size: 30px; letter-spacing: .1em; line-height: 1; }
.jp-seal .sm { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; margin-top: 8px; text-align: center; line-height: 1.4; }

/* stat strip */
.stats { border-top: 1px solid rgba(20,38,15,.16); background: rgba(20,38,15,.05); }
.stats .inner { max-width: var(--max); margin: 0 auto; padding: 20px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats .n { font-family: var(--title); font-weight: 800; font-size: 30px; color: var(--sombra); font-variant-numeric: tabular-nums; }
.stats .l { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: #0A3D14; text-transform: uppercase; margin-top: 4px; }

/* ---------- Page head (internas) ---------- */
.page-head { background-image: linear-gradient(105deg, rgba(214,245,124,.95) 0%, rgba(168,230,58,.85) 42%, rgba(52,168,83,.6) 80%, rgba(22,111,39,.55) 100%), url('/assets/img/photos/banner.jpg');
  background-size: cover; background-position: center; }
.page-head.dark { background-image: linear-gradient(120deg, rgba(10,61,20,.92) 0%, rgba(7,35,13,.86) 55%, rgba(10,61,20,.72) 100%), url('/assets/img/photos/banner.jpg');
  background-size: cover; background-position: center; color: var(--palha); }
.page-head .inner { max-width: var(--max); margin: 0 auto; padding: 66px 32px; }
.page-head h1 { margin: 16px 0 0; font-weight: 800; font-size: clamp(32px, 5.5vw, 56px); line-height: .98; color: var(--sombra); max-width: 18ch; }
.page-head.dark h1 { color: var(--palha); }
.page-head p { margin: 18px 0 0; font-weight: 500; font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: #0A3D14; max-width: 60ch; }
.page-head.dark p { color: #c3d6a0; }
.page-head.dark .eyebrow, .page-head.dark .kanji { color: var(--folha); }

/* ---------- Section head ---------- */
.sec-head { margin-bottom: 44px; }
.sec-head h2 { margin: 16px 0 0; font-weight: 700; font-size: clamp(30px, 5vw, 50px); line-height: .98; max-width: 18ch; }
.sec-head p { margin: 18px 0 0; font-size: 17px; line-height: 1.7; color: var(--corpo); max-width: 60ch; }
.on-dark .sec-head p { color: #c3d6a0; }
.on-dark .eyebrow, .on-dark .kanji { color: var(--folha); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--linha); border-radius: 18px; padding: 28px; background: var(--bg);
  transition-property: transform, box-shadow; transition-duration: .15s; transition-timing-function: ease-out; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(20,38,15,.09); }
.card .num { font-family: var(--title); font-weight: 800; font-size: 20px; color: var(--broto); }
.card h3 { margin: 12px 0 8px; font-weight: 700; font-size: 19px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--corpo); }
.card.white { background: #fff; }
.card.feat { background: linear-gradient(150deg, var(--broto), var(--campo)); color: var(--palha); border: 0; display: flex; flex-direction: column; justify-content: center; }
.card.feat h3 { font-size: 24px; font-weight: 800; }
.card.feat p { color: #e6f0cf; }
.card.feat .kanji { color: var(--sol); font-size: 22px; }

/* cards de cultura com foto */
.card.crop { padding: 0; overflow: hidden; }
.card.crop .cimg { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-bottom: 1px solid var(--linha); outline: 1px solid rgba(0,0,0,.06); outline-offset: -1px; }
.card.crop .cbody { padding: 22px 24px 26px; }
.card.crop .cbody .jpk { font-family: var(--jp); font-size: 22px; color: var(--broto); }

/* tags mono (nutrientes) */
.tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tagm { font-family: var(--mono); font-size: 9.5px; background: var(--sol); color: var(--sombra); padding: 3px 8px; border-radius: 6px; letter-spacing: .04em; }

/* ---------- Bloco institucional (home) ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.02; }
.split p { margin-top: 20px; font-size: 16px; line-height: 1.7; color: var(--corpo); max-width: 52ch; }
.partner { margin-top: 24px; display: inline-flex; align-items: center; gap: 14px; padding: 14px 20px; border: 1px solid var(--linha); border-radius: 14px; background: #fff; }
.partner .av { width: 40px; height: 40px; border-radius: 50%; background: var(--sombra); color: var(--sol); display: flex; align-items: center; justify-content: center; font-family: var(--jp); font-size: 18px; flex: none; }
.split .art { border-radius: 20px; overflow: hidden; background: linear-gradient(150deg, var(--campo), var(--deep)); min-height: 300px; position: relative; display: flex; align-items: flex-end; padding: 26px; color: var(--palha); }
.split .art .ghost { position: absolute; right: -40px; top: -30px; width: 260px; color: var(--palha); opacity: .12; }
.split .art .jpk { font-family: var(--jp); font-size: 20px; color: var(--folha); }

/* ---------- Presenca global ---------- */
.globe { border-radius: 24px; background: var(--sombra); color: var(--palha); padding: 52px 48px; }
.globe .regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.globe .region { border-top: 1px solid rgba(214,245,124,.28); padding-top: 18px; }
.globe .region .rl { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--folha); text-transform: uppercase; margin-bottom: 16px; }
.globe .region .items { display: flex; flex-direction: column; gap: 10px; font-weight: 500; font-size: 17px; }
.globe .region .items.two { display: grid; grid-template-columns: 1fr 1fr; }

/* ---------- Produtos (secao escura) ---------- */
.prod-card { background: var(--bg); color: var(--sombra); border-radius: 20px; padding: 28px; display: flex; gap: 22px;
  transition-property: transform, box-shadow; transition-duration: .15s; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.prod-card.base { background: linear-gradient(160deg, var(--folha), var(--broto)); }
.prod-ico { flex: none; width: 64px; height: 80px; border-radius: 10px; background: linear-gradient(160deg, var(--broto), var(--campo));
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
.prod-card.base .prod-ico { background: var(--sombra); }
.prod-ico.photo { width: 88px; height: 112px; background: #fff; border: 1px solid var(--linha); padding: 6px; align-items: center; }
.prod-ico.photo img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; outline: 0; }
.prod-card h3 { margin: 0; font-weight: 800; font-size: 22px; }
.prod-card p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--corpo); }
.prod-card.base p { color: #0A3D14; }

/* ---------- Timeline ---------- */
.tl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tl .item { border: 1px solid var(--linha); border-radius: 18px; overflow: hidden; background: #fff; }
.tl .yr { height: 120px; display: flex; align-items: center; justify-content: center; font-family: var(--title); font-weight: 800; font-size: 44px; font-variant-numeric: tabular-nums; }
.tl .item:nth-child(1) .yr { background: linear-gradient(150deg, var(--deep), var(--campo)); color: var(--sol); }
.tl .item:nth-child(2) .yr { background: linear-gradient(150deg, var(--campo), var(--broto)); color: var(--palha); }
.tl .item:nth-child(3) .yr { background: linear-gradient(150deg, var(--folha), var(--sol)); color: var(--sombra); }
.tl .body { padding: 20px 22px; }
.tl .body b { font-size: 15px; }
.tl .body p { margin-top: 6px; font-size: 13.5px; line-height: 1.6; color: var(--corpo); }

/* ---------- Prova de campo (quem-somos) ---------- */
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.proof .txt { display: flex; flex-direction: column; gap: 20px; font-size: 15.5px; line-height: 1.75; color: var(--corpo); }
.proof .blocks { display: flex; flex-direction: column; gap: 16px; }
.pb { border-radius: 16px; padding: 22px; }
.pb.a { background: linear-gradient(150deg, var(--campo), var(--deep)); color: var(--palha); min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.pb.a .ghost { position: absolute; right: -30px; top: -24px; width: 180px; color: var(--palha); opacity: .1; }
.pb .ml { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--sol); }
.pb.a .tt { font-family: var(--title); font-weight: 700; font-size: 22px; margin-top: 4px; }
.pb-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pb.sol { background: var(--sol); color: var(--sombra); min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; }
.pb.white { background: #fff; border: 1px solid var(--linha); min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; }
.pb.dark { background: var(--sombra); color: var(--palha); display: flex; align-items: center; gap: 16px; }
.pb.dark .jpk { font-family: var(--jp); font-size: 30px; color: var(--folha); flex: none; }

/* ---------- Fluxograma / meio ambiente ---------- */
.flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-weight: 600; font-size: 12.5px; }
.flow .step { background: var(--palha); padding: 8px 12px; border-radius: 8px; }
.flow .step.hot { background: var(--sol); }
.flow .step.end { background: var(--campo); color: var(--sol); }
.flow .arw { color: var(--folha); }
.effects { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.effects .e { border: 1px solid var(--linha); border-radius: 16px; padding: 22px; background: #fff; }
.effects .e .jpk { font-family: var(--jp); font-size: 20px; color: var(--broto); }
.effects .e h4 { margin: 8px 0 6px; font-family: var(--body); font-weight: 700; font-size: 15px; }
.effects .e p { font-size: 13px; line-height: 1.55; color: var(--corpo); }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cc { background: var(--bg); border-radius: 18px; padding: 28px; }
.cc .ml { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--broto); margin-bottom: 14px; }
.cc .lines { display: flex; flex-direction: column; gap: 8px; font-weight: 500; font-size: 16px; color: var(--sombra); }
.cc.wa { background: var(--sombra); color: var(--palha); display: flex; flex-direction: column; justify-content: space-between; }
.cc.wa .ml { color: var(--folha); }
.cc.wa .big { font-family: var(--title); font-weight: 700; font-size: 20px; }

/* formulario */
.lead-sec .inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.lead-grid h2 { font-weight: 800; font-size: clamp(28px, 4vw, 40px); line-height: 1; color: var(--sombra); }
.lead-grid p.sub { margin-top: 16px; font-size: 17px; color: #0A3D14; }
.lead-grid ul.mini { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.lead-grid ul.mini li { display: flex; gap: 10px; font-weight: 500; color: #0A3D14; }
form.card-form { background: var(--bg); border-radius: 20px; padding: 30px; box-shadow: 0 12px 40px rgba(20,38,15,.14); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input { width: 100%; padding: 14px 15px; font-size: 15px; font-family: inherit; color: var(--sombra);
  border: 1.5px solid var(--linha); border-radius: 11px; background: #fff; outline: none; transition: border-color .12s; }
.field input:focus { border-color: var(--campo); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
form .btn { width: 100%; }
.form-msg { margin-top: 14px; font-size: 15px; font-weight: 600; min-height: 22px; }
.form-msg.ok { color: var(--campo); }
.form-msg.err { color: #b23b2e; }
.form-legal { margin-top: 12px; font-size: 12px; color: var(--corpo2); }

/* banner reseller (onde comprar) */
.banner { border-radius: 20px; background: linear-gradient(150deg, var(--broto), var(--campo)); color: var(--palha); padding: 44px 40px; text-align: center; }
.banner h3 { font-weight: 800; font-size: clamp(24px, 3vw, 32px); }
.banner p { max-width: 640px; margin: 12px auto 22px; color: #eef7d8; }

/* ---------- Rodape ---------- */
footer { background: var(--footer); color: #c3d6a0; }
footer .inner { max-width: var(--max); margin: 0 auto; padding: 56px 32px 40px; }
footer .fgrid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr .9fr; gap: 32px; align-items: start; }
footer .brand-f { max-width: 340px; }
footer .brand-f .logo-chip { display: inline-block; background: var(--palha); padding: 12px 18px; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
footer .brand-f .logo-chip .orgamin-logo { width: 168px; height: auto; display: block; }
footer .brand-f p { margin-top: 18px; font-size: 13.5px; line-height: 1.6; color: #8fae6a; }
footer .brand-f .jpk { font-family: var(--jp); color: var(--folha); }
footer h4 { font-family: var(--body); color: #d7e3da; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; font-weight: 700; }
footer .fcol p { font-size: 13.5px; line-height: 1.75; color: #8fae6a; margin-bottom: 2px; }
footer .fcol p b { color: #c3d6a0; font-weight: 700; }
footer .fcol a { display: block; font-size: 13.5px; line-height: 1.95; color: #8fae6a; }
footer .fcol a:hover { color: #fff; }
.social { display: flex; gap: 12px; }
.social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(214,245,124,.12); display: flex;
  align-items: center; justify-content: center; color: var(--sol); }
.social a svg { width: 26px; height: 26px; }
.social a:hover { background: var(--campo); color: var(--sol); }
.legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(214,245,124,.14);
  font-family: var(--mono); font-size: 12px; line-height: 1.7; color: #7a915a; }

/* whatsapp flutuante */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; background: #25D366; color: #063d21;
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.42); }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .split, .proof, .lead-grid { grid-template-columns: 1fr; }
  .g2, .g3, .g4, .tl, .globe .regions, .contact-grid, .effects { grid-template-columns: 1fr; }
  .stats .inner { grid-template-columns: 1fr 1fr; }
  .globe .region .items.two { grid-template-columns: 1fr 1fr; }
  .jp-seal { display: none; }
  .hero .inner { padding: 64px 24px 68px; }
  .pad { padding: 60px 0; }
  .globe { padding: 36px 24px; }
  .prod-card { flex-direction: column; gap: 16px; }
  footer .fgrid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer .brand-f { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .stats .inner { grid-template-columns: 1fr 1fr; }
  .effects { grid-template-columns: 1fr 1fr; }
  .pb-2 { grid-template-columns: 1fr; }
  footer .fgrid { grid-template-columns: 1fr; }
}

/* reduce motion (review a11y P1.8) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---- fluxogramas oficiais (Meio ambiente) ---- */
.diagrama { margin: 40px 0 8px; }
.diagrama a { display: block; background: #fff; border: 1px solid var(--linha);
  border-radius: 16px; padding: 14px; overflow: hidden; }
.diagrama img { width: 100%; height: auto; display: block; border-radius: 8px; }
.diagrama figcaption { margin-top: 12px; font-size: 13px; color: var(--corpo2);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.diagrama figcaption span { font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--broto); }
