:root {
  --green-950: #06251a;
  --green-900: #0a3826;
  --green-800: #0f4a30;
  --green-700: #16643c;
  --green-600: #1f8a4d;
  --green-500: #2fa862;
  --green-100: #dff0e4;
  --green-50: #eff8f1;
  --gold-600: #d99a08;
  --gold-500: #f2b21c;
  --gold-400: #ffc94a;
  --cream: #fbfaf6;
  --sand: #f3f0e7;
  --ink: #10201a;
  --ink-soft: #55635b;
  --border: #e3e7de;
  --white: #fff;
  --shadow-sm: 0 6px 18px -12px rgba(6, 37, 26, .5);
  --shadow: 0 22px 45px -25px rgba(6, 37, 26, .45);
  --shadow-lg: 0 40px 70px -35px rgba(6, 37, 26, .55);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--green-900);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green-800); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn .icon { font-size: 1.15em; }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 14px 28px -14px rgba(31, 138, 77, .8); }
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: var(--green-950); box-shadow: 0 14px 28px -14px rgba(242, 178, 28, .85); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.65); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .86rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--green-950); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar__contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__contacts a, .topbar__hours, .topbar__social a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__contacts a:hover, .topbar__social a:hover { color: var(--gold-400); }
.topbar__social .icon { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 10px 30px -22px rgba(6, 37, 26, .6); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__text strong { font-family: 'Poppins', sans-serif; font-size: 1.35rem; color: var(--green-800); font-weight: 800; }
.brand__text small { font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.brand__text--footer strong { color: #fff; }
.brand__text--footer small { color: rgba(255,255,255,.6); }

.nav { display: flex; gap: 26px; }
.nav__link { font-weight: 600; font-size: .93rem; position: relative; padding: 6px 0; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2.5px;
  background: var(--gold-500); border-radius: 2px; transition: width .25s ease;
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--green-700); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 34px; padding: 4px; }
.hamburger span { height: 2.5px; background: var(--green-900); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(94vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; overflow: hidden; padding: 70px 0 90px;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease, transform 8s linear;
  transform: scale(1.06);
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,37,26,.88) 0%, rgba(6,37,26,.66) 45%, rgba(6,37,26,.28) 100%),
    linear-gradient(180deg, rgba(6,37,26,.45) 0%, transparent 32%, rgba(6,37,26,.7) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; max-width: 760px; }
.hero h1 { color: #fff; }
.hero h1, .hero .hero__lead, .hero .eyebrow { text-shadow: 0 2px 22px rgba(0,0,0,.5); }
.eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  font-size: .78rem; color: var(--gold-400); margin-bottom: 16px;
}
.text-accent { color: var(--gold-400); }
.hero__lead { font-size: clamp(1rem, 1.3vw, 1.16rem); color: rgba(255,255,255,.92); max-width: 620px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 30px; }
.hero__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.9); }
.hero__trust .icon { color: var(--gold-400); }

