.header .logo img {
    max-height: 70px;
    padding: 1px 0;
}
.contact-page-info-card, .contact-page-form-card {
    height: unset !important;
}

.bb-social-sharing .bb-social-sharing__item  button {
    border: none;
    outline: none;
    background: transparent;
    color: var(--primary-color);
}

.whatsapp-bubble::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease;
}

.whatsapp-bubble img {
  width: 32px;
  height: 32px;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
}


.bb-social-sharing .bb-social-sharing__item svg {
    width: 2.25rem !important

;
    height: 3.25rem!important;
}