@charset "UTF-8";
:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #FFFFFF;
  color: #1A2E1F;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #D6EAD9;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}
@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-box {
  background: #C8102E;
  color: #fff;
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 4px 10px;
  line-height: 1;
}

.nav-tag {
  font-size: 9px;
  color: #6B7F72;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.nav-booth {
  font-size: 10px;
  font-weight: 700;
  color: #2D8A4E;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.hero {
  margin-top: 56px;
  background: #1A2E1F;
  overflow: hidden;
  position: relative;
}

.hero-top {
  padding: 36px 22px 24px;
  position: relative;
  z-index: 2;
}

.hero-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91, 184, 122, 0.22) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #5BB87A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-headline {
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  line-height: 1.02;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 0;
  white-space: nowrap;
}
.hero-headline .hl-row {
  display: block;
}
.hero-headline .hl-row span {
  color: #5BB87A;
}

.hero-bottom {
  padding: 22px 22px 38px;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.badge {
  font-size: 10px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge.green {
  border-color: #5BB87A;
  color: #5BB87A;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2D8A4E;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 22px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.section {
  padding: 44px 22px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  color: #2D8A4E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.22;
  color: #1A2E1F;
  margin-bottom: 14px;
}

.section-body {
  font-size: 14px;
  color: #2C4A34;
  line-height: 1.75;
  margin-bottom: 22px;
}

.divider {
  height: 1px;
  background: #D6EAD9;
  margin: 0 22px;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.vid-carousel-wrap, .hero-vid-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
}

.vid-carousel-wrap {
  margin: 0 -22px 28px;
}

.hero-vid-wrap {
  width: 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 88%, transparent 100%);
}

.vid-track, .hero-vid-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vid-slide, .hero-vid-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.vid-slide video, .hero-vid-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.vid-label, .hero-vid-label {
  position: absolute;
  bottom: 44px;
  left: 14px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.vid-mute-btn, .hero-mute-btn {
  position: absolute;
  bottom: 44px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.52);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
}
.vid-mute-btn svg, .hero-mute-btn svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.vid-arrow, .hero-vid-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.38);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.vid-arrow svg, .hero-vid-arrow svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.vid-arrow.prev, .vid-arrow.hprev, .hero-vid-arrow.prev, .hero-vid-arrow.hprev {
  left: 10px;
}
.vid-arrow.next, .vid-arrow.hnext, .hero-vid-arrow.next, .hero-vid-arrow.hnext {
  right: 10px;
}

.vid-progress, .hero-vid-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.vid-progress-bar, .hero-vid-progress-bar {
  height: 100%;
  background: #5BB87A;
  width: 0%;
  transition: width 0.25s linear;
}

.vid-dots, .hero-vid-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.hero-vid-dots {
  padding: 12px 0 0;
}

.vid-dots {
  padding: 14px 0 4px;
  background: #F2FAF4;
}

.vid-dot, .hero-vid-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D6EAD9;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.vid-dot.active, .hero-vid-dot.active {
  background: #5BB87A;
  width: 20px;
  border-radius: 3px;
}

.vid-sublabel {
  text-align: center;
  font-size: 10px;
  color: #6B7F72;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 14px;
  background: #F2FAF4;
  font-weight: 600;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.hub-wrap {
  background: #F2FAF4;
  border-radius: 14px;
  padding: 24px 18px;
  margin-bottom: 22px;
}

.hub-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #6B7F72;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hub-center {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.hub-node-main {
  background: #C8102E;
  color: #fff;
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
}
.hub-node-main small {
  display: block;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}

.hub-connector {
  text-align: center;
  font-size: 10px;
  color: #6B7F72;
  margin-bottom: 12px;
  font-style: italic;
}

.hub-spokes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hub-spoke {
  background: #fff;
  border: 1px solid #D6EAD9;
  border-radius: 10px;
  padding: 10px 12px;
  width: calc(50% - 4px);
}
.hub-spoke.full {
  width: 100%;
}
.hub-spoke.hl {
  border-color: #2D8A4E;
}
.hub-spoke.hl .hub-spoke-name {
  color: #2D8A4E;
}

