/* =============================================================
   FLORENCE — shared.css (primitivas semânticas + UI kit das LPs)
   DERIVADO de docs/design-system/colors_and_type.css (primitivas)
   e docs/design-system/tokens.css (UI kit). Requer tokens.css
   carregado ANTES (variáveis) e fonts.css (self-hosted).
   Diferenças intencionais vs. fonte:
   - .hero__bg-img usa var(--hero-img) em vez de URL hardcodada;
   - bloco prefers-reduced-motion adicionado ao final (WCAG 2.2).
   ============================================================= */

/* =========================
   SEMANTIC TYPE PRIMITIVES
   Apply to plain tags so unstyled HTML feels on-brand.
   ========================= */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--forest);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -.01em; }
h4 { font-size: var(--fs-h4); line-height: 1.25; letter-spacing: -.01em; color: var(--forest-dark); }

/* Headings frequently contain <em> which is NOT italic — it's tonal
   contrast: the body of the heading is solid forest, the <em> portion
   is forest-mid (or a forest→glow gradient on dark surfaces). */
h1 em, h2 em, h3 em, h4 em {
  font-style: normal;
  color: var(--forest-mid);
}

p { font-size: var(--fs-body); color: var(--text-2); line-height: 1.78; }
p.lead { font-size: var(--fs-lead); }
strong { color: var(--text); font-weight: 700; }

