﻿[data-icon] {
  display: inline-grid;
  place-items: center;
  line-height: 0;
  vertical-align: middle;
}

[data-icon] > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ui-icon {
  stroke: currentColor;
  stroke-width: 2.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Neutralize legacy CSS-drawn icons so the shared SVG system can take over. */
.stat-icon::before,
.stat-icon::after,
.benefit-icon::before,
.benefit-icon::after,
.mini-icon::before,
.mini-icon::after,
.cta-icon::before,
.cta-icon::after,
.cta-icon span::before,
.cta-icon span::after,
.footer-meta::before,
.cat-icon::before,
.cat-icon::after,
.search-icon::before,
.search-icon::after,
.support-cta-icon::before,
.support-cta-icon::after,
.icon::before,
.icon::after,
.social-icon::before,
.social-icon::after,
.footer-social::before,
.footer-social::after,
.nav-cta .nav-cta-icon::before,
.nav-cta .nav-cta-icon::after {
  content: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.stat-icon,
.benefit-icon,
.mini-icon,
.cta-icon,
.footer-meta,
.cat-icon,
.search-icon,
.support-cta-icon,
.icon,
.social-icon,
.footer-social,
.nav-cta .nav-cta-icon {
  position: relative;
}

.trust-stars [data-icon] {
  width: 24px;
  height: 24px;
}

.trust-stars [data-icon] > svg {
  color: #fff;
}

/* Generic dimensions for the common icon containers. */
.stat-icon,
.benefit-icon,
.cat-icon,
.support-cta-icon,
.cta-icon,
.search-icon {
  color: var(--yellow);
}

.footer-meta,
.footer-social,
.social-icon,
.icon {
  color: inherit;
}

.nav-cta-icon,
.footer-meta-icon {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.nav-cta-icon > svg,
.footer-meta-icon > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36), 0 0 0 7px rgba(37, 211, 102, 0.14);
  transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  animation: whatsapp-alert 2.7s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #20bd5a;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.42), 0 0 0 9px rgba(37, 211, 102, 0.18);
  animation-play-state: paused;
  transform: scale(1.05);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--yellow, #ffd200);
  outline-offset: 5px;
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.whatsapp-float-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #e11d2e;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.34);
}

@keyframes whatsapp-alert {
  0%, 70%, 100% {
    transform: rotate(0deg) scale(1);
  }

  74% {
    transform: rotate(-7deg) scale(1.04);
  }

  78% {
    transform: rotate(7deg) scale(1.04);
  }

  82% {
    transform: rotate(-5deg) scale(1.03);
  }

  86% {
    transform: rotate(5deg) scale(1.03);
  }

  90% {
    transform: rotate(0deg) scale(1);
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 16px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    transform: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.04);
  }

  .whatsapp-float-icon {
    width: 30px;
    height: 30px;
  }
}




@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

