@charset "utf-8";
/* CSS Document */

.card {
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

a {
  transition: color .3s;
}

a:hover {
  color: #0d6efd;
}

.product-card {
  cursor: pointer;
}

/*Botão flutuante whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* desktop */
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: none; /* começa oculto (delay) */
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: whatsapp-pulse 2s infinite;
}

/* Hover */
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.05);
}

/* Animação pulsante suave */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile: canto esquerdo */
@media (max-width: 768px) {
  .whatsapp-float {
    right: auto;
    left: 20px;
  }
}