a { color: var(--forest); text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
a:hover { color: var(--forest-soft); }

/* Eyebrow: the small uppercase label with a left-dash that opens
   nearly every section. */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--forest-soft);
  border-radius: 2px;
}
.eyebrow--light { color: rgba(255,255,255,.45); }
.eyebrow--light::before { background: rgba(255,255,255,.25); }
.eyebrow--amber { color: var(--amber-mid); }
.eyebrow--amber::before { background: var(--amber-mid); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { overflow-x: hidden; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section   { padding: var(--pad) 0; }
.text-c    { text-align: center; }

/* Reveal-on-scroll */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.rv.on { opacity: 1; transform: none; }
.d1{transition-delay:.10s}.d2{transition-delay:.22s}.d3{transition-delay:.34s}
.d4{transition-delay:.46s}.d5{transition-delay:.58s}.d6{transition-delay:.70s}

/* Progress bar */
#pb { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999;
      background: linear-gradient(90deg, var(--forest), var(--amber-mid), var(--forest-soft));
      background-size: 200% 100%; animation: shimmer 3s ease infinite; transition: width .1s linear; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* =============== BUTTONS =============== */
.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: var(--radius-pill);
       font-family: var(--font-body); font-weight: 700; text-decoration: none; cursor: pointer;
       transition: all .35s var(--ease-soft); border: 2px solid transparent; white-space: nowrap;
       position: relative; overflow: hidden; }
.btn::after { content:''; position:absolute; inset:0; border-radius:inherit;
              background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
              transform: translateX(-100%); transition: transform .6s ease; }
.btn:hover::after { transform: translateX(100%); }
.btn-wa { background: var(--wa); color: #fff; padding: 20px 48px; font-size: 1.05rem; box-shadow: var(--shadow-fwa); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.btn-forest { background: var(--forest); color: #fff; padding: 18px 36px; font-size: 1rem; box-shadow: var(--shadow-fforest); }
.btn-forest:hover { background: var(--forest-dark); transform: translateY(-3px); }
.btn-ol { background: transparent; color: var(--forest); border-color: var(--forest); padding: 20px 38px; font-size: 1rem; }
.btn-ol:hover { background: var(--forest); color: #fff; transform: translateY(-3px); }
.btn-olw { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); padding: 20px 38px; font-size: 1rem; }
.btn-olw:hover { background: #fff; color: var(--forest); transform: translateY(-3px); }
.btn-sm { padding: 14px 28px; font-size: .9rem; }

/* =============== HEADER =============== */
.hdr { position: fixed; top: 3px; left: 0; right: 0; z-index: 500; padding: 20px 0;
       background: transparent; transition: all .45s var(--ease-soft); }
.hdr.scrolled { padding: 14px 0; background: rgba(250,248,243,.92);
                backdrop-filter: blur(18px) saturate(1.5); box-shadow: 0 2px 20px rgba(0,40,25,.06); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; }
.logo { height: 56px; width: auto; filter: brightness(0) invert(1); transition: filter .45s ease; }
.hdr.scrolled .logo { filter: none; }
.hdr:not(.scrolled) .btn-ol { border-color: rgba(255,255,255,.5); color: #fff; }
.hdr:not(.scrolled) .btn-ol:hover { background: rgba(255,255,255,.12); color: #fff; transform: none; }
.hdr__cta { font-size: .875rem; padding: 12px 24px; }

/* =============== HERO =============== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 90px;
        position: relative; text-align: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { position: absolute; inset: 0;
                background: var(--hero-img, linear-gradient(160deg, #003D2E 0%, #005540 55%, #007055 100%)) center/cover no-repeat;
                animation: heroZoom 25s ease-in-out infinite alternate; }
@keyframes heroZoom { 0%{transform:scale(1)} 100%{transform:scale(1.08)} }
.hero__bg-overlay { position: absolute; inset: 0;
                    background: linear-gradient(175deg, rgba(0,20,12,.88) 0%, rgba(0,45,30,.62) 40%, rgba(0,55,38,.55) 60%, rgba(0,30,18,.82) 100%); }
.hero__bg-grain { position: absolute; inset: 0; opacity: .03;
                  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
                  background-size: 128px 128px; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .12; pointer-events: none; }
.hero__orb--1 { width: 500px; height: 500px; background: var(--forest-soft); top: -10%; right: -8%; animation: orbFloat 12s ease-in-out infinite alternate; }
.hero__orb--2 { width: 350px; height: 350px; background: var(--amber-mid); bottom: -5%; left: -5%; animation: orbFloat 16s ease-in-out infinite alternate-reverse; }
@keyframes orbFloat { 0%{transform:translate(0,0)} 100%{transform:translate(30px,-30px)} }
.hero__in { position: relative; z-index: 1; max-width: 940px; margin: 0 auto;
            display: flex; flex-direction: column; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px;
               background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
               color: rgba(255,255,255,.92); font-size: .78rem; font-weight: 700;
               letter-spacing: .12em; text-transform: uppercase; padding: 10px 26px;
               border-radius: var(--radius-pill); margin-bottom: 32px; backdrop-filter: blur(12px);
               opacity: 0; animation: fu .9s .2s forwards; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa);
             box-shadow: 0 0 12px rgba(37,211,102,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 12px rgba(37,211,102,.6)}
                   50%{opacity:.7;transform:scale(1.4);box-shadow:0 0 24px rgba(37,211,102,.3)} }
.hero__kicker { font-size: clamp(.85rem,2vw,1.05rem); font-weight: 800; letter-spacing: .2em;
                text-transform: uppercase; color: var(--forest-glow); display: block;
                margin-bottom: 16px; opacity: 0; animation: fu .9s .4s forwards; }
.hero__h1 { font-family: var(--font-display); font-size: clamp(2.25rem,5.6vw,4.25rem);
            font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.02em;
            display: block; margin-bottom: 28px; opacity: 0; animation: fu .9s .55s forwards; }
.hero__h1 em { font-style: normal; font-weight: 700;
               background: linear-gradient(135deg, var(--forest-glow), #A8E6CF);
               -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__divider { width: 64px; height: 2px; margin: 0 auto 28px; border-radius: 2px;
                 background: linear-gradient(90deg, var(--forest-soft), var(--amber-mid));
                 opacity: 0; animation: fu .9s .62s forwards; }
.hero__sub { color: rgba(255,255,255,.85); font-size: clamp(1rem,1.7vw,1.15rem);
             max-width: 760px; margin-bottom: 36px; line-height: 1.72;
             opacity: 0; animation: fu .9s .72s forwards; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
               padding: 22px 36px; border-radius: 100px;
               background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
               backdrop-filter: blur(12px); margin-bottom: 40px;
               opacity: 0; animation: fu .9s .82s forwards; }
.hero__stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px;
              border-right: 1px solid rgba(255,255,255,.12); min-width: 130px; }
.hero__stat:last-child { border-right: none; }
.hero__stat b { font-family: var(--font-display); font-size: clamp(1.6rem,2.6vw,2.2rem);
                font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.01em; }
.hero__stat span { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 6px;
                   letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 18px;
              flex-wrap: wrap; margin-bottom: 32px; opacity: 0; animation: fu .9s .92s forwards; }
.hero__notice { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72);
                font-size: .82rem; opacity: 0; animation: fu .9s 1s forwards; }
.hero__notice svg { width: 16px; height: 16px; color: var(--forest-glow); flex-shrink: 0; }
@keyframes fu { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* =============== SECTION CHROME =============== */
.s-heading { color: var(--forest); margin-bottom: 20px; }
.s-heading em { font-style: normal; color: var(--forest-mid); }
.s-sub { max-width: 680px; margin-bottom: 52px; color: var(--text-3);
         font-size: clamp(.95rem,1.3vw,1.05rem); line-height: 1.7; }
.text-c .s-sub { margin-left: auto; margin-right: auto; }

/* =============== MANIFESTO =============== */
.s-manifesto { background: var(--champagne); }
.manifesto__in { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.manifesto__body p { margin-bottom: 18px; }
.manifesto__body p strong { color: var(--forest); }
.manifesto__sig { margin-top: 22px; font-family: var(--font-serif); font-style: italic; color: var(--forest-mid); font-size: 1.15rem; }
.video-wrap { position: relative; border-radius: var(--radius); overflow: hidden;
              aspect-ratio: 4/5; box-shadow: var(--shadow-md); cursor: pointer; }
.video-wrap__poster { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s var(--ease-soft); }
.video-wrap:hover .video-wrap__poster { transform: scale(1.04); }
.video-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,30,18,.85), transparent 50%); }
.video-wrap__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
                    width: 76px; height: 76px; border-radius: 50%; border: 0; cursor: pointer;
                    background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center;
                    box-shadow: 0 12px 40px rgba(0,0,0,.3); z-index: 2; transition: transform .35s var(--ease-soft); }
.video-wrap:hover .video-wrap__play { transform: translate(-50%,-50%) scale(1.08); }
.video-wrap__play svg { width: 24px; height: 24px; fill: var(--forest); margin-left: 4px; }
.video-wrap__caption { position: absolute; bottom: 24px; left: 24px; right: 24px; color: #fff; z-index: 2; }
.video-wrap__caption span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-glow); display:block; margin-bottom: 6px; }
.video-wrap__caption b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }

