/* ============================================================
   Concillio — Landing styles
   Palette: forest green + warm off-white (brand-preserved)
   Type: Schibsted Grotesk · Cormorant Garamond (accent) · JetBrains Mono
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #F4F2EC;
  --bg-2:      #ECEAE1;
  --surface:   #FFFFFF;
  --surface-2: #FBFAF6;

  /* ink */
  --ink:       #15241A;
  --ink-soft:  #38473D;
  --muted:     #6C766E;
  --muted-2:   #98A099;

  /* lines */
  --line:   rgba(21,36,26,.11);
  --line-2: rgba(21,36,26,.06);

  /* greens */
  --green-900: #0D2918;
  --green-850: #103120;
  --green-800: #123A25;
  --green-700: #16502F;
  --accent:        #1C6A3C;
  --accent-deep:   #134A2A;
  --accent-bright: #2E8B57;
  --accent-tint:   #E7EFE7;

  /* status */
  --amber: #C07A1E;

  /* radii */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --pill: 999px;

  /* fonts */
  --font-ui:    'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;

  /* shadow */
  --sh-sm: 0 1px 2px rgba(13,41,24,.05), 0 1px 1px rgba(13,41,24,.04);
  --sh:    0 4px 16px rgba(13,41,24,.06), 0 1px 3px rgba(13,41,24,.05);
  --sh-lg: 0 24px 60px -20px rgba(13,41,24,.28), 0 8px 24px -12px rgba(13,41,24,.18);

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px;
  border-radius: var(--pill);
  background: var(--accent-tint);
  border: 1px solid rgba(28,106,60,.16);
  color: var(--accent-deep);
}
.eyebrow-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.04; color: var(--green-900); }
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--accent-bright);
}

