/* =====================================================================
   PROSSIGO PARA O ALVO — folha de estilo
   Direção: verde de mata + terra batida + osso; serifa humana (Newsreader)
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Barra de rolagem na paleta do site (Firefox + Chrome/Edge recentes) */
  scrollbar-width: thin;
  scrollbar-color: #3c6e47 #ece1cb;
}

/* Barra de rolagem — WebKit/Blink (Chrome, Edge, Safari) */
::-webkit-scrollbar { width: 13px; height: 13px; }
::-webkit-scrollbar-track { background: #ece1cb; }
::-webkit-scrollbar-thumb {
  background: #3c6e47;
  border-radius: 999px;
  border: 3px solid #ece1cb;
}
::-webkit-scrollbar-thumb:hover { background: #1f3d2b; }
::-webkit-scrollbar-corner { background: #ece1cb; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--tinta);
  background: var(--osso);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: "Newsreader", Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
:focus-visible { outline: 3px solid var(--folha); outline-offset: 3px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Tokens ---------- */
:root {
  --pinho:        #1f3d2b;
  --pinho-900:    #14281c;
  --folha:        #3c6e47;
  --musgo:        #6b8f5e;
  --musgo-claro:  #9dc191;
  --osso:         #f5f0e6;
  --areia:        #ece1cb;
  --barro:        #a34a29;
  --barro-escuro: #863a1f;
  --barro-suave:  #b5623c;
  --tinta:        #26221d;
  --tinta-suave:  #5f584c;
  --linha:        rgba(38, 34, 29, 0.14);
  --linha-clara:  rgba(245, 240, 230, 0.18);

  --wrap: 1140px;
  --radius: 4px;
  --shadow-soft: 0 18px 40px -24px rgba(20, 40, 28, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.25rem, 6.5vw, 5.25rem); }
.measure { max-width: 40ch; }
.section__lead.measure, .verse__text.measure { max-width: 52ch; }

/* Compensa o cabeçalho fixo ao navegar por âncoras */
main [id], #topo { scroll-margin-top: 88px; }

.band--bone { background: var(--osso); }
.band--sand { background: var(--areia); }
.band--pine { background: var(--pinho); color: var(--osso); }
.band--pine h1, .band--pine h2, .band--pine h3 { color: var(--osso); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--pinho); color: var(--osso);
  padding: 0.6rem 1rem; border-radius: var(--radius); z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Kicker ---------- */
.kicker {
  display: flex; align-items: center; gap: 0.5rem 0.75rem; flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--barro);
  margin-bottom: 1.4rem;
}
.kicker::before { content: ""; width: 2.25rem; height: 1px; background: currentColor; flex: none; }
.kicker--light { color: var(--musgo-claro); }

/* ---------- Typographic bits ---------- */
.ink-accent { color: var(--barro-suave); font-style: italic; }
.band--pine .ink-accent { color: var(--musgo-claro); }

.section__title { font-size: clamp(1.9rem, 4.4vw, 2.9rem); max-width: 20ch; text-wrap: balance; }
.section__title.measure { max-width: 20ch; }
.familias .section__title, .contato .section__title { max-width: 16ch; }
.section__lead { color: var(--tinta-suave); font-size: 1.125rem; margin-top: 1.1rem; }
.band--pine .section__lead { color: rgba(245, 240, 230, 0.8); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--barro); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  min-height: 48px;
  font-size: 0.98rem; font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn--solid { background: var(--btn-bg); color: var(--btn-fg); box-shadow: 0 10px 24px -14px rgba(150, 76, 44, 0.9); }
.btn--solid:hover { background: var(--barro-escuro); transform: translateY(-2px); }
.btn--solid:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--pinho); border-color: var(--linha); }
.btn--ghost:hover { border-color: var(--pinho); background: rgba(31, 61, 43, 0.05); transform: translateY(-2px); }
.band--pine .btn--ghost { color: var(--osso); border-color: var(--linha-clara); }
.band--pine .btn--ghost:hover { border-color: var(--osso); background: rgba(245, 240, 230, 0.08); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--folha); text-decoration: none;
  padding-block: 0.35rem;
}
.link-arrow::after { content: "\2192"; transition: transform 0.18s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow:hover { color: var(--pinho); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header[data-scrolled] {
  border-bottom-color: var(--linha);
  box-shadow: 0 10px 30px -22px rgba(20, 40, 28, 0.5);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--pinho); }
.brand__mark { width: 34px; height: auto; }
.brand__name { font-family: "Newsreader", serif; font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
.brand__name em { font-style: italic; font-weight: 400; color: var(--tinta-suave); }

.site-nav { display: flex; align-items: center; }
.nav-list { list-style: none; padding: 0; display: flex; align-items: center; gap: 1.6rem; }
.nav-list a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  color: var(--tinta); position: relative; padding-block: 0.4rem;
}
.nav-list a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--barro);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.nav-list a:not(.nav-cta):hover::after,
.nav-list a[aria-current="true"]::after { transform: scaleX(1); }
.nav-cta {
  background: var(--pinho); color: var(--osso) !important;
  padding: 0.6rem 1.1rem; border-radius: var(--radius);
  transition: background-color 0.18s var(--ease);
}
.nav-cta:hover { background: var(--pinho-900); }