/* =============== SERVICE CARDS (pq) =============== */
.pq__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.pq__head .lead { font-size: var(--fs-lead); color: var(--text-2); margin-top: 8px; }
.pq__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pq-card { background: #fff; border-radius: var(--radius); overflow: hidden;
           box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
           transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft); }
.pq-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pq-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pq-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.pq-card:hover .pq-card__media img { transform: scale(1.06); }
.pq-card__tag { position: absolute; top: 16px; left: 16px; z-index: 2;
                background: rgba(255,255,255,.95); color: var(--forest);
                font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
                padding: 7px 14px; border-radius: var(--radius-pill); }
.pq-card__num { position: absolute; bottom: 14px; right: 22px;
                font-family: var(--font-display); font-weight: 700;
                font-size: 4rem; color: rgba(255,255,255,.95); letter-spacing: -.04em; line-height: 1;
                text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.pq-card__body { padding: 28px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.pq-card__body h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.3rem; }
.pq-card__body p { font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.pq-card__body ul { list-style: none; margin-bottom: 22px; padding: 0; }
.pq-card__body li { display: flex; gap: 10px; padding: 6px 0; font-size: .9rem; color: var(--text-2); line-height: 1.5; }
.pq-card__body li::before { content:''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
                            background: var(--forest-soft); margin-top: 8px; }
.pq-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
                 color: var(--forest); font-weight: 700; font-size: .9rem;
                 transition: gap .25s var(--ease-soft); }
.pq-card__link:hover { gap: 14px; }
.pq-card__link svg { width: 16px; height: 16px; }

/* =============== PILARES =============== */
.pilar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; }
.pilar-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.pilar-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pilar-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pilar-card__num { position: absolute; top: 18px; left: 22px;
                   font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
                   color: rgba(255,255,255,.95); letter-spacing: -.04em; line-height: 1;
                   text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.pilar-card__body { padding: 26px 30px 30px; }
.pilar-card__body h3 { color: var(--forest); margin-bottom: 8px; font-size: 1.4rem; line-height: 1.2; }
.pilar-card__body h3 em { font-style: normal; color: var(--forest-mid); }
.pilar-card__body p { font-size: .95rem; line-height: 1.7; }

/* =============== TIMELINE =============== */
.timeline { list-style: none; max-width: 760px; margin: 0 auto; padding: 0; position: relative; }
.timeline::before { content:''; position: absolute; left: 31px; top: 30px; bottom: 30px; width: 2px;
                    background: linear-gradient(to bottom, var(--forest-soft), var(--amber-mid)); border-radius: 2px; }
.timeline-step { display: grid; grid-template-columns: 64px 1fr; gap: 22px;
                 padding: 16px 0 28px; position: relative; align-items: flex-start; }
.timeline-step__num { width: 64px; height: 64px; border-radius: 50%;
                      background: #fff; color: var(--forest);
                      font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
                      display: flex; align-items: center; justify-content: center;
                      letter-spacing: -.01em; box-shadow: 0 0 0 2px var(--forest-soft), var(--shadow-sm);
                      z-index: 1; transition: all .35s var(--ease-soft); }
.timeline-step:hover .timeline-step__num { background: var(--forest); color: #fff; }
.timeline-step h4 { color: var(--forest-dark); margin-bottom: 6px; }
.timeline-step p { font-size: .95rem; line-height: 1.7; }

/* =============== FAQ =============== */
.faq__layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 80px); align-items: flex-start; }
.faq__head { position: sticky; top: 120px; }
.faq__head .s-heading { margin-bottom: 12px; }
.faq__head p { margin-bottom: 22px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-row { background: #fff; border-radius: 18px; box-shadow: var(--shadow-xs); transition: box-shadow .35s var(--ease-soft); overflow: hidden; }
.faq-row.is-open { box-shadow: var(--shadow-sm); }
.faq-row__btn { display: grid; grid-template-columns: 56px 1fr 32px; align-items: center; gap: 18px;
                width: 100%; background: transparent; border: 0; cursor: pointer;
                padding: 22px 28px; text-align: left; font-family: inherit; }
.faq-row__num { font-family: var(--font-display); font-weight: 700; color: var(--forest-soft); font-size: .95rem; letter-spacing: .04em; }
.faq-row__q { font-family: var(--font-display); font-weight: 700; color: var(--forest); font-size: 1.08rem; letter-spacing: -.01em; }
.faq-row__toggle { font-family: var(--font-display); color: var(--forest); font-weight: 300; font-size: 1.7rem;
                   transition: transform .35s var(--ease-soft); }
.faq-row.is-open .faq-row__toggle { transform: rotate(45deg); }
.faq-row__body { padding: 0 28px 22px 92px; font-size: .95rem; color: var(--text-2); line-height: 1.78;
                 display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-soft), padding-bottom .35s var(--ease-soft); }
.faq-row__body > div { overflow: hidden; }
.faq-row.is-open .faq-row__body { grid-template-rows: 1fr; }

/* =============== CONVÊNIOS =============== */
.s-convenios { background: var(--forest-bg); }
.conv__in { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.conv__body p { margin-bottom: 28px; }
.conv__credits-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
                       text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.conv__wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.conv__name { background: #fff; padding: 12px 22px; border-radius: var(--radius-pill);
              font-family: var(--font-display); font-weight: 600; color: var(--forest); font-size: .95rem;
              box-shadow: var(--shadow-xs); }
.conv__note { font-size: .85rem; color: var(--text-3); font-style: italic; }

/* =============== FOOTER =============== */
.footer { background: var(--forest-dark); color: rgba(255,255,255,.7); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px;
               border-bottom: 1px solid rgba(255,255,255,.1); }
.flogo { height: 56px; filter: brightness(0) invert(1); margin-bottom: 24px; }
.fadr { font-size: .9rem; line-height: 1.8; margin-bottom: 22px; }
.fadr a { color: var(--forest-glow); }
.fbadges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.fbadge { display: inline-block; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
          color: rgba(255,255,255,.85); padding: 8px 16px; border-radius: var(--radius-pill); font-size: .8rem; font-weight: 600; }
.fsocial { display: flex; gap: 12px; }
.fsocial a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06);
             display: flex; align-items: center; justify-content: center;
             color: rgba(255,255,255,.85); transition: background .25s var(--ease-soft); }