.hero__dots { position: absolute; right: 32px; bottom: 46px; z-index: 3; display: flex; gap: 9px; }
.hero__dots button {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4);
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.hero__dots button.is-active { background: var(--gold-500); width: 28px; border-radius: 6px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: #fff; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px);} 50% { opacity: 1;} 100% { opacity: 0; transform: translateY(10px);} }

/* ---------- Strip diferenciais ---------- */
.strip { background: var(--green-900); padding: 0; }
.strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.09); border-radius: var(--radius); overflow: hidden;
  transform: translateY(-46px); box-shadow: var(--shadow-lg);
}
.strip__item { background: var(--white); padding: 30px 26px; }
.strip__icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
}
.strip__icon svg { width: 26px; height: 26px; fill: var(--green-600); }
.strip__item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.strip__item p { font-size: .89rem; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--muted { background: var(--green-50); }
.section__head { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section__head--light h2, .section__head--light .section__lead { color: #fff; }
.section__head--light .section__lead { color: rgba(255,255,255,.85); }
.section__lead { font-size: 1.04rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about__media { position: relative; padding-bottom: 60px; padding-right: 50px; }
.about__img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__img-sub {
  position: absolute; right: 0; bottom: 0; width: 55%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm); border: 6px solid var(--cream); box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; left: -14px; top: 22px; background: var(--gold-500); color: var(--green-950);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow); max-width: 190px;
}
.about__badge strong { display: block; font-family: 'Poppins', sans-serif; font-size: .95rem; }
.about__badge span { font-size: .78rem; line-height: 1.35; display: block; }

.about__stats { display: flex; gap: 34px; flex-wrap: wrap; margin: 28px 0 30px; }
.stat__num, .stat__suffix { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.3rem; color: var(--green-600); }
.stat__label { display: block; font-size: .84rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Licenciamento ---------- */
.licenses { padding: 0 0 24px; }
.licenses__inner {
  background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--gold-500);
  border-radius: var(--radius); padding: 34px 38px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center;
}
.licenses__intro { display: flex; gap: 18px; align-items: flex-start; }
.licenses__seal {
  width: 56px; height: 56px; border-radius: 14px; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.licenses__seal svg { width: 30px; height: 30px; fill: var(--green-600); }
.licenses__intro h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 8px; }
.licenses__intro p { font-size: .92rem; margin: 0; }
.licenses__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.license-card {
  background: var(--green-50); border-radius: var(--radius-sm); padding: 18px 16px;
  border-left: 3px solid var(--green-600);
}
.license-card strong {
  display: block; font-family: 'Poppins', sans-serif; color: var(--green-800);
  font-size: .98rem; margin-bottom: 5px;
}
.license-card span { font-size: .82rem; color: var(--ink-soft); line-height: 1.45; display: block; }

/* ---------- Services ---------- */
.grid--services { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.scard {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: transform .28s ease, box-shadow .28s ease; display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.scard__media { aspect-ratio: 4/3; overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.scard:hover .scard__media img { transform: scale(1.08); }
.scard__body { padding: 20px 20px 24px; }
.scard__body h3 { font-size: 1.02rem; margin-bottom: 7px; }
.scard__body p { font-size: .87rem; margin: 0; }

/* ---------- Plantas ---------- */
.plants {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.plants::before {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(242,178,28,.18), transparent 65%);
}
.plants .container { position: relative; z-index: 1; }
.plants__layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.plants__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.plants__list li { display: flex; gap: 14px; align-items: flex-start; }
.plants__list .icon {
  width: 40px; height: 40px; padding: 9px; border-radius: 11px;
  background: rgba(255,255,255,.1); fill: var(--gold-400);
}
.plants__list strong { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.plants__list span { font-size: .88rem; color: rgba(255,255,255,.75); }

.plants__gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 12px; }
.plants__photo { border-radius: var(--radius-sm); overflow: hidden; padding: 0; box-shadow: var(--shadow); }
.plants__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plants__photo:hover img { transform: scale(1.08); }
.plants__photo--big { grid-column: span 2; grid-row: span 2; }

.plants__cta {
  margin-top: 54px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 28px 34px; display: flex; align-items: center;
  justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.plants__cta h3 { color: #fff; margin-bottom: 4px; }
.plants__cta p { color: rgba(255,255,255,.8); margin: 0; }

/* ---------- Antes e depois ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba { margin: 0; }
.ba__wrap {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
}
.ba__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before .ba__img { width: auto; height: 100%; max-width: none; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,.35);
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.ba__handle span::before, .ba__handle span::after {
  content: ''; position: absolute; top: 50%; width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.ba__handle span::before { left: 9px; transform: translateY(-50%); border-right: 8px solid var(--green-700); }
.ba__handle span::after { right: 9px; transform: translateY(-50%); border-left: 8px solid var(--green-700); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0;
  /* pan-y mantém a rolagem vertical da página funcionando sobre o comparador no celular */
  touch-action: pan-y;
}
.ba__tag {
  position: absolute; top: 14px; padding: 5px 13px; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; pointer-events: none;
}
.ba__tag--before { left: 14px; background: rgba(6,37,26,.82); color: #fff; }
.ba__tag--after { right: 14px; background: var(--gold-500); color: var(--green-950); }
.ba figcaption { margin-top: 14px; text-align: center; font-weight: 600; color: var(--green-900); font-size: .95rem; }

/* ---------- Filtros + galeria ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filters__btn {
  padding: 9px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--border);
  font-weight: 600; font-size: .87rem; color: var(--ink-soft); transition: all .2s ease;
}
.filters__btn:hover { border-color: var(--green-500); color: var(--green-700); }
.filters__btn.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery__item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3;
  padding: 0; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item.is-hidden { display: none; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery__item:hover img { transform: scale(1.09); }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(6,37,26,.88), transparent);
  color: #fff; font-weight: 600; font-size: .84rem; text-align: left;
}

/* ---------- Segmentos ---------- */
.segments { padding: 100px 0; background: var(--green-950); color: #fff; }
.segments__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.segments__item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 26px; transition: background .25s ease, transform .25s ease;
}
.segments__item:hover { background: rgba(255,255,255,.11); transform: translateY(-5px); }
.segments__item svg { width: 34px; height: 34px; fill: var(--gold-400); margin-bottom: 14px; }
.segments__item h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.segments__item p { color: rgba(255,255,255,.74); font-size: .89rem; margin: 0; }

/* ---------- Processo ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process__step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 22px; position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.process__num {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--gold-500); color: var(--green-950);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 15px;
}
.process__step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.process__step p { font-size: .87rem; margin: 0; }

/* ---------- Depoimentos ---------- */
.testimonials { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonials__viewport { overflow: hidden; }
.testimonials__track { display: flex; transition: transform .5s ease; }
.testimonial { min-width: 100%; padding: 6px 10px 0; }
.testimonial__stars { color: var(--gold-500); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { font-size: 1.12rem; font-style: italic; color: var(--ink); }
.testimonial__author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.testimonial__author strong { display: block; color: var(--green-900); font-size: .95rem; }
.testimonial__author small { color: var(--ink-soft); }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif;
}
.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.testimonials__controls button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff;
  font-size: 1.4rem; color: var(--green-800); transition: background .2s ease;
}
.testimonials__controls button:hover { background: var(--green-100); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--border); cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.testimonials__dots span.active { background: var(--green-600); transform: scale(1.35); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-800), var(--green-600)); color: #fff; padding: 66px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item[open] { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 16px 30px 16px 0; font-weight: 600;
  color: var(--green-900); position: relative; font-size: .97rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green-600); font-weight: 400; line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: 0 0 16px; font-size: .92rem; }

/* ---------- Contato ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.contact__card {
  display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 15px 16px; transition: transform .2s ease, box-shadow .2s ease;
}
.contact__card:not(.contact__card--static):hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact__card .icon { width: 21px; height: 21px; color: var(--green-600); }
.contact__card strong { display: block; font-size: .88rem; color: var(--green-900); }
.contact__card span { font-size: .82rem; color: var(--ink-soft); word-break: break-word; }

.contact__form { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); display: grid; gap: 15px; }
.contact__form h3 { margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--green-900); }
.contact__form .lbl em { color: var(--gold-600); font-style: normal; }
.contact__form input, .contact__form select, .contact__form textarea {
  font-family: inherit; font-size: .94rem; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--cream); color: var(--ink); resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(47,168,98,.16);
}
.contact__form input.has-error, .contact__form textarea.has-error { border-color: #d64545; background: #fff6f6; }
.form-error { color: #d64545; font-size: .85rem; font-weight: 600; margin: 0; }
.form-note { font-size: .78rem; color: var(--ink-soft); text-align: center; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--green-950); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand p { color: rgba(255,255,255,.6); margin: 14px 0 18px; font-size: .88rem; }
.footer__licencas { color: rgba(255,255,255,.75) !important; font-size: .82rem !important; }
.footer__licencas strong { color: var(--gold-400); }
.footer__social {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s ease, color .2s ease;
}
.footer__social:hover { background: var(--gold-500); color: var(--green-950); }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: .88rem; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.footer__col a:hover { color: var(--gold-400); }
.footer__bottom { text-align: center; padding: 22px 0; font-size: .8rem; color: rgba(255,255,255,.45); }

/* ---------- Flutuantes ---------- */
.float-whats {
  position: fixed; right: 24px; bottom: 24px; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.45); z-index: 90; transition: transform .2s ease;
}
.float-whats svg { width: 32px; height: 32px; fill: #fff; }
.float-whats::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8;} 100% { transform: scale(1.5); opacity: 0;} }
.float-whats:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed; right: 30px; bottom: 96px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-800); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 22px -10px rgba(0,0,0,.45); z-index: 89; opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 19px; height: 19px; fill: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(4,16,11,.94); z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; }
.lightbox__figure img { max-width: min(1100px, 86vw); max-height: 78vh; border-radius: 10px; box-shadow: 0 30px 70px rgba(0,0,0,.6); }
.lightbox__figure figcaption { color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 500; }
.lightbox__close { position: absolute; top: 18px; right: 26px; color: #fff; font-size: 2.6rem; line-height: 1; }
.lightbox__nav {
  color: #fff; font-size: 2.6rem; line-height: 1; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  transition: background .2s ease; flex-shrink: 0;
}
.lightbox__nav:hover { background: rgba(255,255,255,.22); }

/* ---------- Reveal ----------
   O estado oculto só é aplicado quando o JS confirma que consegue revelar de volta
   (classe .js-anim, colocada no <html>). Sem JS, o conteúdo aparece normalmente. */
.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js-anim .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js-anim .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  .grid--services { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .segments__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav, .header__actions { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 22px 24px; gap: 18px; box-shadow: 0 24px 34px -22px rgba(0,0,0,.35);
    border-bottom: 1px solid var(--border);
  }
  .licenses__inner { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
  .about { grid-template-columns: 1fr; gap: 46px; }
  .about__media { max-width: 520px; margin: 0 auto; }
  .plants__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq { grid-template-columns: 1fr; gap: 34px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .ba-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .topbar__contacts span { display: none; }
  .topbar__contacts { gap: 18px; }
}

@media (max-width: 700px) {
  .section, .plants, .segments { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: 1fr; transform: translateY(-30px); }
  .segments__grid { grid-template-columns: 1fr; }
  .plants__gallery { grid-auto-rows: 105px; }
  .licenses__cards { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .hero__dots { right: 50%; transform: translateX(50%); bottom: 72px; }
  .hero__scroll { display: none; }
  .about__stats { gap: 22px; }
  .stat__num, .stat__suffix { font-size: 1.9rem; }
  .lightbox__nav { position: absolute; bottom: 24px; }
  .lightbox__nav--prev { left: 26%; }
  .lightbox__nav--next { right: 26%; }
}

@media (max-width: 520px) {
  .grid--services { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .topbar__inner { flex-direction: column; padding-top: 8px; padding-bottom: 8px; gap: 6px; }
  .contact__form { padding: 24px; }
  .plants__cta { padding: 24px; }
}
