/* Estilos básicos para o botão e pop-up */
.whatsapp-btn {
  z-index: 99;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-btn img {
  width: 40px;
  height: 40px;
}

.popup-container {
  z-index: 99;
  position: fixed;
  bottom: 30px;
  right: 100px;
  animation: popupAnimation 0.5s ease-in-out forwards; 
  opacity: 0;
  display: none;  
}

.popup {
  height: 40px;
  background-color: #25d366;  
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.popup p{
  font-weight: 900;
  color: rgb(255, 255, 255) !important;
}



@keyframes popupAnimation {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