.fsocial a:hover { background: var(--forest); color: #fff; }
.fsocial svg { width: 18px; height: 18px; }
.fcol h5 { font-family: var(--font-display); color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -.01em; }
.fcol ul { list-style: none; padding: 0; }
.fcol li { padding: 4px 0; }
.fcol a { color: rgba(255,255,255,.7); font-size: .9rem; }
.fcol a:hover { color: var(--forest-glow); }
.footer__bot { padding-top: 28px; display: flex; justify-content: space-between; gap: 28px; font-size: .78rem; flex-wrap: wrap; }
.flegal { line-height: 1.7; color: rgba(255,255,255,.55); max-width: 720px; }
.fcrm { color: rgba(255,255,255,.55); font-family: ui-monospace, Menlo, monospace; font-size: .75rem; line-height: 1.7; text-align: right; }

/* =============== FLOATING WHATSAPP =============== */
.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 700;
            background: var(--wa); color: #fff; border-radius: var(--radius-pill);
            padding: 16px 26px; font-family: var(--font-body); font-weight: 700;
            box-shadow: var(--shadow-fwa); display: flex; align-items: center; gap: 10px;
            opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
            transition: all .45s var(--ease-soft); text-decoration: none; }
.float-wa.on { opacity: 1; transform: none; pointer-events: auto; }
.float-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.float-wa svg { width: 22px; height: 22px; fill: currentColor; }

/* =============== RESPONSIVE =============== */
@media (max-width: 980px) {
  .pq__grid, .pilar__grid, .manifesto__in, .conv__in, .faq__layout, .footer__top { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .footer__top { gap: 30px; }
  .hero__stat { padding: 0 16px; min-width: 100px; }
  .float-wa span { display: none; }
}

/* =============== ACESSIBILIDADE: reduced motion (WCAG 2.2) =============== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .hero__badge, .hero__kicker, .hero__h1, .hero__divider, .hero__sub,
  .hero__stats, .hero__ctas, .hero__notice { opacity: 1; animation: none; }
  .hero__bg-img { animation: none; }
}
