.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;       /* tamaño del botón */
  height: 50px;
  background-color: #25D366; /* verde WhatsApp */
  border-radius: 50%;  /* círculo */
  overflow: hidden;    /* para que la imagen no se salga */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-whatsapp img {
  width: 60%;   /* la imagen no ocupa todo el círculo */
  height: auto;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  background-color: #20b358; /* verde más oscuro */
}