@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* ---- whatsapp ----*/
@keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 90px;
  }
  100% {
    opacity: 1;
    right: 45px;
    bottom: 90px;
  }
}
@keyframes whatsapp_rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.w-flotante {
  opacity: 0;
  background-color: green;
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 4%;
  right: 4%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation-name: whatsapp_animation;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.w-flotante:hover {
  background-color: #2879ff;
}
.w-flotante .whatsapp {
  color: white;
  font-size: 2.5rem;
  animation-name: whatsapp_rotation;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.show-mobile {
  display: none;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-desktop {
    display: none;
  }
}
@media (max-width: 575px) {
  .pricing-section .pricing-block-one {
    max-width: unset;
    padding: 0 15px;
  }
}/*# sourceMappingURL=ajustes.css.map */