/* ===========================================================
   Secret Eden — estilos da loja (PHP)
   Tokens, animações e seções fiéis ao design handoff.
   =========================================================== */
:root {
  --ink: #0c0608;
  --ink-footer: #0a0507;
  --panel: #15090d;
  --panel-2: #150a0e;
  --wine: #7d1f38;
  --wine-bright: #a8324f;
  --wine-deep: #4a0f1e;
  --gold: #c9a24c;
  --gold-stroke: #cda653;
  --gold-light: #f1d98a;
  --gold-deep: #9b7a32;
  --cream: #ece0d6;
  --cream-soft: #d8c7bb;
  --muted: #a89a8f;
  --muted-2: #8f7c6f;
  --hairline: rgba(201, 162, 76, 0.14);

  --font-jost: "Jost", system-ui, sans-serif;
  --font-cormorant: "Cormorant Garamond", Georgia, serif;
  --font-pinyon: "Pinyon Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-jost);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--wine); color: var(--gold-light); }
input::placeholder { color: rgba(236, 224, 214, 0.4); }

/* ── keyframes ─────────────────────────────────────────── */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes logoSheen { 0% { background-position: 150% 0; } 55%, 100% { background-position: -50% 0; } }
@keyframes floatUp { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: .7; } 88% { opacity: .7; } 100% { transform: translateY(-140px); opacity: 0; } }
@keyframes glowPulse { 0%, 100% { opacity: .45; transform: scale(1); } 50% { opacity: .85; transform: scale(1.1); } }
@keyframes sway { 0%, 100% { transform: rotate(-1.1deg); } 50% { transform: rotate(1.1deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(201,162,76,.45); } 70% { box-shadow: 0 0 0 14px rgba(201,162,76,0); } 100% { box-shadow: 0 0 0 0 rgba(201,162,76,0); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes slither { from { transform: translateY(0); } to { transform: translateY(-172px); } }
@keyframes snakeSway { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* ── reveal on scroll ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease var(--d, 0s), transform .9s ease var(--d, 0s);
}
[data-reveal].reveal-in { opacity: 1; transform: none; }

/* ── serpentes laterais ────────────────────────────────── */
.snake {
  position: fixed; top: 0; width: 60px; height: 100vh; overflow: hidden;
  z-index: 5; pointer-events: none; opacity: .5; mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.snake--left { left: -8px; }
.snake--right { right: -8px; transform: scaleX(-1); }
.snake__path { filter: drop-shadow(0 0 4px rgba(201,162,76,.55)); }

/* ── marquee ───────────────────────────────────────────── */
.marquee {
  background: var(--panel); border-bottom: 1px solid var(--hairline);
  overflow: hidden; white-space: nowrap; padding: 7px 0; position: relative; z-index: 40;
}
.marquee__track { display: inline-flex; animation: marquee 22s linear infinite; will-change: transform; }
.marquee__seq { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }

/* ── header ────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center;
  justify-content: space-between; padding: 13px 20px;
  background: rgba(12,6,8,0); border-bottom: 1px solid rgba(201,162,76,0);
  backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0);
  transition: background .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
.header.scrolled {
  background: rgba(12,6,8,.92); border-bottom-color: rgba(201,162,76,.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.wordmark { text-decoration: none; display: flex; align-items: baseline; gap: 8px; }
.wordmark__secret { font-family: var(--font-cormorant); font-style: italic; font-weight: 600; font-size: 23px; color: var(--wine-bright); line-height: 1; }
.wordmark__eden { font-family: var(--font-jost); font-size: 14px; letter-spacing: .3em; color: var(--gold); }
.menu-btn {
  background: transparent; border: 1px solid rgba(201,162,76,.35); border-radius: 9px;
  width: 42px; height: 36px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; cursor: pointer; padding: 0;
}
.menu-btn span { width: 18px; height: 1.5px; background: var(--gold); display: block; }

/* ── menu overlay ──────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(9,4,6,.97);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.menu__close {
  position: absolute; top: 22px; right: 22px; background: transparent; border: none;
  color: var(--gold); font-size: 30px; cursor: pointer; line-height: 1; font-family: var(--font-jost);
}
.menu__title { font-family: var(--font-pinyon); font-size: 34px; color: var(--wine-bright); margin-bottom: 14px; }
.menu__link {
  text-decoration: none; color: var(--cream); font-size: 20px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 300; padding: 12px; transition: color .3s ease;
}
.menu__link:hover { color: var(--gold-light); }

/* ── botões ────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(95deg, var(--gold), var(--gold-light) 50%, var(--gold));
  background-size: 200% auto; color: #1a0a0e;
  transition: background-position .6s ease, transform .3s ease, box-shadow .4s ease;
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(201,162,76,.4); }
.btn-outline {
  background: transparent; border: 1px solid rgba(201,162,76,.45); color: var(--gold);
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}
.btn-outline:hover { background: rgba(201,162,76,.1); border-color: var(--gold); color: var(--gold-light); }
.btn-buy {
  background: transparent; border: 1px solid rgba(201,162,76,.4); color: var(--gold);
  transition: background .35s ease, color .35s ease;
}
.btn-buy:hover { background: var(--gold); color: #1a0a0e; }
.btn-wine {
  background: linear-gradient(95deg, var(--wine), var(--wine-bright)); color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(125,31,56,.4); transition: transform .3s ease, box-shadow .4s ease;
}
.btn-wine:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(125,31,56,.6); }
.btn-copy { background: var(--gold); transition: background .3s ease; }
.btn-copy:hover { background: var(--gold-light); }
.btn-ghost { transition: background .35s ease, color .35s ease; }
.btn-ghost:hover { background: rgba(201,162,76,.1); color: var(--gold-light); }
.link-soft { transition: color .3s ease; }
.link-soft:hover { color: var(--gold); }

/* ── section heading ───────────────────────────────────── */
.kicker { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
.section-title { margin: 14px 0 0; font-family: var(--font-cormorant); font-weight: 500; font-size: 30px; line-height: 1.2; color: var(--cream); }
.section-title .accent { font-style: italic; color: var(--gold); }
.heading { text-align: center; }
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto; width: 150px; }
.divider span:first-child { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,76,.55)); }
.divider span:last-child { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,162,76,.55), transparent); }
.diamond { width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 30px 24px 50px; overflow: hidden; scroll-margin-top: 72px;
}
.hero__glow-wine { position: absolute; top: 8%; left: 50%; width: 520px; height: 520px; margin-left: -260px;
  background: radial-gradient(circle, rgba(125,31,56,.55), rgba(125,31,56,0) 62%); filter: blur(8px); pointer-events: none; }
