:root {
  color-scheme: dark;
  --forest-bg: #050807;
  --forest-surface: #0a100d;
  --forest-surface-2: #0e1712;
  --forest-card: rgba(15, 27, 21, 0.78);
  --forest-line: rgba(255, 255, 255, 0.09);
  --forest-line-strong: rgba(134, 239, 172, 0.22);
  --forest-text: #f7faf8;
  --forest-muted: #a6b5aa;
  --forest-green: #4ade80;
  --forest-green-2: #22c55e;
  --forest-cyan: #38bdf8;
  --forest-orange: #f97316;
  --forest-amber: #fbbf24;
  --forest-danger: #fb7185;
  --forest-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --forest-radius: 24px;
  --forest-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.12), transparent 31rem),
    radial-gradient(circle at 90% 24%, rgba(56, 189, 248, 0.08), transparent 34rem),
    var(--forest-bg);
  color: var(--forest-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

.forest-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 700;
}
.forest-skip:focus { transform: translateY(0); }

.forest-shell { overflow: hidden; }
.forest-container {
  width: min(calc(100% - 40px), var(--forest-max));
  margin-inline: auto;
}

.forest-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(5, 8, 7, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease;
}
.forest-nav.is-scrolled {
  background: rgba(5, 8, 7, 0.93);
  border-bottom-color: var(--forest-line);
}
.forest-nav__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.forest-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.forest-brand img { width: 198px; height: auto; display: block; }
.forest-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.forest-nav__links a {
  text-decoration: none;
  color: #c7d1ca;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.forest-nav__links a:hover { color: #fff; }
.forest-nav__actions { display: flex; align-items: center; gap: 10px; }
.forest-menu { display: none; }

/* CTA flutuante — só aparece no mobile (regra em @media 760px). */
.forest-fab {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}

.forest-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.forest-btn:hover { transform: translateY(-2px); }
.forest-btn--primary {
  background: linear-gradient(135deg, var(--forest-orange), #ea580c);
  box-shadow: 0 14px 36px rgba(249, 115, 22, .2);
}
.forest-btn--primary:hover { box-shadow: 0 18px 44px rgba(249, 115, 22, .3); }
.forest-btn--secondary {
  border-color: var(--forest-line);
  background: rgba(255,255,255,.045);
}
.forest-btn--secondary:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.075); }
.forest-btn--green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 14px 36px rgba(34, 197, 94, .2);
}
.forest-btn svg { width: 18px; height: 18px; }

