/* ═══════════════════════════════════════════
   AUTOCOUNT PALM POS — style.css
   Theme palette: #f39c3a / #1e1b1d / #f3f1f0
═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --amber:    #f39c3a;
  --amber-lt: #f8c388;
  --amber-dk: #f5ac5b;
  --amber-bg: #fad8b2;
  --dark:     #1e1b1d;
  --dark-2:   #2c2729;
  --mid:      #686567;
  --cream:    #f3f1f0;
  --cream-2:  #fad8b2;
  --white:    #ffffff;

  /* Light mode tokens */
  --bg-hero:    #ddd8d1;
  --bg-body:    #f3f1f0;
  --bg-section: #ffffff;
  --bg-card:    #ffffff;
  --text-h:     #1e1b1d;
  --text-b:     #1e1b1d;
  --text-m:     #686567;
  --border:     rgba(30,27,29,0.10);
  --shadow:     0 8px 30px rgba(30,27,29,0.08);
  --shadow-lg:  0 8px 30px rgba(30,27,29,0.08);
  --google-form: #7372fe;
  --google-form-dark: #5746e3;
}

[data-theme="dark"] {
  --bg-hero:    #262226;
  --bg-body:    #1e1b1d;
  --bg-section: #2a2628;
  --bg-card:    #2a2628;
  --text-h:     #f3f1f0;
  --text-b:     #f3f1f0;
  --text-m:     #b8b3b5;
  --border:     rgba(255,255,255,0.08);
  --shadow:     0 8px 30px rgba(0,0,0,0.40);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.40);
  --google-form: #7372fe;
  --google-form-dark: #5746e3;
}
/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-body);
  color: var(--text-b);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fade animation (JS adds .fade-up, observer adds .visible) ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}
.nav-logo .logo-img { height: 36px; width: auto; object-fit: contain; }

.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.9rem; font-weight: 500;
  color: var(--cream); padding: 6px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
[data-theme="light"] .nav-link { color: var(--text-b); }
[data-theme="dark"] .nav-link { color: var(--text-b); }
.nav-link:hover { background: rgba(243,156,58,0.15); color: var(--amber-lt); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600;
  color: var(--text-m); padding: 4px 2px;
  transition: color 0.2s;
}
[data-theme="dark"] .lang-btn { color: var(--text-m); }
.lang-btn.active, .lang-btn:hover { color: var(--amber); }
.lang-sep { color: rgba(243,241,240,0.3); font-size: 0.75rem; }
[data-theme="dark"] .lang-sep { color: var(--border); }

/* Theme toggle */
.theme-toggle {
  background: rgba(243,241,240,0.12); border: 1px solid rgba(243,241,240,0.2);
  border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: background 0.2s;
}
[data-theme="dark"] .theme-toggle { border-color: var(--border); }
.theme-toggle:hover { background: rgba(243,156,58,0.2); }
[data-theme="light"] .icon-dark { display: none; }
[data-theme="dark"] .icon-light { display: none; }

/* Nav CTA button */
.nav-cta-btn {
  font-size: 0.85rem; font-weight: 600;
  background: var(--amber); color: #fff;
  padding: 8px 18px; border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-btn:hover { background: var(--amber-dk); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; width: 36px; height: 36px;
}
.hamburger span {
  display: block; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
[data-theme="dark"] .hamburger span { background: var(--text-b); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 20px;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
}
[data-theme="dark"] .mobile-drawer { background: var(--bg-card); }
.mobile-drawer.open { display: flex; }
.mob-link {
  font-size: 1rem; font-weight: 500; color: var(--cream);
  padding: 10px 4px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
[data-theme="dark"] .mob-link { color: var(--text-b); }
.mob-cta {
  margin-top: 8px; padding: 12px 20px; border-radius: 10px;
  background: var(--amber); color: #fff; text-align: center;
  font-weight: 700; border-bottom: none;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-hero);
  padding: 140px 0 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* Vertical grid lines */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; justify-content: space-evenly;
}
.hero-grid-lines span {
  display: block; width: 1px;
  background: rgba(243,241,240,0.04);
}

/* Orbs */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); opacity: 0.35;
}
.orb-a { width: 480px; height: 480px; background: #f39c3a; top: -120px; right: -80px; }
.orb-b { width: 320px; height: 320px; background: #f5ac5b; bottom: 60px; left: -60px; }

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  flex: 1;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(243,156,58,0.15); border: 1px solid rgba(243,156,58,0.35);
  color: var(--amber-lt); font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: 0.02em;
}
[data-theme="light"] .hero-eyebrow { background: rgba(243,156,58,0.15); border-color: rgba(243,156,58,0.35); color: var(--text-m); }
[data-theme="dark"] .hero-eyebrow { background: rgba(243,156,58,0.15); border-color: rgba(243,156,58,0.35); color: var(--amber-lt); }
.hero-eyebrow iconify-icon { font-size: 1rem; }

/* Hero headline */
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  color: #f3f1f0;
  display: flex; flex-direction: column;
  margin-bottom: 20px;
}
[data-theme="light"] .hero-h1 { color: var(--text-h); }
[data-theme="dark"] .hero-h1 { color: var(--text-h); }
.accent-gradient {
  background: linear-gradient(135deg, #f39c3a, #f8c388);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(243,241,240,0.65); line-height: 1.7;
  max-width: 520px; margin-bottom: 24px;
}
[data-theme="light"] .hero-sub { color: var(--text-m); }
[data-theme="dark"] .hero-sub { color: var(--text-m); }

/* Chips */
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(243,241,240,0.07); border: 1px solid rgba(243,241,240,0.14);
  color: rgba(243,241,240,0.75); font-size: 0.8rem; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
}
[data-theme="light"] .chip { background: rgba(243,156,58,0.08); border-color: rgba(243,156,58,0.2); color: var(--text-m); }
[data-theme="dark"] .chip { background: rgba(243,156,58,0.08); border-color: rgba(243,156,58,0.2); color: var(--amber-lt); }
.chip iconify-icon { color: var(--white); font-size: 0.95rem; }
[data-theme="light"] .chip iconify-icon { color: var(--text-m); }
[data-theme="dark"] .chip iconify-icon { color: var(--amber-lt); }