.hero__glow-gold { position: absolute; top: 32%; left: 50%; width: 360px; height: 360px; margin-left: -180px;
  background: radial-gradient(circle, rgba(201,162,76,.20), rgba(201,162,76,0) 60%); filter: blur(4px); pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite; }
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particle { position: absolute; border-radius: 50%; background: radial-gradient(circle, #f1d98a, rgba(201,162,76,0)); filter: blur(.3px); }
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 440px; }
.hero__kicker { font-size: 11px; letter-spacing: .46em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; animation: heroIn 1s ease .1s both; }
.hero__art { position: relative; width: 100%; max-width: 330px; margin: 0 auto; animation: heroIn 1.3s cubic-bezier(.2,.7,.2,1) both; }
.hero__art-inner { position: relative; animation: sway 9s ease-in-out infinite; }
.hero__logo { width: 100%; height: auto; filter: drop-shadow(0 16px 30px rgba(0,0,0,.55)) drop-shadow(0 6px 26px rgba(125,31,56,.4)); }
.hero__sheen {
  position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background-image: linear-gradient(105deg, transparent 38%, rgba(241,217,138,.55) 50%, transparent 62%);
  background-size: 220% 100%; background-repeat: no-repeat;
  -webkit-mask-image: url(../img/logo.png); mask-image: url(../img/logo.png);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  animation: logoSheen 5.5s ease-in-out 1.6s infinite;
}
.hero__tagline { margin: 26px 0 0; font-family: var(--font-cormorant); font-style: italic; font-size: 20px; line-height: 1.5;
  color: var(--cream-soft); text-align: center; max-width: 340px; animation: heroIn 1.1s ease .5s both; text-wrap: pretty; }
.hero__ctas { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 300px; margin-top: 30px; animation: heroIn 1.1s ease .7s both; }
.hero__cta-primary { text-decoration: none; text-align: center; padding: 15px 22px; border-radius: 40px; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600; box-shadow: 0 10px 30px rgba(201,162,76,.22); }
.hero__cta-secondary { text-decoration: none; text-align: center; padding: 14px 22px; border-radius: 40px; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bob 2.4s ease-in-out infinite; }
.hero__scroll-label { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: rgba(201,162,76,.65); }
.hero__chevron { width: 9px; height: 9px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); }