.nav-toggle {
  display: none;
  align-items: center; gap: 0.5rem;
  background: none; border: 1px solid var(--linha); border-radius: var(--radius);
  padding: 0.5rem 0.75rem; cursor: pointer;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-toggle__bars { position: relative; width: 18px; height: 10px; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--pinho);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--osso);
    border-bottom: 1px solid var(--linha);
    padding: 0.5rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
  }
  .nav-list[data-open] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list li { border-bottom: 1px solid var(--linha); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list a { display: block; padding: 1rem 0.25rem; font-size: 1.05rem; }
  .nav-list a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 1rem; padding: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--osso); overflow: hidden; padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 6vw, 4.5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__title {
  font-size: clamp(2.35rem, 6vw, 4.05rem);
  font-weight: 500; margin-top: 0.4rem;
  text-wrap: balance;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--tinta-suave); margin-top: 1.5rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__note { font-size: 0.9rem; color: var(--tinta-suave); margin-top: 1.5rem; padding-left: 1rem; border-left: 2px solid var(--musgo); }

.hero__figure { position: relative; margin: 0; }
.hero__figure img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero__figure::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 62%; height: 62%; border: 1px solid var(--musgo);
  border-radius: var(--radius); z-index: -1;
}
.hero__figure figcaption {
  font-size: 0.82rem; color: var(--tinta-suave);
  margin-top: 0.7rem; text-align: right; font-style: italic;
}
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 460px; }
  .hero__note { max-width: 46ch; }
}

/* ---------- Manifesto / care list ---------- */
.lede-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem); margin-top: 2.75rem;
}
.lede-grid__text p + p { margin-top: 1.1rem; }
.lede-grid__text p { font-size: 1.08rem; }

.care-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; align-content: start; }
.care-list li { padding-left: 1.25rem; border-left: 2px solid var(--musgo); }
.care-list h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.care-list p { color: var(--tinta-suave); font-size: 0.98rem; }

@media (max-width: 780px) { .lede-grid { grid-template-columns: 1fr; } }

/* ---------- Daily / caminhada ---------- */
.daily {
  display: grid; grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(1.75rem, 4vw, 3.5rem); margin-top: 2.75rem; align-items: start;
}
.daily__photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); position: sticky; top: 96px; }
.daily__photo img { width: 100%; object-fit: cover; display: block; }
.daily__photo--tall img { aspect-ratio: 4 / 5; }
.daily__list { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 2rem; }
.daily__list li { position: relative; padding-left: 2.75rem; }
.daily__list li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.1rem;
  font-family: "Newsreader", serif; font-size: 0.95rem; color: var(--barro);
  font-variant-numeric: tabular-nums;
}
.daily__list h3 { font-size: 1.22rem; margin-bottom: 0.25rem; }
.daily__list p { color: var(--tinta-suave); font-size: 0.98rem; }

.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.photo-strip figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

@media (max-width: 780px) {
  .daily { grid-template-columns: 1fr; }
  .daily__photo { position: static; }
  .daily__photo--tall { max-width: 380px; }
  .daily__photo--tall img { aspect-ratio: 4 / 3; }
  .photo-strip { grid-template-columns: 1fr; }
}

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin-top: 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  counter-reset: none;
}
.step {
  padding: 1.75rem 1.5rem; background: #fff;
  border: 1px solid var(--linha); border-radius: var(--radius);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--pinho); color: var(--osso);
  font-family: "Newsreader", serif; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--tinta-suave); }

.callout {
  margin-top: 2.5rem; padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--areia); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.callout p { max-width: 52ch; }
.callout .btn { flex: none; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Famílias ---------- */
.familias { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.familias__text p { margin-top: 1.1rem; color: var(--tinta-suave); font-size: 1.05rem; }
.tick-list { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: 0.85rem; }
.tick-list li { position: relative; padding-left: 1.9rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0.15rem; top: 0.35em;
  width: 0.45rem; height: 0.8rem;
  border: solid var(--barro); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.familias__photo { margin: 0; }
.familias__photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); object-fit: cover; aspect-ratio: 4 / 3; }
.familias__photo figcaption { font-size: 0.82rem; color: var(--tinta-suave); font-style: italic; margin-top: 0.7rem; }

@media (max-width: 780px) { .familias { grid-template-columns: 1fr; } .familias__photo { order: -1; } }

/* ---------- Verse ---------- */
.verse { text-align: center; }
.verse__inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.verse__quote { max-width: 30ch; }
@media (min-width: 861px) { .verse__quote { max-width: 46rem; } }
.verse__quote p {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.5rem); line-height: 1.25; color: var(--osso);
  text-wrap: balance;
}
.verse__quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--musgo-claro); }
.verse__text { color: rgba(245, 240, 230, 0.82); font-size: 1.1rem; }