/* Hero buttons */
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 40px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  font-size: 0.95rem; font-weight: 700;
  padding: 13px 26px; border-radius: 12px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(243,156,58,0.35);
}
.btn-primary:hover { background: var(--amber-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(243,156,58,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(243,241,240,0.25); color: rgba(243,241,240,0.8);
  font-size: 0.95rem; font-weight: 600;
  padding: 12px 24px; border-radius: 12px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
[data-theme="light"] .btn-outline { border-color: rgba(243,156,58,0.25); color: var(--amber-dk); }
[data-theme="dark"] .btn-outline { border-color: rgba(243,156,58,0.25); color: var(--amber-lt); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber-lt); transform: translateY(-1px); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: rgba(243,241,240,0.05); border: 1px solid var(--amber-dk);
  border-radius: 16px; width: fit-content;
}
[data-theme="light"] .hero-stats { background: rgba(243,156,58,0.05); border-color: rgba(243,156,58,0.25); }
[data-theme="dark"] .hero-stats { background: rgba(243,156,58,0.05); border-color: rgba(243,156,58,0.25); }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--amber-lt);
}
[data-theme="light"] .hstat strong { color: var(--amber-dk); }
[data-theme="dark"] .hstat strong { color: var(--amber-lt); }
.hstat span { font-size: 0.72rem; color: rgba(243,241,240,0.45); font-weight: 500; white-space: nowrap; }
[data-theme="light"] .hstat span { color: var(--text-m); }
[data-theme="dark"] .hstat span { color: var(--amber-lt); }
.hstat-divider { width: 1px; height: 36px; background: rgba(243,241,240,0.12); }

/* Hero image slot */
.hero-image-slot {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 400px;
}
.hero-device-img {
  width: 100%; max-width: 480px;
  object-fit: contain;
  /* transparent PNG — 1:1 ratio, placed by developer */
  filter: drop-shadow(0 24px 60px rgba(243,156,58,0.2));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Hero wave divider */
.hero-wave {
  position: relative; z-index: 2;
  margin-top: auto; line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 96px 0; }

.sec-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(243,156,58,0.1); border: 1px solid rgba(243,156,58,0.25);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-h); margin-bottom: 16px;
}
.sec-desc {
  font-size: 1.05rem; color: var(--text-m);
  line-height: 1.75; max-width: 660px; margin-bottom: 56px;
}

/* ── Overview section ── */
.overview-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ov-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ov-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ov-icon {
  font-size: 2rem; color: var(--amber);
  background: rgba(243,156,58,0.12); width: 52px; height: 52px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ov-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text-h);
  margin-bottom: 8px;
}
.ov-card p { font-size: 0.88rem; color: var(--text-m); line-height: 1.65; }

