/* ===== BOTÃO WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 0px;
  right: 25px;
  z-index: 999;

  opacity: 0;
  animation: whatsappFadeIn 1.5s ease forwards;
  animation-delay: 6s;
}

/* ===== VIDEO ===== */
.whatsapp-video {
  width: 120px;      /* tamanho desktop */
  height: 210px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

/* Hover */
.whatsapp-float:hover .whatsapp-video {
  transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 0px;
    right: 20px;
  }

  .whatsapp-video {
    width: 85px;
    height: 150px;
  }
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
@keyframes whatsappFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
