/* Botão flutuante do WhatsApp */
.btn-whatsapp-fixo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: all 0.3s ease;
  animation: pulsar-whatsapp 2s infinite;
  padding: 10px;
  text-decoration: none;
  color: inherit;
}

/* Ícone interno */
.btn-whatsapp-fixo svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

/* Texto abaixo do ícone */
.btn-whatsapp-fixo .btn-text {
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}

/* Hover */
.btn-whatsapp-fixo:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Animação pulsar */
@keyframes pulsar-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .btn-whatsapp-fixo {
    bottom: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
  }

  .btn-whatsapp-fixo svg {
    width: 28px;
    height: 28px;
  }

  .btn-whatsapp-fixo .btn-text {
    font-size: 11px;
  }
}