.hub-spoke-name {
  font-size: 13px;
  font-weight: 700;
  color: #1A2E1F;
  margin-bottom: 2px;
}

.hub-spoke-desc {
  font-size: 10px;
  color: #6B7F72;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.caps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.cap-card {
  background: #F2FAF4;
  border-radius: 12px;
  padding: 14px;
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cap-icon {
  font-size: 20px;
}

.cap-name {
  font-size: 11px;
  font-weight: 700;
  color: #1A2E1F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cap-desc {
  font-size: 11px;
  color: #6B7F72;
  line-height: 1.4;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.trust-bg {
  background: #F2FAF4;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.cert-pill {
  font-size: 11px;
  font-weight: 700;
  background: #fff;
  color: #1A2E1F;
  border: 1px solid #D6EAD9;
  padding: 6px 13px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cert-pill::before {
  content: "✓";
  color: #2D8A4E;
  font-weight: 900;
}

.partner-title {
  font-size: 11px;
  font-weight: 700;
  color: #6B7F72;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-align: center;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.logo-cell {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D6EAD9;
  width: calc(33.333% - 6px);
  padding-bottom: calc(33.333% - 6px);
  position: relative;
  overflow: hidden;
}

.logo-cell-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.logo-cell-inner img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1A2E1F;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.product-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 252px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #D6EAD9;
  background: #fff;
}

.product-img-wrap {
  height: 200px;
  overflow: hidden;
  background: #F2FAF4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  max-width: 250px;
  max-height: 200px;
}

.product-info {
  padding: 14px;
}

.product-name {
  font-weight: 700;
  font-size: 15px;
  color: #1A2E1F;
  margin-bottom: 3px;
}

.product-brand {
  font-size: 10px;
  color: #2D8A4E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.stat {
  background: #F2FAF4;
  border-radius: 8px;
  padding: 8px;
  width: calc(50% - 4px);
}

.stat-val {
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 19px;
  color: #2D8A4E;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  color: #6B7F72;
  margin-top: 2px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  background: #E8F8F0;
  color: #2D8A4E;
  border-radius: 4px;
  padding: 3px 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-hint {
  text-align: center;
  font-size: 11px;
  color: #6B7F72;
  margin-top: 10px;
}

.b2b-box {
  margin-top: 18px;
  background: #F2FAF4;
  border-radius: 12px;
  padding: 14px;
}

.b2b-box-label {
  font-size: 11px;
  font-weight: 700;
  color: #2D8A4E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.b2b-box-body {
  font-size: 13px;
  color: #2C4A34;
  line-height: 1.6;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.expo-card {
  background: #1A2E1F;
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 14px;
}

.expo-label {
  font-size: 10px;
  color: #5BB87A;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.expo-name {
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
}

.expo-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expo-row {
  display: flex;
  gap: 12px;
}

.expo-row-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 60px;
  padding-top: 1px;
  flex-shrink: 0;
}

.expo-row-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.booth-box {
  background: #2D8A4E;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.booth-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.booth-num {
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 46px;
  color: #fff;
  line-height: 1;
}

.booth-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.cta-section {
  background: #C8102E;
  padding: 46px 22px;
  text-align: center;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cta-title {
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}

.cta-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 26px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

footer {
  background: #1A2E1F;
  padding: 38px 22px 30px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-logo {
  background: #C8102E;
  color: #fff;
  font-family: "Bebas Neue", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 4px 11px;
  flex-shrink: 0;
}

.footer-full {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-col {
  width: calc(50% - 9px);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  color: #5BB87A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0;
}

.footer-addr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-copy {
  font-size: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
}

:root {
  --red: #C8102E;
  --green: #2D8A4E;
  --green-light: #5BB87A;
  --dark: #1A2E1F;
  --mid: #2C4A34;
  --light: #F2FAF4;
  --white: #FFFFFF;
  --grey: #6B7F72;
  --border: #D6EAD9;
}

.float-wa {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 998;
  text-decoration: none;
  animation: wapulse 2.5s infinite;
}
.float-wa svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

@keyframes wapulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75);
  }
}/*# sourceMappingURL=main.css.map */