.forest-hero {
  position: relative;
  min-height: 830px;
  display: grid;
  align-items: center;
  padding: 132px 0 76px;
}
.forest-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--forest-bg));
  pointer-events: none;
}
.forest-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  gap: 54px;
  align-items: center;
}
.forest-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(74, 222, 128, .24);
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, .08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.forest-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-green);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, .12);
}
.forest-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.forest-gradient-text {
  background: linear-gradient(98deg, #86efac 2%, #38bdf8 58%, #fbbf24 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.forest-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #bdc9c0;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}
.forest-hero__lead strong { color: #fff; font-weight: 800; }
.forest-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.forest-hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 23px;
  color: #94a399;
  font-size: 12px;
  font-weight: 650;
}
.forest-hero__micro span { display: inline-flex; align-items: center; gap: 7px; }
.forest-hero__micro svg { width: 15px; height: 15px; color: var(--forest-green); }

.forest-visual {
  position: relative;
  min-height: 620px;
}
.forest-visual__glow {
  position: absolute;
  inset: 14% 8% 8%;
  filter: blur(64px);
  background: radial-gradient(circle, rgba(56, 189, 248, .16), rgba(34,197,94,.1) 45%, transparent 72%);
}
.forest-visual__card {
  position: absolute;
  inset: 58px 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: #06100f;
  box-shadow: var(--forest-shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.forest-visual__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--forest-line);
  background: rgba(10, 14, 13, .96);
}
.forest-visual__bar i { width: 8px; height: 8px; border-radius: 50%; background: #3f4d45; }
.forest-visual__bar i:first-child { background: #fb7185; }
.forest-visual__bar i:nth-child(2) { background: #fbbf24; }
.forest-visual__bar i:nth-child(3) { background: #4ade80; }
.forest-visual__image { position: relative; aspect-ratio: 1600 / 688; }
.forest-visual__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.forest-visual__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,8,.03), rgba(1,8,8,.42));
}
.forest-map-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: #eafff1;
  background: rgba(2, 10, 9, .76);
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
}
.forest-map-tag svg { width: 15px; height: 15px; color: #7dd3fc; }
.forest-map-tag--one { left: 6%; bottom: 8%; }
.forest-map-tag--two { top: 7%; right: 5%; }
.forest-visual__float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(11, 18, 15, .9);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  backdrop-filter: blur(15px);
}
.forest-visual__float svg { width: 22px; height: 22px; flex: 0 0 auto; }
.forest-visual__float strong { display: block; margin-bottom: 3px; font-size: 12px; }
.forest-visual__float span { color: #9faf9f; font-size: 10px; }
.forest-visual__float--alert { right: -24px; top: 12px; }
.forest-visual__float--alert svg { color: var(--forest-orange); }
.forest-visual__float--camera { left: -26px; bottom: 8px; }
.forest-visual__float--camera svg { color: var(--forest-cyan); }
.forest-visual__float--whatsapp { right: 28px; bottom: -20px; }
.forest-visual__float--whatsapp svg { color: var(--forest-green); }

.forest-trust {
  position: relative;
  z-index: 4;
  padding: 20px 0 58px;
}
.forest-trust__label { margin-bottom: 16px; color: #66776b; font-size: 11px; font-weight: 850; letter-spacing: .15em; text-align: center; text-transform: uppercase; }
.forest-trust__items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.forest-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px;
  border: 1px solid var(--forest-line);
  border-radius: 14px;
  color: #b2c0b6;
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.forest-section { position: relative; padding: 108px 0; }
.forest-section--soft { background: linear-gradient(180deg, rgba(14, 23, 18, .62), rgba(5, 8, 7, .16)); border-block: 1px solid rgba(255,255,255,.045); }
.forest-section__head { max-width: 760px; margin-bottom: 48px; }
.forest-section__head--center { margin-inline: auto; text-align: center; }
.forest-kicker {
  margin: 0 0 12px;
  color: #86efac;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.forest-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.forest-subtitle {
  margin: 18px 0 0;
  color: var(--forest-muted);
  font-size: 17px;
  line-height: 1.7;
}

.forest-problem-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: start; }
.forest-problem-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--forest-line);
  border-radius: var(--forest-radius);
  background:
    linear-gradient(180deg, rgba(6,12,9,.02), rgba(5,10,7,.92)),
    radial-gradient(circle at 70% 12%, rgba(249, 115, 22, .16), transparent 36%),
    linear-gradient(135deg, #0d1d15, #07100b);
  box-shadow: var(--forest-shadow);
}
.forest-problem-card__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  margin-bottom: 22px; border-radius: 15px; color: #fed7aa; background: rgba(249,115,22,.13); border: 1px solid rgba(249,115,22,.24);
}
.forest-problem-card__icon svg { width: 26px; height: 26px; }
.forest-problem-card h3 { margin: 0; font-size: 30px; line-height: 1.15; letter-spacing: -.03em; }
.forest-problem-card p { margin: 16px 0 0; max-width: 590px; color: #aebdb2; line-height: 1.7; }
.forest-risk-list { display: grid; gap: 12px; }
.forest-risk {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--forest-line);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.forest-risk__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #7dd3fc; background: rgba(56,189,248,.09); }
.forest-risk__icon svg { width: 21px; height: 21px; }
.forest-risk strong { display: block; margin-bottom: 4px; font-size: 14px; }
.forest-risk span { color: #8fa096; font-size: 12px; line-height: 1.45; }

.forest-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: forest-step; }
.forest-step {
  position: relative;
  min-height: 280px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--forest-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17,29,22,.92), rgba(7,12,9,.9));
}
.forest-step::after {
  counter-increment: forest-step;
  content: "0" counter(forest-step);
  position: absolute;
  right: 16px;
  bottom: -18px;
  color: rgba(255,255,255,.035);
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -.08em;
}
.forest-step__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #bbf7d0; background: rgba(34,197,94,.1); border: 1px solid rgba(74,222,128,.18); }
.forest-step__icon svg { width: 23px; height: 23px; }
.forest-step h3 { margin: 22px 0 10px; font-size: 19px; }
.forest-step p { margin: 0; color: #93a399; font-size: 13px; line-height: 1.65; }

.forest-one-camera {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.forest-camera-copy .forest-title { max-width: 560px; }
.forest-camera-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 15px;
  color: #d7cda9;
  background: rgba(251,191,36,.06);
  font-size: 12px;
  line-height: 1.55;
}
.forest-camera-note svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--forest-amber); }
.forest-camera-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--forest-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 48% 44%, rgba(34,197,94,.18), transparent 35%),
    linear-gradient(145deg, #10251a, #07100b);
  box-shadow: var(--forest-shadow);
}
.forest-camera-map::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(74,222,128,.52);
  border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
  transform: rotate(-8deg);
  background: rgba(34,197,94,.045);
}
.forest-camera-map__grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.forest-camera-point { position: absolute; z-index: 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: #0284c7; border: 7px solid rgba(56,189,248,.18); box-shadow: 0 0 0 12px rgba(56,189,248,.08), 0 12px 28px rgba(0,0,0,.4); }
.forest-camera-point svg { width: 20px; height: 20px; }
.forest-camera-point--1 { left: 14%; top: 34%; }
.forest-camera-point--2 { right: 12%; top: 18%; }
.forest-camera-point--3 { right: 28%; bottom: 15%; }
.forest-camera-point--active { background: var(--forest-orange); border-color: rgba(249,115,22,.18); box-shadow: 0 0 0 12px rgba(249,115,22,.08), 0 12px 28px rgba(0,0,0,.4); }
.forest-camera-label { position: absolute; z-index: 3; max-width: 200px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; color: #cdd8d0; background: rgba(3,10,7,.84); box-shadow: 0 10px 26px rgba(0,0,0,.28); font-size: 10px; line-height: 1.5; }
.forest-camera-label strong { display: block; color: #fff; font-size: 11px; }
.forest-camera-label--1 { left: 8%; top: 48%; }
.forest-camera-label--2 { right: 6%; top: 30%; }
.forest-camera-label--3 { right: 18%; bottom: 28%; }

.forest-use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.forest-use {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--forest-line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.forest-use:hover { transform: translateY(-4px); border-color: var(--forest-line-strong); background: rgba(34,197,94,.04); }
.forest-use__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.forest-use__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #86efac; background: rgba(34,197,94,.09); }
.forest-use__icon svg { width: 23px; height: 23px; }
.forest-use__tag { padding: 6px 9px; border-radius: 999px; color: #9faf9f; background: rgba(255,255,255,.045); font-size: 10px; font-weight: 750; }
.forest-use h3 { margin: 23px 0 10px; font-size: 21px; }
.forest-use p { margin: 0; color: #91a197; font-size: 13px; line-height: 1.7; }

.forest-platform {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}
.forest-platform__screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #050908;
  box-shadow: var(--forest-shadow);
}
.forest-platform__screen img { width: 100%; display: block; }
.forest-platform__screen::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px rgba(1,8,6,.5); pointer-events: none; }
.forest-platform__caption { position: absolute; z-index: 2; left: 18px; bottom: 18px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; color: #dbe9df; background: rgba(3,9,7,.84); font-size: 10px; font-weight: 700; backdrop-filter: blur(12px); }
.forest-feature-list { display: grid; gap: 12px; margin-top: 26px; }
.forest-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--forest-line);
  border-radius: 15px;
  background: rgba(255,255,255,.02);
}
.forest-feature__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #7dd3fc; background: rgba(56,189,248,.08); }
.forest-feature__icon svg { width: 20px; height: 20px; }
.forest-feature strong { display: block; margin: 1px 0 4px; font-size: 13px; }
.forest-feature span { color: #8fa096; font-size: 11px; line-height: 1.5; }

.forest-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.forest-audience {
  min-height: 185px;
  padding: 22px;
  border: 1px solid var(--forest-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(14,26,19,.72), rgba(7,11,9,.7));
}
.forest-audience svg { width: 25px; height: 25px; color: #86efac; }
.forest-audience h3 { margin: 19px 0 8px; font-size: 16px; }
.forest-audience p { margin: 0; color: #8fa096; font-size: 11px; line-height: 1.6; }

.forest-faq { max-width: 860px; margin-inline: auto; }
.forest-faq details { border-bottom: 1px solid var(--forest-line); }
.forest-faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}
.forest-faq summary::-webkit-details-marker { display: none; }
.forest-faq summary::after { content: "+"; color: #86efac; font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.forest-faq details[open] summary::after { transform: rotate(45deg); }
.forest-faq p { max-width: 760px; margin: -4px 0 22px; color: #95a49a; font-size: 13px; line-height: 1.75; }

.forest-contact { padding: 116px 0 92px; }
.forest-contact__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 10%, rgba(34,197,94,.16), transparent 34%),
    radial-gradient(circle at 100% 90%, rgba(56,189,248,.12), transparent 34%),
    #0a110d;
  box-shadow: var(--forest-shadow);
}
.forest-contact__copy { padding: 12px 0; }
.forest-contact__copy h2 { margin: 0; max-width: 500px; font-size: clamp(35px, 4vw, 52px); line-height: 1.04; letter-spacing: -.045em; }
.forest-contact__copy p { margin: 20px 0 0; max-width: 500px; color: #a4b2a7; line-height: 1.7; }
.forest-contact__list { display: grid; gap: 11px; margin-top: 28px; }
.forest-contact__list span { display: flex; align-items: center; gap: 9px; color: #c7d1ca; font-size: 12px; font-weight: 650; }
.forest-contact__list svg { width: 17px; height: 17px; color: var(--forest-green); }
.forest-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 25px;
  border: 1px solid var(--forest-line);
  border-radius: 20px;
  background: rgba(4,9,6,.66);
}
.forest-field { display: grid; gap: 7px; }
.forest-field--wide { grid-column: 1 / -1; }
.forest-field label { color: #b7c3ba; font-size: 11px; font-weight: 750; }
.forest-field input,
.forest-field select,
.forest-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.035);
  padding: 12px 13px;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.forest-field input, .forest-field select { min-height: 46px; }
.forest-field textarea { min-height: 92px; resize: vertical; }
.forest-field select { color-scheme: dark; }
.forest-field input:focus, .forest-field select:focus, .forest-field textarea:focus { border-color: rgba(74,222,128,.46); box-shadow: 0 0 0 4px rgba(34,197,94,.08); }
.forest-field input::placeholder, .forest-field textarea::placeholder { color: #657269; }
.forest-form__actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 2px; }
.forest-form__legal { margin: 0; max-width: 290px; color: #66756b; font-size: 9px; line-height: 1.5; }
.forest-form__message { grid-column: 1 / -1; min-height: 18px; margin: 0; font-size: 11px; }
.forest-form__message.is-error { color: #fda4af; }
.forest-form__message.is-success { color: #86efac; }

.forest-footer { padding: 28px 0; border-top: 1px solid var(--forest-line); }
.forest-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.forest-footer img { width: 164px; }
.forest-footer p { margin: 0; color: #647168; font-size: 10px; }
.forest-footer__links { display: flex; gap: 15px; }
.forest-footer__links a { color: #7f8d83; font-size: 10px; text-decoration: none; }
.forest-footer__links a:hover { color: #fff; }

.forest-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.forest-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .forest-nav__links { display: none; }
  .forest-hero { min-height: auto; }
  .forest-hero__grid { grid-template-columns: 1fr; }
  .forest-hero__copy { max-width: 780px; }
  .forest-visual { min-height: 590px; max-width: 820px; width: 100%; margin-inline: auto; }
  .forest-problem-grid, .forest-platform, .forest-one-camera, .forest-contact__panel { grid-template-columns: 1fr; }
  .forest-problem-card { min-height: 360px; }
  .forest-steps { grid-template-columns: repeat(2, 1fr); }
  .forest-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .forest-contact__copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .forest-container { width: min(calc(100% - 28px), var(--forest-max)); }
  .forest-nav__inner { min-height: 66px; }
  .forest-brand img { width: 150px; }
  /* Mobile: logo num canto + CTA primário no outro (sem hambúrguer/menu/fab). */
  .forest-nav__links,
  .forest-menu,
  .forest-mobile-menu,
  .forest-nav__actions .forest-btn--secondary { display: none !important; }
  .forest-nav__actions { display: flex; }
  .forest-nav__actions .forest-btn--primary { display: inline-flex; padding: 9px 15px; font-size: 13px; }
  .forest-hero { padding: 112px 0 48px; }
  .forest-hero h1 { font-size: clamp(42px, 14vw, 60px); }
  .forest-hero__lead { font-size: 16px; }
  .forest-hero__actions .forest-btn { width: 100%; }
  .forest-visual { min-height: 390px; }
  .forest-visual__card { inset: 28px 0 auto; transform: none; border-radius: 18px; }
  .forest-visual__float { display: none; }
  .forest-map-tag { display: none; }
  .forest-trust { padding-top: 4px; }
  .forest-trust__items { grid-template-columns: repeat(2, 1fr); }
  .forest-trust__item:last-child { grid-column: 1 / -1; }
  .forest-section { padding: 78px 0; }
  .forest-section__head { margin-bottom: 34px; }
  .forest-title { font-size: 36px; }
  .forest-subtitle { font-size: 15px; }
  .forest-problem-grid { gap: 18px; }
  .forest-problem-card { min-height: 320px; padding: 24px; }
  .forest-problem-card h3 { font-size: 25px; }
  .forest-steps, .forest-use-grid, .forest-audience-grid { grid-template-columns: 1fr; }
  .forest-step { min-height: 230px; }
  .forest-camera-map { min-height: 390px; }
  .forest-platform { gap: 28px; }
  .forest-contact { padding: 78px 0 64px; }
  .forest-contact__panel { padding: 25px 18px; border-radius: 20px; }
  .forest-form { grid-template-columns: 1fr; padding: 18px; }
  .forest-field--wide, .forest-form__actions, .forest-form__message { grid-column: auto; }
  .forest-form__actions { align-items: stretch; flex-direction: column-reverse; }
  .forest-form__actions .forest-btn { width: 100%; }
  .forest-form__legal { max-width: none; text-align: center; }
  .forest-footer__inner { align-items: flex-start; flex-direction: column; }
}

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