
:root {
  --verde-whatsapp: #25d366;
}

/*==================================*/
/* WHATSAPP BURBUJA + MENSAJE FLOAT */
/*==================================*/
.whatsapp-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--verde-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
  animation: fadeInBubble 0.5s ease-out;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
}

.whatsapp-bubble img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.whatsapp-label {
  position: absolute;
  right: 70px;
  bottom: 25px;
  background-color: var(--verde-whatsapp);
  color: white;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .whatsapp-label {
    display: none;
  }
}

/*=================*/
/* ANIMACIÓN BURBUJA */
/*=================*/
@keyframes fadeInBubble {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}