/* ---------- Support ---------- */
.support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.support__card {
  padding: 1.9rem 1.6rem; background: #fff;
  border: 1px solid var(--linha); border-radius: var(--radius);
  border-top: 3px solid var(--musgo);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.support__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.support__card h3 { font-size: 1.25rem; }
.support__card p { color: var(--tinta-suave); font-size: 0.97rem; flex: 1; }
.support__card .link-arrow { margin-top: 0.5rem; }

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

/* ---------- Contato ---------- */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contato__intro p { margin-top: 1.1rem; color: rgba(245, 240, 230, 0.82); }
.contato__channels { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.25rem; }
.contato__channels li { display: grid; gap: 0.2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--linha-clara); }
.contato__channels li:last-child { border-bottom: 0; }
.contato__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--musgo-claro); }
.contato__channels a, .contato__channels span:not(.contato__label) { font-size: 1.05rem; color: var(--osso); text-decoration: none; }
.contato__channels a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contato__form {
  background: var(--osso); color: var(--tinta);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.contato__form h3 { font-size: 1.4rem; color: var(--tinta); }
.contato__form-hint { font-size: 0.9rem; color: var(--tinta-suave); margin-top: 0.35rem; margin-bottom: 1.5rem; }
.contato__form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.contato__form input, .contato__form textarea {
  width: 100%; padding: 0.8rem 0.9rem; margin-bottom: 1.15rem;
  background: #fff; border: 1px solid var(--linha); border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.contato__form input:focus, .contato__form textarea:focus {
  outline: none; border-color: var(--folha);
  box-shadow: 0 0 0 3px rgba(60, 110, 71, 0.16);
}
.contato__form textarea { resize: vertical; min-height: 96px; }
.contato__privacy { font-size: 0.8rem; color: var(--tinta-suave); margin-top: 1.1rem; line-height: 1.5; }
.field-error { border-color: var(--barro) !important; }
.form-note { font-size: 0.9rem; margin-top: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); background: rgba(60, 110, 71, 0.12); color: var(--pinho); }

@media (max-width: 820px) { .contato__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--pinho-900); color: rgba(245, 240, 230, 0.72); padding-block: 3.25rem; }
.site-footer__inner { display: grid; gap: 1.5rem; text-align: center; justify-items: center; }
.site-footer__brand { display: flex; align-items: center; gap: 0.8rem; }
.site-footer__brand img { width: 40px; height: auto; }
.site-footer__brand p { font-family: "Newsreader", serif; color: var(--osso); font-size: 1.05rem; text-align: left; line-height: 1.3; }
.site-footer__brand span { font-family: "Inter", sans-serif; font-size: 0.8rem; color: rgba(245, 240, 230, 0.72); }
.site-footer__links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; justify-content: center; }
.site-footer__links a { color: rgba(245, 240, 230, 0.82); text-decoration: none; font-size: 0.92rem; }
.site-footer__links a:hover { color: var(--osso); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__verse { font-family: "Newsreader", serif; font-style: italic; color: var(--musgo-claro); }
.site-footer__legal { font-size: 0.8rem; color: rgba(245, 240, 230, 0.66); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 800;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.8rem 1.1rem; min-height: 48px;
  background: #1f7a43; color: #fff;
  border-radius: 999px; text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 14px 30px -12px rgba(20, 60, 30, 0.6);
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
}
.wa-float:hover { background: #1a6b3a; transform: translateY(-2px); }
.wa-float svg { flex: none; }
.wa-float.is-tucked { opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; }
@media (max-width: 520px) { .wa-float span { display: none; } .wa-float { padding: 0.9rem; } }

/* ---------- Preloader ---------- */
/* base (.preloader position/background) fica no <style> crítico do <head> */
.preloader__mark { display: grid; justify-items: center; gap: 1.4rem; }
.preloader__rings { overflow: visible; }
.preloader__ring, .preloader__dot { transform-box: fill-box; transform-origin: center; }
.preloader__word {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.95rem; letter-spacing: 0.02em; color: var(--pinho);
}
/* Sem JS de animação (fallback) e movimento reduzido: aparece pronto e some suave */
.preloader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.5s var(--ease), visibility 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .preloader.is-leaving { transition: none; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal].is-visible[data-reveal] { transition-delay: var(--reveal-delay, 0s); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .support__card:hover, .wa-float:hover, .link-arrow:hover::after { transform: none; }
  .wa-float { transition: opacity 0.2s linear, visibility 0.2s; }
  .wa-float.is-tucked { transform: none; }
}
