/* ============================================================
   ISOGREEN — design tokens (paleta oficial da marca)
   ============================================================ */
:root{
  --green:        #009647;   /* verde exato da logo */
  --green-dark:   #00753A;
  --green-deep:   #054D2C;
  --green-light:  #E7F5EC;
  --green-mist:   #F5FAF7;

  --paper:        #FFFFFF;
  --paper-2:      #F6F8F6;
  --line:         rgba(13,26,18,.10);

  --ink:          #121813;
  --ink-soft:     #4B564E;
  --ink-faint:    #7C877E;

  --soil:         #8B5E34;
  --soil-dark:    #6B4226;
  --pot:          #C77B4C;
  --pot-dark:     #A85F37;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Manrope', 'Inter', sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22,.9,.3,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  --radius: 12px;
}

/* ============================================================
   AMBIENT CRUMB FIELD — tiny adubo crumbs that drift as you scroll
   ============================================================ */
.crumb-field{
  position: fixed; inset:0; z-index: 3; pointer-events:none; overflow:hidden;
}
.crumb-wrap{ position:absolute; will-change: transform; transition: transform .1s linear; }
.crumb{
  position:relative; display:block; width:5px; height:5px; border-radius:50%;
  background: var(--soil); opacity:.28;
  animation: crumbBob 6s ease-in-out infinite;
  will-change: transform;
}
.crumb-wrap:nth-child(3n) .crumb{ width:4px; height:4px; opacity:.2; background: var(--soil-dark); animation-duration: 7.5s; }
.crumb-wrap:nth-child(4n) .crumb{ width:6px; height:6px; opacity:.22; animation-duration: 5.2s; }
.crumb-wrap:nth-child(2n) .crumb{ animation-direction: reverse; }
@keyframes crumbBob{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(6px,-10px); }
}
@media (max-width: 620px){ .crumb-field{ opacity:.7; } }

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 700; margin: 0 0 .4em; letter-spacing: -0.01em; color: var(--ink); }
p{ margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section{ padding: 110px 0; position: relative; }
@media (max-width: 720px){
  .section{ padding: 72px 0; }
  .section-inner{ padding: 0 22px; }
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--green-dark);
  margin: 0 0 18px;
  display:flex; align-items:center; gap:10px;
  font-weight: 600;
}
.eyebrow::before{
  content:""; width:22px; height:1.5px; background: var(--green-dark); display:inline-block;
}

.body-lg{ font-size: 18.5px; line-height: 1.65; max-width: 620px; color: var(--ink-soft); }

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* extra scroll-reveal variants — more motion, used on lifestyle photo blocks */
.reveal.reveal-scale{ transform: scale(.92) translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--bounce); }
.reveal.reveal-scale.in{ transform: scale(1) translateY(0); }
.reveal.reveal-left{ transform: translateX(-46px); }
.reveal.reveal-left.in{ transform: translateX(0); }
.reveal.reveal-right{ transform: translateX(46px); }
.reveal.reveal-right.in{ transform: translateX(0); }

/* ---------- scroll progress ---------- */
.scroll-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: var(--green);
  z-index: 999;
  transition: width .1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 20px 0;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav.scrolled{
  padding: 13px 0;
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(13,26,18,.05);
}
.nav-inner{
  max-width: var(--container); margin:0 auto; padding: 0 32px;
  display:flex; align-items:center; justify-content: space-between; gap: 24px;
}
.nav-logo img{ height: 44px; width:auto; }
.nav-links{ display:flex; gap: 32px; margin-right: auto; margin-left: 52px; }
.nav-links a{
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after{ transform: scaleX(1); }

.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding: 6px; }
.nav-burger span{ width: 22px; height: 2px; background: var(--ink); display:block; }
.nav-mobile{
  display:none; flex-direction: column; gap: 4px;
  max-width: var(--container); margin: 0 auto; padding: 14px 32px 18px;
  background: var(--paper);
}
.nav-mobile a{ padding: 13px 0; border-top: 1px solid var(--line); font-size: 15px; font-weight: 600; }
.nav-mobile.open{ display:flex; }

@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-inner .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
}

