@import url('./base.css');
@import url('./layout.css');
@import url('./components.css');

@import url('./sections/hero.css');
@import url('./sections/services.css');
@import url('./sections/why.css');
@import url('./sections/portfolio.css');
@import url('./sections/pricing.css');
@import url('./sections/about.css');
@import url('./sections/contact.css');
@import url('./sections/faq.css');
@import url('./sections/footer.css');

  /* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-block;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  text-decoration: none;
  box-shadow: none;
  transition:
    transform .25s ease,
    filter .25s ease;
  overflow: visible;
  isolation: isolate;
  animation: waShakeStrong 1.2s ease-in-out infinite;
}

.wa-float::before{
  content: none;
}

.wa-float::after{
  content: none;
}

.wa-float:hover{
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow:
    0 20px 38px rgba(34,197,94,.34),
    0 10px 22px rgba(0,0,0,.22);
}

.wa-float:focus-visible{
  outline: 3px solid rgba(255,255,255,.22);
  outline-offset: 3px;
}

.wa-float__icon{
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  flex-shrink: 0;
  overflow: hidden;
}

.wa-float__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-float__text{
  display: none;
}

@keyframes waShakeStrong{
  0%, 100%{ transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
  12%{ transform: translateX(-4px) translateY(-1px) rotate(-4deg) scale(1.03); }
  24%{ transform: translateX(4px) translateY(0) rotate(4deg) scale(1.03); }
  36%{ transform: translateX(-3px) translateY(-1px) rotate(-3deg) scale(1.02); }
  48%{ transform: translateX(3px) translateY(0) rotate(3deg) scale(1.02); }
  60%{ transform: translateX(-2px) translateY(-2px) rotate(-2deg) scale(1.04); }
  72%{ transform: translateX(2px) translateY(0) rotate(2deg) scale(1.03); }
  84%{ transform: translateX(-1px) translateY(-1px) rotate(-1deg) scale(1.02); }
}

@keyframes waGlowPulse{
  0%, 100%{ opacity: .55; transform: scale(1); }
  50%{ opacity: 1; transform: scale(1.14); }
}

@media (max-width: 768px){
  .wa-float{
    right: 14px;
    bottom: 165px;
    width: 56px;
    height: 56px;
  }

  .wa-float__icon{
    width: 100%;
    height: 100%;
  }

  .wa-float__img{
    width: 100%;
    height: 100%;
  }
}