/* ── Features section ── */
.feat-section { background: var(--bg-body); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fc-wide { grid-column: 1 / -1; }

.fc-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.fc-icon {
  font-size: 1.6rem; width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.ic-orange { background: rgba(243,156,58,0.12); color: #f39c3a; }
.ic-green  { background: rgba(34,197,94,0.12);  color: #16a34a; }
.ic-amber  { background: rgba(251,191,36,0.12);  color: #d97706; }
.ic-blue   { background: rgba(59,130,246,0.12);  color: #2563eb; }
.ic-purple { background: rgba(168,85,247,0.12);  color: #9333ea; }

.fc-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-m); margin-bottom: 4px;
}
.fc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--text-h);
}
.fc-list { display: flex; flex-direction: column; gap: 10px; }
.fc-list-row { flex-direction: row; flex-wrap: wrap; gap: 14px 32px; }
.fc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-b); line-height: 1.55; }
.fc-list li iconify-icon { color: var(--amber); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Industries section ── */
.ind-section { background: var(--bg-section); }
.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ind-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ind-emoji { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.ind-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--text-h);
  margin-bottom: 10px;
}
.ind-card p { font-size: 0.95rem; color: var(--text-m); line-height: 1.7; margin-bottom: 20px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ind-tags span {
  font-size: 0.78rem; font-weight: 600;
  background: rgba(243,156,58,0.1); color: var(--amber-dk);
  border: 1px solid rgba(243,156,58,0.2);
  padding: 4px 12px; border-radius: 100px;
}
[data-theme="dark"] .ind-tags span { color: var(--amber-lt); }

/* ── CTA section ── */
.cta-section { background: var(--bg-body); }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--dark); border-radius: 28px;
  padding: 72px 48px; text-align: center;
}
[data-theme="dark"] .cta-card { background: var(--bg-card); border: 1px solid var(--border); }

.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px); opacity: 0.25;
}
.cta-orb-l { width: 320px; height: 320px; background: #f39c3a; top: -80px; left: -80px; }
.cta-orb-r { width: 280px; height: 280px; background: #f8c388; bottom: -60px; right: -60px; }

.cta-inner { position: relative; z-index: 1; }
.cta-icon {
  font-size: 2.5rem; color: var(--amber);
  display: flex; justify-content: center; margin-bottom: 20px;
}
.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: #f3f1f0; margin-bottom: 14px;
}
.cta-card p {
  font-size: 1.05rem; color: rgba(243,241,240,0.65);
  line-height: 1.7; max-width: 560px; margin: 0 auto 36px;
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--google-form); color: #fff;
  font-size: 1.05rem; font-weight: 700;
  padding: 15px 32px; border-radius: 14px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 36px rgba(133, 37, 211, 0.45);
}
.btn-whatsapp:hover { background: var(--google-form-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.btn-whatsapp iconify-icon { font-size: 1.3rem; }

.cta-footnote {
  margin-top: 16px; font-size: 0.85rem; color: rgba(243,241,240,0.4);
}

/* ── Footer ── */
.footer {
  background: var(--dark); padding: 40px 0;
  border-top: 1px solid rgba(243,241,240,0.06);
}
[data-theme="dark"] .footer { background: var(--bg-hero); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 32px; width: auto; object-fit: contain; opacity: 0.6; }
.footer-tag { font-size: 0.85rem; color: rgba(243,241,240,0.45); text-align: center; }
.footer-copy { font-size: 0.78rem; color: rgba(243,241,240,0.25); }
.footer-logos { display: flex; align-items: center; gap: 16px; margin-top: 12px; }

/* ── Floating WhatsApp FAB ── */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--google-form); color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(133, 37, 211, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* VIDEO SECTION — uncomment with video section */
/*
.video-section { padding: 80px 0; }
.video-anchor { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; }
.video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 16px; overflow: hidden; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
.pip-close { position: absolute; top: 8px; right: 8px; z-index: 10; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; display: none; font-size: 12px; }
.video-wrapper.pip-mode { position: fixed; bottom: 24px; right: 24px; width: 320px; height: 180px; z-index: 1000; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.video-wrapper.pip-mode .pip-close { display: flex; align-items: center; justify-content: center; }
@media (max-width: 768px) { .video-wrapper.pip-mode { width: 200px; height: 112px; bottom: 16px; right: 16px; } }
*/

/* ═══════════════ RESPONSIVE ═══════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 32px; }
}

/* ≤768px — tablet/mobile */
@media (max-width: 768px) {
  .mobile-drawer {
    background: var(--bg-hero);
  }
  .nav-center { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 0; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    gap: 0;
  }
  .hero-copy { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-chips { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; flex-wrap: wrap; gap: 16px; padding: 16px 20px; justify-content: center; }
  .hstat-divider { display: none; }

  /* Image goes BELOW on mobile */
  .hero-image-slot {
    order: 1;
    margin-top: 32px;
    min-height: 280px;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-device-img { max-width: 280px; }

  .feat-grid { grid-template-columns: 1fr; }
  .fc-wide { grid-column: auto; }
  .fc-list-row { flex-direction: column; }

  .ind-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }

  .cta-card { padding: 48px 24px; }

  .section { padding: 72px 0; }
}

/* Phone */
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-stats { gap: 12px; }
  .hero-device-img { max-width: 240px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .ind-card { padding: 28px 20px; }
  .fab-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}