/* ---------- WhatsApp / CTA buttons ---------- */
.wa-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background: var(--green); color:#fff;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  padding: 12px 22px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .22s var(--ease), background .22s, box-shadow .22s;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset;
}
.wa-btn:hover{ background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,150,71,.22); }
.magnetic{ transition: transform .28s var(--ease), background .22s, box-shadow .22s; }
.wa-btn .wa-icon{ width:17px; height:17px; fill:#fff; flex-shrink:0; }
.wa-btn--lg{ padding: 16px 28px; font-size: 16px; border-radius: var(--radius); }
.wa-btn--lg .wa-icon{ width:20px; height:20px; }
.wa-btn--inline{ background:none; border:0; color: var(--green-dark); padding:0; font-weight:600; }
.wa-btn--inline:hover{ text-decoration: underline; background:none; transform:none; box-shadow:none; }
.wa-btn--outline{ background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.wa-btn--outline:hover{ background: rgba(255,255,255,.12); }

.ghost-btn{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--ink); font-weight:600; font-size:15px;
  padding: 12px 6px; border-bottom: 1.5px solid var(--line);
  transition: border-color .25s, gap .25s, color .25s;
}
.ghost-btn:hover{ border-color: var(--green); gap:12px; color: var(--green-dark); }

/* ============================================================
   HERO CLEAN — Apple-style: minimal copy, huge product photo
   ============================================================ */
.hero-clean{
  position: sticky; top:0; z-index:0; overflow: hidden;
  min-height: 100vh; box-sizing: border-box;
  padding: 156px 32px 72px;
  display:flex; flex-direction:column; justify-content:center;
  text-align: center;
  background: var(--paper);
}
.hero-clean-glow{ display:none; }
.hero-clean-copy{ position:relative; z-index:2; max-width: 720px; margin: 0 auto; }
.hero-clean .eyebrow{ justify-content:center; }
.hero-clean-title{
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-top: 10px; color: var(--ink);
}
.hero-clean-title span{ color: var(--green-dark); }
.hero-clean-sub{
  font-size: 18px; color: var(--ink-soft);
  max-width: 480px; margin: 18px auto 0;
}
.hero-clean-ctas{ display:flex; align-items:center; justify-content:center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.pill-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px; border-radius: 100px; font-weight:700; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.pill-btn--dark{ background: var(--ink); color:#fff; }
.pill-btn--dark:hover{ background:#000; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.pill-btn--outline{ background: transparent; color: var(--ink); border: 1px solid var(--line); }
.pill-btn--outline:hover{ border-color: var(--ink); }
.hero-clean-facts{
  margin-top: 26px; display:flex; align-items:center; justify-content:center; gap:10px;
  font-size: 13.5px; font-weight:600; color: var(--ink-faint); flex-wrap:wrap;
}
.hero-clean-facts i{ opacity:.5; font-style:normal; }
.hero-clean-media{
  position:relative; z-index:1; margin: 44px auto 0; max-width: 940px;
  display:flex; justify-content:center; will-change: transform;
}
.hero-clean-media img{
  width:100%; height:auto; max-width: 700px;
  filter: drop-shadow(0 40px 50px rgba(13,38,26,.16));
  will-change: transform;
}
.scroll-cue--dark{ border-color: rgba(18,24,19,.3) !important; }
.scroll-cue--dark span{ background: var(--ink) !important; }

@media (max-width: 620px){
  .hero-clean{ padding: 128px 20px 0; }
  .hero-clean-media{ margin-top: 32px; }
  .hero-clean-media img{ max-width: 300px; }
}

/* ============================================================
   HERO — shared copy classes (used by Iso 50's dark hero-b2b)
   ============================================================ */
.hero-inner{
  position: relative; z-index: 2; width:100%;
  max-width: var(--container); margin:0 auto; padding: 0 32px;
}
.hero-copy{ max-width: 620px; will-change: transform, opacity; }
.hero-title{
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin-top: 6px;
  letter-spacing: -0.02em;
  color: #fff;
}
.ink-underline{
  position:relative; color: #fff;
}
.ink-underline::after{
  content:""; position:absolute; left:0; right:0; bottom:2px; height:.28em;
  background: rgba(0,150,71,.55); z-index:-1;
}
.hero-sub{
  font-size: 17.5px; color: rgba(255,255,255,.86);
  max-width: 480px; margin-top: 20px;
}
.hero-ctas{ display:flex; align-items:center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.hero .ghost-btn{ color:#fff; border-color: rgba(255,255,255,.4); }
.hero .ghost-btn:hover{ border-color:#fff; color:#fff; gap:12px; }

.hero-badges{
  position:relative; z-index:2;
  display:flex; gap: 14px; margin-top: 44px; flex-wrap:wrap;
}
.hero-badge{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 12px; padding: 10px 16px;
  display:flex; align-items:center; gap:9px;
  font-size: 13px; font-weight: 700; color: #fff;
  animation: floaty 4.5s ease-in-out infinite;
}
.hero-badge svg{ width:16px; height:16px; color: #9FE8B8; flex-shrink:0; }
.hero-badge:nth-child(2){ animation-delay: .6s; }
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* ============================================================
   HERO B2B — Iso 50 page, dark two-column hero
   ============================================================ */
.hero-b2b{
  position: relative; overflow: hidden; color:#fff;
  background: linear-gradient(160deg, var(--green-deep), #072f1c 60%, #051f13);
  padding: 168px 0 100px;
}
.hero-b2b .hero-bg-grid{
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 25% 30%, black, transparent 72%);
  mask-image: radial-gradient(circle at 25% 30%, black, transparent 72%);
}
.hero-b2b .hero-inner{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
}
.hero-b2b .eyebrow{ color: #CDEBD8; }
.hero-b2b .eyebrow::before{ background: #CDEBD8; }
.hero-b2b .hero-title{ font-size: clamp(32px,4.2vw,52px); }
.hero-b2b .hero-sub{ max-width: 500px; }
.hero-b2b .ghost-btn{ color:#fff; border-color: rgba(255,255,255,.4); }
.hero-b2b .ghost-btn:hover{ border-color:#fff; color:#fff; gap:12px; }

.hero-product{ position:relative; }
.hero-product-frame{
  position:relative; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16); border-radius: 24px;
  padding: 36px; display:flex; align-items:center; justify-content:center;
}
.hero-product-img{ width:100%; max-width: 320px; filter: drop-shadow(0 30px 40px rgba(0,0,0,.35)); }
.hero-particle{ position:absolute; width:20px; height:20px; color: rgba(255,255,255,.5); animation: floaty 4s ease-in-out infinite; }
.hero-particle svg{ width:100%; height:100%; }
.hero-particle--1{ top:10%; left:6%; }
.hero-particle--2{ top:72%; left:12%; width:10px; height:10px; animation-delay:.6s; }
.hero-particle--3{ top:16%; right:8%; animation-delay:1.1s; }
.hero-particle--4{ bottom:14%; right:14%; width:9px; height:9px; animation-delay:1.6s; }

.hero-badge--a, .hero-badge--b{
  position:absolute; background:#fff; color: var(--green-dark);
  font-size:12.5px; font-weight:700; padding:10px 16px; border-radius:100px;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  animation: floaty 4.6s ease-in-out infinite;
}
.hero-badge--a{ top:4%; right:-2%; }
.hero-badge--b{ bottom:6%; left:-4%; animation-delay: .8s; }

@media (max-width: 960px){
  .hero-b2b .hero-inner{ grid-template-columns: 1fr; }
  .hero-b2b .hero-product{ margin-top: 40px; max-width: 320px; margin-left:auto; margin-right:auto; }
}
@media (max-width: 620px){
  .hero-b2b{ padding: 140px 0 70px; }
  .hero-badge--a, .hero-badge--b{ position:static; display:inline-flex; margin: 10px 10px 0 0; }
}

.scroll-cue{
  position:absolute; left:50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 20px; border: 2px solid rgba(255,255,255,.5);
  z-index:2;
}
.scroll-cue span{
  position:absolute; top: 8px; left:50%; width:4px; height:8px; border-radius:2px;
  background: #fff; transform: translateX(-50%);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue{
  0%{ opacity:1; transform: translate(-50%,0); }
  70%{ opacity:0; transform: translate(-50%,14px); }
  100%{ opacity:0; transform: translate(-50%,14px); }
}

@media (max-width: 620px){
  .hero-badges{ gap:10px; }
  .hero-badge{ font-size: 11.5px; padding: 8px 12px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
/* first marquee (right under the hero) hidden for now, per feedback —
   markup stays so it's a one-line flip to bring back */
#marquee{ display:none; }
.marquee{
  position:relative; z-index:1;
  background: var(--green);
  color: #fff;
  overflow:hidden;
  white-space: nowrap;
  box-shadow: 0 -24px 50px rgba(13,38,26,.18);
}
.marquee-track{
  display:inline-flex; align-items:center; gap: 14px;
  padding: 14px 0;
  animation: marquee 16s linear infinite;
  font-family: var(--font-mono); font-weight:600; font-size: 13px; letter-spacing:.08em;
  will-change: transform;
}
.marquee-track span{ padding: 0 4px; }
.marquee-track i{ font-style:normal; opacity:.55; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-25%); }
}

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema{
  background: var(--paper-2); position:relative; z-index:2; overflow:hidden;
  border-radius: 28px 28px 0 0; box-shadow: 0 -30px 70px rgba(13,38,26,.16);
}
.problema::before{
  content:""; position:absolute; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(closest-side, rgba(0,150,71,.10), transparent 72%);
  top:-160px; right:-140px; filter:blur(10px); pointer-events:none;
  animation: blobDrift 12s ease-in-out infinite;
}
@keyframes blobDrift{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-24px,26px) scale(1.08); }
}
.problema-grid{
  display:flex; flex-direction:column; align-items:center; gap: 48px;
  text-align:center;
  position:relative; z-index:1;
}
.problema-text{ max-width: 640px; }
.problema-text .body-lg{ margin-left:auto; margin-right:auto; }
.problema h2{ font-size: clamp(28px,3.4vw,40px); }

/* simple, flat, Apple-like case box — no gradients, no glow, just a calm
   neutral gray tray with two plain rows inside */
.compare-card{
  position:relative;
  background: #f2f2f0; border: none; border-radius: 24px;
  padding: 10px;
  display:flex; flex-direction:column; gap:6px;
  max-width: 460px; width:100%;
}
.compare-row{
  display:flex; align-items:center; gap: 16px;
  padding: 20px; border-radius: 16px;
  transition: background .3s var(--ease);
}
.compare-row--bad{ background: transparent; }
.compare-row--good{ background: #fff; }
.compare-icon{
  flex-shrink:0; width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; background:#fff;
}
.compare-row--good .compare-icon{ background: #f2f2f0; }
.compare-icon svg{ width:17px; height:17px; }
.compare-icon--bad{ color: var(--ink-faint); border: 1.5px solid rgba(31,38,34,.14); }
.compare-icon--good{ color: var(--green-dark); border: 1.5px solid rgba(31,38,34,.1); }
.compare-text{ text-align:left; }
.compare-text strong{ display:block; font-size: 15px; margin-bottom: 2px; }
.compare-text span{ font-size: 13.5px; color: var(--ink-faint); }

/* ============================================================
   PROCESS — scrollytelling "como funciona"
   ============================================================ */
.process{ background: var(--paper); }
.process-head{ margin-bottom: 20px; }
.process-head h2{ font-size: clamp(28px,3.6vw,42px); max-width: 560px; }

.process-stage{ position: relative; }
.process-sticky{
  display:grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}

.process-visual{
  position: sticky; top: 108px;
  height: calc(100vh - 190px); max-height: 620px; min-height: 420px;
  display:flex; align-items:center; justify-content:center;
}
.process-media{
  position: relative; width: min(100%, 360px);
  padding: 34px 0 54px;
  display:flex; align-items:center; justify-content:center;
}
/* no green gradient wash behind the product — plain background, per feedback */
.process-bg{ display:none; }

/* floating annotation chips, one lights up per stage — small Vision-Pro-style callouts */
.process-tags{ position:absolute; inset:0; z-index:2; pointer-events:none; }
.process-tag{
  position:absolute; white-space:nowrap;
  background:#fff; border:1px solid var(--line); border-radius:100px;
  padding:7px 13px; font-size:11.5px; font-weight:700; color: var(--green-dark);
  box-shadow: 0 14px 26px rgba(13,38,26,.08);
  opacity:0; transform: translateY(10px) scale(.92);
  transition: opacity .5s var(--ease), transform .5s var(--bounce);
}
.tag-0{ top:4%; right:2%; }
.tag-1{ top:2%; left:0; }
.tag-2{ bottom:34%; right:-4%; }
.tag-3a{ top:8%; left:-2%; }
.process-visual.stage-0 .tag-0{ opacity:1; transform: translateY(0) scale(1); transition-delay:.2s; }
.process-visual.stage-1 .tag-1{ opacity:1; transform: translateY(0) scale(1); transition-delay:.15s; }
.process-visual.stage-2 .tag-2{ opacity:1; transform: translateY(0) scale(1); transition-delay:.15s; }
.process-visual.stage-3 .tag-3a{ opacity:1; transform: translateY(0) scale(1); transition-delay:.3s; }
.process-tag.tag-0, .process-tag.tag-2{ animation: floaty 4.2s ease-in-out infinite; }
.process-tag.tag-1, .process-tag.tag-3a{ animation: floaty 5s ease-in-out infinite .5s; }

.process-canvas{
  position: relative; width:100%; max-width: 320px; aspect-ratio: 260 / 320; z-index:1;
}
.scene{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; transform: scale(.94); transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events:none;
}
.scene-machine{ opacity:1; transform: scale(1); pointer-events:auto; }
.process-visual.stage-4 .scene-machine{ opacity:0; transform: scale(.9) translateY(10px); pointer-events:none; }
.process-visual.stage-4 .scene-plant{ opacity:1; transform: scale(1); pointer-events:auto; }

/* ---------- real product photos, steps 01–04 (simple crossfade, no SVG) ---------- */
.process-photo{ position:relative; width:100%; max-width: 320px; aspect-ratio: 260 / 300; }
.process-photo-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  opacity:0; transition: opacity .55s var(--ease);
}
.process-photo-closed{ opacity:1; }
/* the open-lid shot is narrower in-frame than the closed shot (the lid sticks
   straight up in the source photo) — scale it up so the product reads at the
   same size as the closed photo instead of looking smaller */
.process-photo-open{ transform: scale(1.32); transform-origin: 50% 62%; }
.process-visual.stage-0 .process-photo-open{ opacity:1; }
.process-visual.stage-0 .process-photo-closed{ opacity:0; }
.process-visual.stage-3 .process-photo-open{ opacity:1; }
.process-visual.stage-3 .process-photo-closed{ opacity:0; }

/* ---------- blinking panel buttons — stage 2, "escolha o ciclo" ----------
   positioned to land on the ON/OFF and MODE toggles in
   iso_home_real_front.jpg — the photo is square but sits in a taller
   (260/300) container, so object-fit:contain letterboxes it top/bottom;
   these percentages already account for that gap, they're not a plain
   1:1 mapping onto the source photo. */
.panel-blink{
  position:absolute; width: 14px; height: 14px;
  opacity:0; transition: opacity .4s var(--ease); pointer-events:none; z-index:3;
}
.panel-blink--mode{ top: 28%; left: 58.5%; }
.panel-blink--onoff{ top: 28%; left: 35.5%; }
.panel-blink--onoff .panel-blink-core, .panel-blink--onoff .panel-blink-ring{ animation-delay: .3s; }
.process-visual.stage-2 .panel-blink{ opacity:1; }
.panel-blink-core{
  position:absolute; inset:0; border-radius:50%; background: var(--green);
  box-shadow: 0 0 6px 1px rgba(0,150,71,.7);
  animation: panelBlinkCore 1.3s ease-in-out infinite;
}
.panel-blink-ring{
  position:absolute; inset:-6px; border-radius:50%; border: 2px solid var(--green);
  animation: panelBlinkRing 1.3s ease-out infinite;
}
@keyframes panelBlinkCore{
  0%,100%{ opacity:1; transform: scale(1); }
  50%{ opacity:.4; transform: scale(.8); }
}
@keyframes panelBlinkRing{
  0%{ opacity:.8; transform: scale(.6); }
  100%{ opacity:0; transform: scale(1.8); }
}

/* ---------- final step (05): illustration — adubo falling onto a succulent ---------- */
.succulent-illust{ width: 100%; max-width: 260px; height:auto; display:block; overflow: visible; }
.succ-shadow{ fill: rgba(13,38,26,.08); }
.succ-pot{ fill: var(--pot); stroke: var(--pot-dark); stroke-width: 2; }
.succ-pot-rim{ fill: var(--pot-dark); }
.succ-soil{ fill: var(--soil-dark); }

.succ-rosette{
  transform-origin: 130px 200px;
  transform: scale(.4);
  transition: transform 1s var(--bounce) .5s;
}
.process-visual.stage-4 .succ-rosette{ transform: scale(1); animation: succSway 3.4s ease-in-out 1.5s infinite; }
@keyframes succSway{
  0%,100%{ transform: scale(1) rotate(0deg); }
  50%{ transform: scale(1) rotate(1.2deg); }
}
.succ-leaf{ fill: var(--green); stroke: var(--green-dark); stroke-width: 1; }
.succ-leaf.sl2, .succ-leaf.sl4{ opacity:.94; }
.succ-leaf.sl3, .succ-leaf.sl6{ opacity:.9; }
.succ-leaf.sl5{ fill: var(--green-dark); opacity:.96; }

.succ-compost-fall .scf{ fill: var(--soil); opacity:0; transform: translateY(0) scale(.7); transform-box: fill-box; transform-origin: center; }
.process-visual.stage-4 .succ-compost-fall .scf{ animation: succCompostFall 1.6s var(--ease) forwards; }
.process-visual.stage-4 .succ-compost-fall .sc1{ animation-delay: .15s; }
.process-visual.stage-4 .succ-compost-fall .sc2{ animation-delay: .3s; }
.process-visual.stage-4 .succ-compost-fall .sc3{ animation-delay: .45s; }
.process-visual.stage-4 .succ-compost-fall .sc4{ animation-delay: .6s; }
.process-visual.stage-4 .succ-compost-fall .sc5{ animation-delay: .75s; }
@keyframes succCompostFall{
  0%{ opacity:0; transform: translateY(0) scale(.7); }
  20%{ opacity:1; }
  90%{ opacity:1; }
  100%{ opacity:0; transform: translateY(170px) scale(.9); }
}
.plant-label{ color: var(--green-dark); }
.process-visual.stage-4 .plant-label{ opacity:1; transform: translate(-50%,0); transition-delay: 1.4s; }

.process-pile-label{
  position:absolute; left:50%; bottom:6%; transform: translate(-50%,10px) scale(.92); z-index:2;
  font-size: 12.5px; font-weight:700;
  color: var(--green-dark); background: #fff; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 14px 26px rgba(13,38,26,.08);
  opacity: 0;
  transition: opacity .5s var(--ease) .3s, transform .5s var(--bounce) .3s;
}
.process-visual.stage-3 .scene-machine .process-pile-label{ opacity: 1; transform: translate(-50%,0) scale(1); animation: floaty 4.4s ease-in-out .8s infinite; }

/* ---------- scraps falling into the opening (stage 0) ---------- */
.scrap-fx{ position:absolute; inset:0; overflow:hidden; pointer-events:none; opacity:0; transition:opacity .3s var(--ease); }
.process-visual.stage-0 .scrap-fx{ opacity:1; }
.scrap-emoji{
  position:absolute; top:-10%; font-size: 20px; line-height:1;
  opacity:0; transform-origin:center; filter: drop-shadow(0 3px 4px rgba(13,38,26,.18));
}
.se1{ left:30%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 0s; }
.se2{ left:38%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite .26s; }
.se3{ left:46%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite .52s; }
.se4{ left:54%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite .78s; }
.se5{ left:62%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 1.04s; }
.se6{ left:70%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 1.3s; }
.se7{ left:34%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 1.56s; }
.se8{ left:42%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 1.82s; }
.se9{ left:58%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 2.08s; }
.se10{ left:66%; animation: scrapDrop 2.6s cubic-bezier(.5,0,.85,.4) infinite 2.34s; }
@keyframes scrapDrop{
  0%{ opacity:0; transform: translateY(0) rotate(0deg) scale(.6); }
  15%{ opacity:1; }
  68%{ opacity:1; }
  90%{ transform: translateY(128px) rotate(22deg) scale(1); }
  100%{ opacity:0; transform: translateY(136px) rotate(26deg) scale(.85); }
}

/* ---------- adubo specks rising out of the opening (stage 3) — bigger, denser, more aggressive ---------- */
.adubo-fx{ position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .3s var(--ease); }
.process-visual.stage-3 .adubo-fx{ opacity:1; }
.adubo-speck{ position:absolute; top:38%; width:11px; height:11px; border-radius:50%; background: var(--soil); opacity:0; box-shadow: 0 3px 5px rgba(13,38,26,.18); }
.af1{ left:32%; width:8px; height:8px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite; }
.af2{ left:39%; width:13px; height:13px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .12s; }
.af3{ left:46%; width:9px; height:9px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .24s; }
.af4{ left:53%; width:14px; height:14px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .36s; }
.af5{ left:60%; width:8px; height:8px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .48s; }
.af6{ left:67%; width:11px; height:11px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .6s; }
.af7{ left:36%; width:10px; height:10px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .72s; }
.af8{ left:57%; width:9px; height:9px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .84s; }
.af9{ left:44%; width:12px; height:12px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite .96s; }
.af10{ left:63%; width:8px; height:8px; animation: aduboRise 1.5s cubic-bezier(.3,0,.6,1) infinite 1.08s; }
@keyframes aduboRise{
  0%{ opacity:0; transform: translateY(0) scale(.5) rotate(0deg); }
  20%{ opacity:1; }
  65%{ opacity:1; transform: translateY(-46px) scale(1.05) rotate(140deg); }
  100%{ opacity:0; transform: translateY(-68px) scale(.75) rotate(220deg); }
}
.process-copy{ display:flex; flex-direction:column; }
.process-step{
  min-height: 78vh; display:flex; flex-direction:column; justify-content:center;
  padding: 40px 0; opacity: .35; transition: opacity .4s var(--ease);
}
.process-step.active{ opacity: 1; }
.process-step:first-child{ min-height: 62vh; }
.process-step:last-child{ min-height: 62vh; }
.process-step-num{
  font-family: var(--font-mono); font-size: 13px; font-weight:700; color: var(--green-dark);
  margin-bottom: 14px; display:block;
}
.process-step h3{ font-size: 26px; margin-bottom: 10px; }
.process-step p{ font-size: 16px; color: var(--ink-soft); max-width: 420px; margin:0; }

@media (max-width: 860px){
  .process-sticky{ grid-template-columns: 1fr; gap: 0; }
  /* sticky-pin only works with a side-by-side layout; stacked on mobile it
     fights the grid's row sizing and overlaps the step text, so the
     illustration is static here — it still updates per step, it just
     doesn't stay pinned while you scroll */
  .process-visual{ position: static; top:auto; height: 46vh; max-height: 340px; margin-bottom: 8px; }
  .process-step{ min-height: 0; padding: 26px 0; opacity: 1; }
  .process-step:first-child, .process-step:last-child{ min-height: 0; }
}

/* ============================================================
   ISO 50 — static step cards + specs (no scrollytelling)
   ============================================================ */
.process50{ background: var(--paper); }
.process50 h2{ font-size: clamp(28px,3.6vw,42px); max-width: 560px; }
.step50-grid{
  margin-top: 48px;
  display:grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.step50-card{
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 22px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.step50-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px rgba(13,38,26,.08); border-color: rgba(0,150,71,.3); }
.step50-num{ font-family: var(--font-mono); font-weight:700; color: var(--green-dark); font-size: 13px; }
.step50-card h3{ font-size: 18px; margin: 12px 0 8px; }
.step50-card p{ font-size: 14px; color: var(--ink-soft); margin:0; }
.step50-grid .step50-card:nth-child(1){ transition-delay:0s; }
.step50-grid .step50-card:nth-child(2){ transition-delay:.08s; }
.step50-grid .step50-card:nth-child(3){ transition-delay:.16s; }
.step50-grid .step50-card:nth-child(4){ transition-delay:.24s; }
@media (max-width: 960px){ .step50-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .step50-grid{ grid-template-columns: 1fr; } }

.specs50{ background: var(--paper-2); }
.specs50-grid{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items:center;
}
.specs50-media{
  background: linear-gradient(160deg, var(--green-mist), #fff);
  border: 1px solid var(--line); border-radius: 20px; padding: 40px;
  display:flex; align-items:center; justify-content:center;
}
.specs50-media img{ width:100%; max-width: 300px; filter: drop-shadow(0 24px 30px rgba(13,38,26,.14)); animation: heroFloat 6.5s ease-in-out infinite; }
.specs50-body h2{ font-size: clamp(26px,3.2vw,36px); max-width: 460px; }
.spec-list--lg{ margin: 20px 0 30px; max-width: 480px; }
.spec-list--lg li{ font-size: 14.5px; padding: 4px 0; }
@media (max-width: 860px){ .specs50-grid{ grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos{ background: var(--paper-2); }
.produtos h2{ font-size: clamp(28px,3.6vw,42px); max-width: 520px; }
.product-cards{
  margin-top: 54px;
  display:grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.product-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.product-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0,150,71,.35);
  box-shadow: 0 26px 50px rgba(13,38,26,.10);
}
.product-card-media{
  position:relative; aspect-ratio: 4/3;
  background: var(--green-mist);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-card-media img{
  position:absolute; max-height: 78%; width:auto; margin:auto; left:0; right:0; top:0; bottom:0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.product-card-media .img-a{ opacity:1; transform: scale(1); }
.product-card-media .img-b{ opacity:0; transform: scale(1.04); }
.product-card:hover .product-card-media .img-a{ opacity:0; transform: scale(.97); }
.product-card:hover .product-card-media .img-b{ opacity:1; transform: scale(1); }
.product-card:hover .product-card-media img:only-child{ opacity:1; transform: scale(1.04); }

.product-card-body{ padding: 30px 30px 32px; }
.product-kicker{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing:.1em; color: var(--green-dark); font-weight:700;
}
.product-card-body h3{ font-size: 28px; margin: 10px 0 10px; }
.product-card-body p{ color: var(--ink-soft); font-size: 15px; }
.spec-list{ list-style:none; margin: 18px 0 26px; padding: 16px 0 0; border-top: 1px solid var(--line); display:flex; flex-direction:column; gap:10px; }
.spec-list li{ display:flex; justify-content:space-between; font-size: 13.5px; }
.spec-list li span:first-child{ color: var(--ink-faint); font-family: var(--font-mono); font-size:12px; }
.spec-list li span:last-child{ color: var(--ink); font-weight:600; text-align:right; }
.product-card-ctas{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

.product-cards .product-card:nth-child(1){ transition-delay: 0s; }
.product-cards .product-card:nth-child(2){ transition-delay: .12s; }

.product-card{ position:relative; }
.product-card::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  transform: translateX(-120%); opacity:0;
}
.product-card:hover::after{ animation: shine 1.1s ease; }
@keyframes shine{
  0%{ transform: translateX(-120%); opacity:.9; }
  100%{ transform: translateX(120%); opacity:0; }
}

.product-cards--single{ grid-template-columns: minmax(0,900px); justify-content:center; }

/* ---------- "Explore os acessórios" style — Apple accessories layout:
   plain text on the left, product sitting in a flat gray case box on the right ---------- */
.product-card--wide{
  display:grid; grid-template-columns: .95fr 1.15fr; align-items:center; gap: 56px;
  background:none; border:none; border-radius:0; overflow:visible; box-shadow:none;
  transition:none;
}
.product-card--wide:hover{ transform:none; border-color:transparent; box-shadow:none; }
.product-card--wide::after{ display:none; }
.product-card--wide .product-card-media{
  aspect-ratio: auto; position:relative;
  background: #fff; border-radius: 28px;
  min-height: 380px; box-shadow: 0 1px 2px rgba(13,38,26,.05);
}
.product-card--wide .product-card-media::before{ display:none; }
.product-card--wide .product-card-media img{
  position:absolute; max-height: 90%; width:auto; max-width: 86%; margin:auto; left:0; right:0; top:0; bottom:0; z-index:1;
  filter: drop-shadow(0 26px 34px rgba(13,38,26,.10));
}
.img-a--only{ opacity:1 !important; transform: scale(1) !important; transition: transform .5s var(--ease); }
.product-card:hover .img-a--only{ transform: scale(1.03) !important; }
.product-card--wide .product-card-body{
  padding: 12px 0;
  display:flex; flex-direction:column; justify-content:center;
}
.product-float-badge{
  position:absolute; top:22px; left:22px; z-index:2;
  display:inline-flex; align-items:center; gap:6px;
  background:#f2f2f0; border:none; border-radius:100px;
  padding:8px 14px; font-size:12px; font-weight:700; color: var(--green-dark);
}
.product-float-badge svg{ color: var(--green); }

.crumb-orbit{ position:absolute; inset:0; pointer-events:none; z-index:1; }
.crumb-dot{
  position:absolute; border-radius:50%; background: var(--soil); opacity:.4;
}
.cd1{ width:8px; height:8px; top:24%; right:14%; animation: crumbOrbit 6s ease-in-out infinite; }
.cd2{ width:5px; height:5px; bottom:20%; left:12%; animation: crumbOrbit 7.5s ease-in-out infinite reverse; }
.cd3{ width:6px; height:6px; bottom:32%; right:22%; animation: crumbOrbit 5.2s ease-in-out infinite .6s; }
@keyframes crumbOrbit{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(10px,-14px) scale(1.15); }
}

.spec-chips{ list-style:none; margin: 22px 0 30px; padding:0; display:flex; flex-direction:column; }
.spec-chip{
  display:flex; align-items:center; gap:14px;
  background:none; border:0; border-top: 1px solid var(--line);
  padding: 14px 0;
  transition: transform .3s var(--ease), gap .3s var(--ease);
}
.spec-chip:last-child{ border-bottom: 1px solid var(--line); }
.spec-chip:hover{ transform: translateX(4px); gap:18px; }
.spec-chip-icon{
  flex-shrink:0; width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: none; border: 1.5px solid var(--green-light); color: var(--green-dark);
}
.spec-chip-icon svg{ width:18px; height:18px; }
.spec-chip-text{ display:flex; flex-direction:column; font-size: 13.5px; color: var(--ink-soft); line-height:1.4; }
.spec-chip-text strong{ color: var(--ink); font-size:12px; font-family: var(--font-mono); font-weight:700; letter-spacing:.02em; }

@media (max-width: 860px){
  .product-card--wide{ grid-template-columns: 1fr; }
  .product-card--wide .product-card-media{ aspect-ratio: 4/3; }
  .product-card--wide .product-card-body{ padding: 28px 26px 30px; }
}

.produtos-promo{
  margin-top: 26px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 26px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.produtos-promo:hover{ transform: translateY(-4px); border-color: rgba(0,150,71,.35); box-shadow: 0 20px 40px rgba(13,38,26,.08); }
.produtos-promo-text{ font-size: 14.5px; color: var(--ink-soft); }
.produtos-promo-text strong{ color: var(--ink); margin-right: 6px; }
.produtos-promo-cta{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--green-dark);
  white-space: nowrap;
}

@media (max-width: 860px){ .product-cards{ grid-template-columns: 1fr; } }

/* ============================================================
   BENEFICIOS
   ============================================================ */
/* ============================================================
   NO DIA A DIA — real lifestyle photos, Apple-style photo blocks
   ============================================================ */
.lifestyle{ background: var(--paper-2); overflow: hidden; }
/* Apple-style single-slide carousel — one photo front and center, a sliver
   of the next one peeking on the right; arrows/dots (and a click on the
   peeking slide) advance it with a smooth snap. */
.lifestyle-carousel-wrap{ margin-top: 44px; }
/* the first photo sits flush against the left edge of the browser, Apple-
   style — no left gutter, only a right-hand gutter so the last slide still
   has room to peek before the scroller runs out. */
.lifestyle-carousel{
  display:flex; gap: 24px;
  padding-left: 0;
  padding-right: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.lifestyle-carousel::-webkit-scrollbar{ display:none; }
.lifestyle-carousel:active{ cursor: grabbing; }
.lifestyle-block{
  margin:0; flex: 0 0 auto; width: min(860px, 90vw); scroll-snap-align: start;
}
.lifestyle-block:first-child{ margin-left: 0; }
.lifestyle-block img{
  width:100%; aspect-ratio: 16/10; object-fit:cover; display:block;
  border-radius: 24px;
  transition: transform .6s var(--ease);
  cursor: pointer;
}
.lifestyle-block figcaption{
  margin-top: 20px; font-size: 16px; line-height:1.5; color: var(--ink-soft);
  max-width: 480px; opacity: .3; transition: opacity .35s var(--ease);
}
.lifestyle-block.is-active figcaption{ opacity: 1; }
.lifestyle-block figcaption strong{ display:block; color: var(--ink); font-size: 19px; margin-bottom: 5px; letter-spacing:-.01em; }

.lifestyle-nav{
  display:flex; align-items:center; justify-content:center; gap: 18px;
  margin-top: 30px;
}
.lifestyle-arrow{
  width: 42px; height:42px; border-radius:50%; flex-shrink:0;
  background:#fff; border:none; color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 1px 2px rgba(13,38,26,.08);
  transition: background .25s, transform .2s;
}
.lifestyle-arrow:hover{ background:#fff; transform: translateY(-1px); }
.lifestyle-arrow:active{ transform: translateY(0); }
.lifestyle-arrow[disabled]{ opacity:.35; pointer-events:none; }
.lifestyle-dots{ display:flex; align-items:center; gap:8px; }
.lifestyle-dot{
  width:7px; height:7px; border-radius:50%; background: var(--line);
  transition: background .3s, transform .3s; cursor:pointer; border:none; padding:0;
}
.lifestyle-dot.active{ background: var(--green-dark); transform: scale(1.3); }

@media (max-width: 760px){
  .lifestyle-block{ width: 88vw; }
  .lifestyle-block img{ aspect-ratio: 4/3; }
}

.beneficios{ background: var(--paper); position:relative; overflow:hidden; }
.stat-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat-card{
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  text-align:center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.stat-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,38,26,.08);
  border-color: rgba(0,150,71,.3);
}
.stat-grid .stat-card:nth-child(1){ transition-delay: 0s; }
.stat-grid .stat-card:nth-child(2){ transition-delay: .08s; }
.stat-grid .stat-card:nth-child(3){ transition-delay: .16s; }
.stat-grid .stat-card:nth-child(4){ transition-delay: .24s; }
.stat-num{
  font-family: var(--font-mono); font-weight:700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--green-dark);
  margin-bottom: 10px;
}
.stat-card p{ margin:0; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 860px){ .stat-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .stat-grid{ grid-template-columns: 1fr; } }

/* second marquee, reverse direction, more movement */
.marquee--soft{
  background: var(--green-mist); color: var(--green-dark);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee--soft .marquee-track{ animation: marqueeReverse 18s linear infinite; }
.marquee--soft i{ opacity:.4; }
@keyframes marqueeReverse{
  from{ transform: translateX(-25%); }
  to{ transform: translateX(0); }
}

/* ============================================================
   CTA FINAL — único momento 100% verde
   ============================================================ */
.cta-final{
  background: var(--green-deep);
  text-align:center;
  color:#fff;
}
.cta-final .eyebrow{ color: rgba(255,255,255,.75); justify-content:center; }
.cta-final .eyebrow::before{ background: rgba(255,255,255,.75); }
.cta-final-inner{ display:flex; flex-direction:column; align-items:center; }
.cta-final h2{ font-size: clamp(30px,4.2vw,48px); max-width: 640px; color:#fff; }
.cta-final .body-lg{ text-align:center; margin-bottom: 34px; color: rgba(255,255,255,.82); }
.cta-final .wa-btn{ background:#fff; color: var(--green-deep); }
.cta-final .wa-btn:hover{ background: var(--green-light); }
.cta-final .wa-btn .wa-icon{ fill: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background: var(--paper-2); padding: 66px 0 0; border-top: 1px solid var(--line); }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px;
}
.footer-logo{ height: 50px; width:auto; margin-bottom: 16px; }
.footer-brand p{ color: var(--ink-soft); font-size: 14px; max-width: 280px; }
.footer-social{ display:flex; gap: 10px; margin-top: 14px; }
.footer-social a{
  width: 34px; height:34px; border-radius: 50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-soft);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover{ border-color: var(--green); color: var(--green-dark); }
.footer-col h4{ font-family: var(--font-mono); font-size: 12px; letter-spacing:.08em; color: var(--green-dark); margin-bottom: 14px; }
.footer-col p{ font-size: 14.5px; color: var(--ink-soft); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 20px 32px; text-align:center;
  font-size: 12.5px; color: var(--ink-faint);
  font-family: var(--font-mono);
}
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.fab-wa{
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 56px; height:56px; border-radius:50%;
  background: var(--green);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(0,150,71,.35);
  transition: transform .25s var(--ease);
}
.fab-wa:hover{ transform: scale(1.08); }
.fab-wa .wa-icon{ width:26px; height:26px; fill:#fff; }
@media (min-width: 861px){ .fab-wa{ display:none; } }