.lead { color: var(--ink-soft); font-size: 18px; line-height: 1.62; }
.muted { color: var(--muted); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 16px; }
.section-head p { margin: 0; font-size: 18px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-size: 15.5px; font-weight: 600;
  padding: 15px 26px; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(19,74,42,.55), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 14px 30px -10px rgba(19,74,42,.6); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { background: rgba(21,36,26,.04); border-color: rgba(21,36,26,.2); transform: translateY(-2px); }
.btn-ghost .play {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint);
  display: grid; place-items: center; color: var(--accent);
}
.btn-light { background: #fff; color: var(--accent-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline-light { background: transparent; color: #EAF2EC; border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-block { width: 100%; }

.micro {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--muted); text-transform: uppercase;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(244,242,236,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(244,242,236,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 32px; height: 32px; object-fit: contain; }
.brand .name { font-family: var(--font-serif); font-style: normal; font-weight: 600; font-size: 25px; letter-spacing: .01em; color: var(--green-900); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .link { font-size: 15px; font-weight: 600; color: var(--ink); }
.nav-cta .link:hover { color: var(--accent); }
.nav .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent;
  border-radius: 11px; cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.nav-burger span { width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 28px 22px;
  border-top: 1px solid var(--line); background: rgba(244,242,236,.98);
}
.nav-mobile a { padding: 12px 4px; font-size: 16px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.nav.menu-open .nav-mobile { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 90px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 1.18fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); letter-spacing: -.03em; text-wrap: balance; }
.hero .lead { margin: 26px 0 34px; max-width: 480px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.hero-trust .micro { text-transform: none; font-size: 12.5px; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.hero-media { position: relative; }

/* device / dashboard frame */
.device {
  position: relative;
  border-radius: var(--r-lg);
  background: #fff;
  padding: 10px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.device-bar { display: flex; align-items: center; gap: 7px; padding: 7px 9px 11px; }
.device-bar .d { width: 10px; height: 10px; border-radius: 50%; background: #D9D6CC; }
.device-bar .url {
  margin-left: 12px; flex: 1; height: 22px; border-radius: var(--pill);
  background: var(--bg-2); display: flex; align-items: center; padding: 0 12px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); letter-spacing: .02em;
}
.device-screen { border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); }
.device-screen img { width: 100%; height: auto; display: block; }

/* floating accent cards on hero device */
.float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 14px; padding: 13px 16px;
  box-shadow: var(--sh-lg); border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 11px;
  animation: floaty 6s ease-in-out infinite;
}
.float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; }
.float .t { font-size: 12px; color: var(--muted); line-height: 1.3; }
.float .v { font-size: 15px; font-weight: 700; color: var(--ink); }
.float-1 { top: 18px; left: -26px; }
.float-2 { bottom: 30px; right: -22px; animation-delay: -3s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* hero glow */
.hero::before {
  content: ''; position: absolute; top: -180px; right: -120px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,.14), transparent 65%);
  pointer-events: none;
}

/* ============================================================
   TRUST / METRICS
   ============================================================ */
.trust { background: var(--bg-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.trust-label { text-align: center; margin-bottom: 26px; }
.logos { display: flex; align-items: center; justify-content: center; gap: 54px; flex-wrap: wrap; }
.logos .logo {
  font-family: var(--font-serif); font-weight: 600; font-size: 23px; letter-spacing: .02em;
  color: var(--ink); opacity: .42; transition: opacity .25s; white-space: nowrap;
}
.logos .logo:hover { opacity: .8; }
.metrics {
  display: flex; justify-content: center;
  margin-top: 54px; padding-top: 46px; border-top: 1px solid var(--line);
}
.metric { text-align: center; }
.metric .num { font-size: clamp(34px, 4vw, 48px); font-weight: 700; letter-spacing: -.03em; color: var(--accent-deep); }
.metric .num span { font-family: var(--font-serif); font-style: italic; }
.metric .lbl { margin-top: 8px; font-size: 14.5px; color: var(--muted); }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(28,106,60,.2); }
.feat-ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 22px;
}
.feat-card h3 { font-size: 19.5px; margin-bottom: 11px; letter-spacing: -.01em; }
.feat-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 30px; left: 16%; right: 16%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; padding: 0 14px; }
.step-num {
  width: 60px; height: 60px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 17px; font-weight: 500; color: var(--accent);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   COPILOT (dark)
   ============================================================ */
.copilot {
  background: var(--green-900); color: #EAF2EC; position: relative; overflow: hidden;
  border-radius: 34px; margin: 0 28px;
}
.copilot::before {
  content: ''; position: absolute; right: -160px; top: -120px; width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,.22), transparent 62%);
}
.copilot::after {
  content: ''; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: 0 0 0 60px rgba(255,255,255,.018), 0 0 0 120px rgba(255,255,255,.012);
}
.copilot-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 86px 64px; max-width: var(--maxw); margin: 0 auto;
}
.copilot .eyebrow-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #BFE3CC; }
.copilot .eyebrow-pill .dot { background: #7FD49E; }
.copilot h2 { font-size: clamp(32px, 4vw, 46px); color: #fff; margin: 22px 0 20px; }
.copilot .lead { color: rgba(234,242,236,.74); max-width: 460px; }
.copilot-feats { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.cp-feat { display: flex; gap: 14px; }
.cp-feat .ic { width: 24px; flex-shrink: 0; color: #7FD49E; }
.cp-feat h4 { margin: 0 0 4px; font-size: 16px; color: #fff; font-weight: 600; }
.cp-feat p { margin: 0; font-size: 14.5px; color: rgba(234,242,236,.62); font-style: italic; }

/* chat mock */
.chat {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px; padding: 22px; display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(6px);
}
.bubble { border-radius: 16px; padding: 15px 17px; font-size: 14.5px; line-height: 1.5; max-width: 86%; }
.bubble.ai { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); color: #DCEFE2; align-self: flex-start; font-style: italic; }
.bubble.me { background: var(--accent-bright); color: #06210f; align-self: flex-end; font-weight: 600; }
.bubble.done { display: flex; align-items: center; gap: 11px; align-self: flex-start; background: rgba(127,212,158,.1); border: 1px solid rgba(127,212,158,.22); color: #BFE3CC; }
.bubble.done .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(127,212,158,.22); display: grid; place-items: center; color: #7FD49E; flex-shrink: 0; }
.chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 4px; }
.chat-head .av { width: 30px; height: 30px; border-radius: 9px; background: var(--accent-bright); display: grid; place-items: center; color: #06210f; }
.chat-head .nm { font-size: 14px; font-weight: 600; color: #fff; }
.chat-head .st { font-family: var(--font-mono); font-size: 10.5px; color: #7FD49E; letter-spacing: .08em; text-transform: uppercase; margin-left: auto; }

/* ============================================================
   PRICING
   ============================================================ */
.single-plan {
  max-width: 880px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--sh-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.sp-left { padding: 46px 44px; display: flex; flex-direction: column; }
.sp-right { padding: 46px 44px; background: var(--surface-2); border-left: 1px solid var(--line-2); }
.sp-right h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 22px; font-weight: 500; }
.plan-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.plan-price { margin: 16px 0 0; display: flex; align-items: baseline; gap: 2px; }
.plan-price .cur { font-size: 22px; font-weight: 600; color: var(--green-900); }
.plan-price .amt { font-size: 58px; font-weight: 700; letter-spacing: -.03em; color: var(--green-900); line-height: 1; }
.plan-price .cents { font-size: 26px; font-weight: 700; color: var(--green-900); }
.plan-price .per { font-size: 15px; color: var(--muted); margin-left: 5px; }
.sp-desc { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 18px 0 28px; }
.sp-left .btn { margin-top: auto; }
.sp-note { margin-top: 14px; text-transform: none; text-align: center; }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.plan-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.plan-feats li { display: flex; gap: 12px; font-size: 15px; align-items: flex-start; color: var(--ink-soft); }
.plan-feats .ck { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; box-shadow: var(--sh-sm); display: flex; flex-direction: column;
}
.tcard .qt { font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1; color: var(--accent-bright); margin-bottom: 8px; }
.tcard p { margin: 0 0 24px; font-size: 16px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; }
.tcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.tcard .nm { font-weight: 600; font-size: 15px; }
.tcard .rl { font-size: 13px; color: var(--muted); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band { padding: 40px 0 110px; }
.cta-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 32px;
  padding: 74px 48px; text-align: center; max-width: 840px; margin: 0 auto;
  box-shadow: var(--sh); position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% -10%, rgba(46,139,87,.10), transparent 55%);
}
.cta-card h2 { font-size: clamp(30px, 4vw, 46px); position: relative; }
.cta-card p { font-size: 18px; color: var(--muted); margin: 18px auto 34px; max-width: 520px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-card .micro { margin-top: 26px; position: relative; text-transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: rgba(234,242,236,.7); padding: 76px 0 36px; }
.footer .brand .name { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-blurb { margin: 20px 0 0; font-size: 14.5px; line-height: 1.6; max-width: 280px; color: rgba(234,242,236,.55); }
.fcol h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #7FD49E; margin: 0 0 18px; font-weight: 500; }
.fcol a { display: block; font-size: 14.5px; margin-bottom: 12px; color: rgba(234,242,236,.7); transition: color .2s; }
.fcol a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; }
.footer-bottom .micro { color: rgba(234,242,236,.4); }
.footer-bottom .legal { display: flex; gap: 26px; }
.footer-bottom .legal a { font-size: 13px; color: rgba(234,242,236,.5); }
.footer-bottom .legal a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 560px; }
  .float-1 { left: 0; } .float-2 { right: 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .tcards { grid-template-columns: 1fr; }
  .single-plan { grid-template-columns: 1fr; max-width: 480px; }
  .sp-right { border-left: none; border-top: 1px solid var(--line-2); }
  .steps::before { display: none; }
  .copilot-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px; }
  .metrics { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 18px; }
  .section { padding: 76px 0; }
  .copilot { margin: 0 16px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
  .hero h1 { font-size: 38px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,.55), 0 4px 12px rgba(13,41,24,.18);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
}
.wa-fab:hover { background: #1FB855; transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 32px -8px rgba(37,211,102,.65), 0 6px 18px rgba(13,41,24,.22); }
.wa-fab:active { transform: translateY(0) scale(.98); }
.wa-fab-icon { display: block; }
.wa-fab-ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: .55;
  animation: wa-ping 2.4s cubic-bezier(0,0,.2,1) infinite;
  pointer-events: none; z-index: -1;
}
@keyframes wa-ping {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.8); opacity: 0;   }
  100% { transform: scale(1.8); opacity: 0;   }
}
@media (max-width: 560px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-fab-icon { width: 26px; height: 26px; }
}

/* respeitar preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .float { animation: none; }
  .wa-fab-ping { display: none; }
}
