.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  flex-direction: column;
  font-size: 10px;
  font-weight: bold;
  gap: 2px;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
}

.whatsapp-button span {
  font-size: 8px;
  font-weight: 600;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-button span {
    font-size: 7px;
  }
}
.headerEmail {
  word-break: break-all;
}

.contactLink {
  font-weight: 500 !important;
  font-size: 15px !important;
  word-break: break-all;
}
