body {
  font-family: 'Poppins', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

/* Animação de surgimento (Fade In) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Animação de entrada para ícones (Slide + Fade) */
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animações de deslize */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Classes de utilidade para aplicar as animações */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-icon-entry {
  opacity: 0;
}

.animate-on-scroll.is-visible .animate-icon-entry {
  animation: slideUpFadeIn 0.6s ease-out forwards;
}


/* Classes para animação de scroll */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-from-left {
  transform: translateX(-50px);
}

.slide-from-right {
  transform: translateX(50px);
}

.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;

  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}