.whatsapp-contact {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.whatsapp-contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 220px;
  padding: 14px 34px 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px 16px 4px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  color: #0f172a;
  animation: whatsapp-card-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-contact-card strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.whatsapp-contact-card span {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.whatsapp-contact-close {
  position: absolute;
  top: 7px;
  right: 9px;
  padding: 2px 5px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.whatsapp-contact-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-contact-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42);
}

.whatsapp-contact-button:active {
  transform: scale(0.96);
}

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

@keyframes whatsapp-card-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .whatsapp-contact {
    top: 16px;
    right: auto;
    bottom: auto;
    left: 14px;
    align-items: flex-start;
  }

  .whatsapp-contact-card {
    width: 200px;
    border-radius: 16px 16px 16px 4px;
  }

  .whatsapp-contact-button {
    width: 52px;
    height: 52px;
  }

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