/* WHATSAPP FLOTANTE CSS*/

#whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
}
svg {
  width: 80px;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.4));
}
circle {
  fill: #25d366;
}
path {
  fill: #fff;
}

#whatsapp:hover circle {
  fill: #fff;
}
#whatsapp:hover path {
  fill: #25d366;
}