/* ── layout de seções ──────────────────────────────────── */
.section { position: relative; scroll-margin-top: 72px; }
.section--benefits { padding: 64px 22px; }
.section--categories { padding: 50px 22px 64px; }
.section--products { padding: 50px 22px 64px; background: linear-gradient(180deg, #0c0608, #120709, #0c0608); }
.section--offer { padding: 20px 22px 64px; }
.section--testimonials { padding: 50px 22px 64px; }
.section--newsletter { padding: 20px 22px 70px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; max-width: 460px; margin: 0 auto; }
.grid-2--products { gap: 14px; }

/* ── benefícios ────────────────────────────────────────── */
.benefit { height: 100%; background: linear-gradient(160deg, #160a0f, #100709); border: 1px solid var(--hairline); border-radius: 16px; padding: 20px 16px; }
.benefit__title { margin: 14px 0 6px; font-size: 15px; font-weight: 500; letter-spacing: .04em; color: var(--gold-light); }
.benefit__text { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); }

/* ── categorias ────────────────────────────────────────── */
.cat-card {
  text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; height: 100%;
  min-height: 122px; background: linear-gradient(155deg, #1a0c11, #0f0608); border: 1px solid rgba(201,162,76,.16);
  border-radius: 16px; padding: 18px 16px; position: relative; overflow: hidden;
  transition: border-color .4s ease, background .4s ease, transform .4s ease;
}
.cat-card:hover { border-color: rgba(201,162,76,.5); background: linear-gradient(155deg, #23101a, #13080b); transform: translateY(-4px); }
.cat-card__diamond { width: 11px; height: 11px; border: 1px solid var(--wine-bright); transform: rotate(45deg); }
.cat-card__name { margin: 0; font-size: 16px; font-weight: 500; color: var(--gold-light); letter-spacing: .02em; line-height: 1.25; text-wrap: pretty; }
.cat-card__count { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }

/* ── produtos ──────────────────────────────────────────── */
.product-card {
  height: 100%; background: var(--panel-2); border: 1px solid var(--hairline); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 28px rgba(125,31,56,.2); border-color: rgba(201,162,76,.4); }
.product-card__media { position: relative; height: 140px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(201,162,76,.1);
  background: repeating-linear-gradient(135deg, #1d0d13 0 13px, #150a0e 13px 26px); }
.product-card__media--photo { background: #150a0e; }
.product-card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { font-family: monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,162,76,.45); }
.product-card__tag { position: absolute; top: 10px; left: 10px; background: var(--wine); color: var(--gold-light); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; border-radius: 20px; }
.product-card__body { padding: 13px 13px 15px; display: flex; flex-direction: column; flex: 1; }
.product-card__sub { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.product-card__name { margin: 5px 0 0; font-size: 14.5px; font-weight: 500; color: var(--cream); line-height: 1.25; text-wrap: pretty; }
.product-card__price { margin: 9px 0 12px; font-family: var(--font-cormorant); font-size: 21px; font-weight: 600; color: var(--gold); }
.product-card__buy { margin-top: auto; text-decoration: none; text-align: center; padding: 10px; border-radius: 30px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.products-empty { text-align: center; color: var(--muted); font-family: var(--font-cormorant); font-style: italic; font-size: 18px; max-width: 320px; margin: 0 auto; }

/* ── oferta ────────────────────────────────────────────── */
.offer {
  max-width: 460px; margin: 0 auto; position: relative; border-radius: 22px; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, #33121f, #160a0e 70%); border: 1px solid rgba(201,162,76,.25);
  padding: 40px 26px; text-align: center;
}
.offer__spin { position: absolute; top: -60px; left: 50%; width: 240px; height: 240px; margin-left: -120px;
  background: conic-gradient(from 0deg, rgba(201,162,76,.12), rgba(125,31,56,.12), rgba(201,162,76,.12));
  filter: blur(20px); animation: spinSlow 24s linear infinite; pointer-events: none; }
.offer__inner { position: relative; }
.offer__pct { margin: 14px 0 4px; font-family: var(--font-cormorant); font-weight: 600; font-size: 46px; line-height: 1;
  background: linear-gradient(95deg, #9b7a32, #f1d98a 50%, #9b7a32); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 4s linear infinite; }
.offer__sub { margin: 8px 0 22px; font-size: 14px; color: var(--cream-soft); }
.offer__coupon-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.offer__code { border: 1.5px dashed rgba(201,162,76,.55); border-radius: 10px; padding: 11px 20px; font-family: monospace; font-size: 17px; letter-spacing: .18em; color: var(--gold-light); }
.offer__copy { border: none; border-radius: 30px; padding: 12px 18px; color: #1a0a0e; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.offer__cta { display: inline-block; margin-top: 24px; text-decoration: none; padding: 14px 30px; border-radius: 40px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }

/* ── depoimentos ───────────────────────────────────────── */
.testi {
  max-width: 420px; margin: 0 auto; background: linear-gradient(160deg, #170a10, #0f0608); border: 1px solid rgba(201,162,76,.16);
  border-radius: 20px; padding: 34px 26px; text-align: center; min-height: 230px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.testi__quote-mark { font-family: var(--font-cormorant); font-size: 60px; line-height: 0; color: rgba(201,162,76,.35); height: 30px; }
.testi__quote { margin: 18px 0 0; font-family: var(--font-cormorant); font-style: italic; font-size: 20px; line-height: 1.5; color: #e8d8cd; transition: opacity .5s ease; text-wrap: pretty; }
.testi__author { font-size: 13px; letter-spacing: .06em; color: var(--gold); font-weight: 500; }
.testi__role { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.testi__meta { margin-top: 30px; }
.testi__dots { display: flex; gap: 8px; margin-top: 24px; align-items: center; }
.testi__dot { width: 7px; height: 7px; border-radius: 4px; border: none; cursor: pointer; padding: 0; background: rgba(201,162,76,.3); transition: all .4s ease; }
.testi__dot.active { width: 22px; background: var(--gold); }

/* ── newsletter ────────────────────────────────────────── */
.vip {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, #1c0c13, #0d0608 75%); border: 1px solid rgba(201,162,76,.2);
  border-radius: 22px; padding: 42px 26px;
}
.vip__diamond { width: 13px; height: 13px; border: 1px solid var(--wine-bright); transform: rotate(45deg); display: inline-block; margin-bottom: 16px; }
.vip__title { margin: 0 0 8px; font-family: var(--font-cormorant); font-weight: 500; font-size: 30px; color: var(--cream); }
.vip__title .accent { font-style: italic; color: var(--gold); }
.vip__text { margin: 0 auto 24px; font-size: 13.5px; line-height: 1.6; color: var(--muted); max-width: 300px; }
.vip__form { display: flex; flex-direction: column; gap: 11px; }
.vip__input { background: var(--ink); border: 1px solid rgba(201,162,76,.3); border-radius: 40px; padding: 14px 20px; color: var(--cream); font-family: var(--font-jost); font-size: 14px; outline: none; text-align: center; }
.vip__submit { border: none; border-radius: 40px; padding: 14px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.vip__success { padding: 16px; border: 1px solid rgba(201,162,76,.4); border-radius: 14px; color: var(--gold-light); font-size: 14px; }
.hidden { display: none !important; }

/* ── footer ────────────────────────────────────────────── */
.footer { padding: 48px 24px 40px; border-top: 1px solid var(--hairline); background: var(--ink-footer); text-align: center; scroll-margin-top: 72px; }
.footer__brand { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 14px; }
.footer__secret { font-family: var(--font-cormorant); font-style: italic; font-weight: 600; font-size: 28px; color: var(--wine-bright); line-height: 1; }
.footer__eden { font-family: var(--font-jost); font-size: 16px; letter-spacing: .3em; color: var(--gold); }
.footer__phrase { margin: 0 auto 22px; font-family: var(--font-cormorant); font-style: italic; font-size: 15px; color: var(--muted); max-width: 280px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; align-items: center; margin-bottom: 26px; }
.footer__wa { text-decoration: none; color: var(--cream); font-size: 13px; letter-spacing: .08em; border: 1px solid rgba(201,162,76,.3); border-radius: 40px; padding: 11px 26px; }
.footer__ig { text-decoration: none; color: var(--muted-2); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.footer__divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 22px; width: 200px; }
.footer__divider span:first-child { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,76,.35)); }
.footer__divider span:last-child { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,162,76,.35), transparent); }
.footer__divider .diamond { width: 6px; height: 6px; border-color: rgba(201,162,76,.6); }
.footer__note { margin: 0 0 6px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: #6e5f55; }
.footer__copy { margin: 0; font-size: 10px; letter-spacing: .1em; color: #5a4d44; }

/* ── botão flutuante WhatsApp ──────────────────────────── */
.float-wa {
  position: fixed; right: 16px; bottom: 16px; z-index: 80; width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #a8324f, #7d1f38); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5); animation: pulseRing 2.6s ease-out infinite; transition: transform .3s ease;
}
.float-wa:hover { transform: scale(1.08); }

/* ── acessibilidade ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
